/* =========================================
   PÁGINA HISTÓRIA
   ARTHUR ESSÊNCIA
   ========================================= */


/* =========================================
   HERO
   ========================================= */

.history-hero {
    background-color: #F8F5EF;

    text-align: center;
}


.history-hero-container {
    max-width: 900px;

    margin: 0 auto;

    padding: 120px 30px;
}


.history-subtitle {
    margin: 0 0 18px;

    color: #B88A3B;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.history-hero h1 {
    margin: 0 0 25px;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 64px;

    font-weight: 500;

    line-height: 1.1;
}


.history-hero-description {
    max-width: 650px;

    margin: 0 auto;

    color: #6F675C;

    font-family: Arial, sans-serif;

    font-size: 17px;

    line-height: 1.9;
}


/* =========================================
   CONTAINER
   ========================================= */

.history-container {
    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    padding: 100px 30px;

    box-sizing: border-box;
}


/* =========================================
   INTRODUÇÃO
   ========================================= */

.history-introduction {
    background-color: #FFFFFF;
}


.history-introduction .history-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}


.history-introduction-image {
    overflow: hidden;

    border-radius: 8px;

    box-shadow:
        0 20px 50px rgba(62, 51, 37, 0.12);
}


.history-introduction-image img {
    display: block;

    width: 100%;

    height: 600px;

    object-fit: cover;
}


.history-introduction-content h2,
.history-section-heading h2,
.history-purpose-content h2,
.history-future h2 {
    margin: 0 0 25px;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 44px;

    font-weight: 500;

    line-height: 1.2;
}


.history-introduction-content p,
.history-purpose-content p,
.history-section-heading p,
.history-future p {
    color: #6F675C;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.9;
}


/* =========================================
   TRAJETÓRIA
   ========================================= */

.history-journey {
    background-color: #F8F5EF;
}


.history-section-heading {
    max-width: 700px;

    margin-bottom: 60px;
}


.history-timeline {
    max-width: 850px;

    margin: 0 auto;
}


.history-timeline-item {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 30px;

    padding: 35px 0;

    border-bottom: 1px solid #E3DCCD;
}


.history-timeline-item:first-child {
    padding-top: 0;
}


.history-timeline-item:last-child {
    border-bottom: none;
}


.history-number {
    color: #B88A3B;

    font-family: Georgia, serif;

    font-size: 24px;

    font-weight: 500;
}


.history-timeline-item h3 {
    margin: 0 0 12px;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 25px;

    font-weight: 500;
}


.history-timeline-item p {
    margin: 0;

    color: #6F675C;

    font-family: Arial, sans-serif;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   PROPÓSITO
   ========================================= */

.history-purpose {
    background-color: #FFFFFF;
}


.history-purpose-content {
    max-width: 750px;

    margin: 0 auto;

    text-align: center;
}


.history-purpose-content .history-subtitle {
    margin-bottom: 18px;
}


/* =========================================
   FUTURO
   ========================================= */

.history-future {
    background-color: #F8F5EF;

    text-align: center;
}


.history-future .history-container {
    max-width: 800px;
}


.history-future p {
    max-width: 700px;

    margin: 0 auto 20px;
}


/* =========================================
   RESPONSIVIDADE
   ========================================= */

@media (max-width: 900px) {

    .history-hero-container {
        padding: 90px 25px;
    }


    .history-hero h1 {
        font-size: 52px;
    }


    .history-introduction .history-container {
        grid-template-columns: 1fr;

        gap: 50px;

        max-width: 700px;
    }


    .history-introduction-image img {
        height: 500px;
    }


    .history-introduction-content h2,
    .history-section-heading h2,
    .history-purpose-content h2,
    .history-future h2 {
        font-size: 38px;
    }


    .history-container {
        padding: 80px 25px;
    }

}


@media (max-width: 600px) {

    .history-hero-container {
        padding: 70px 20px;
    }


    .history-hero h1 {
        font-size: 40px;
    }


    .history-hero-description {
        font-size: 15px;
    }


    .history-container {
        padding: 65px 20px;
    }


    .history-introduction .history-container {
        gap: 40px;
    }


    .history-introduction-image img {
        height: 400px;
    }


    .history-introduction-content h2,
    .history-section-heading h2,
    .history-purpose-content h2,
    .history-future h2 {
        font-size: 32px;
    }


    .history-introduction-content p,
    .history-purpose-content p,
    .history-section-heading p,
    .history-future p {
        font-size: 15px;

        line-height: 1.8;
    }


    .history-timeline-item {
        grid-template-columns: 45px 1fr;

        gap: 18px;

        padding: 30px 0;
    }


    .history-number {
        font-size: 20px;
    }


    .history-timeline-item h3 {
        font-size: 21px;
    }


    .history-timeline-item p {
        font-size: 14px;
    }

}