.historia-section {
    background-color: #F9F5EC;
    padding: 80px 20px;
}

.historia-titulo {
    text-align: center;
    font-size: 52px;
    margin-top: 8px;
    margin-bottom: 50px;
    color: #145A32;
    font-weight: bold;
    position: relative;
    width: 100%;
}

.historia-titulo::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E67E22;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.historia-bloco {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    width: 1150px;
    margin: 0 auto;
}

.historia-texto {
    flex: 1;
    min-width: 300px;
}

.historia-subtitulo {
    font-size: 25px;
    color: #E67E22;
    margin-bottom: 5px;
}

.historia-titulo2 {
    font-size: 40px;
    color: #4E342E;
    margin-bottom: 20px;
}

.historia-descricao {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    text-align: justify;
}

.historia-imagem {
    flex: 1;
    text-align: center;
}

.historia-imagem img {
    width: 380px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* =======================================
   RESPONSIVIDADE - HISTÓRIA
======================================= */

/* Notebook */
@media (max-width: 1200px) {

    .historia-bloco {
        width: 95%;
    }

}

/* Tablet */
@media (max-width: 992px) {

    .historia-section {
        padding: 60px 20px;
    }

    .historia-bloco {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .historia-texto {
        width: 100%;
    }

    .historia-titulo {
        font-size: 42px;
    }

    .historia-titulo2 {
        font-size: 34px;
    }

    .historia-subtitulo {
        font-size: 22px;
    }

    .historia-descricao {
        text-align: justify;
    }

    .historia-imagem img {
        width: 100%;
        max-width: 420px;
    }

}

/* Celular */
@media (max-width: 768px) {

    .historia-section {
        padding: 50px 15px;
    }

    .historia-titulo {
        font-size: 34px;
        margin-bottom: 35px;
    }

    .historia-titulo2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .historia-subtitulo {
        font-size: 20px;
    }

    .historia-descricao {
        font-size: 16px;
        line-height: 1.7;
    }

    .historia-imagem img {
        width: 100%;
        max-width: 330px;
    }

}

/* Celulares pequenos */
@media (max-width: 480px) {

    .historia-section {
        padding: 40px 15px;
    }

    .historia-titulo {
        font-size: 28px;
    }

    .historia-titulo2 {
        font-size: 24px;
    }

    .historia-subtitulo {
        font-size: 18px;
    }

    .historia-descricao {
        font-size: 15px;
    }

    .historia-imagem img {
        max-width: 280px;
    }

}