/* =========================================
   SOBRE
   ARTHUR ESSÊNCIA
   ========================================= */

.about {
    width: 100%;

    background-color: #FFFFFF;
}

/* =========================================
   CONTAINER DA SEÇÃO SOBRE
   ========================================= */

.about-container {
    max-width: 1200px;

    margin: 0 auto;

    padding: 100px 30px;

    display: flex;

    align-items: center;

    gap: 80px;
}

/* =========================================
   ÁREA DA IMAGEM
   ========================================= */

.about-image {
    flex: 1;

    display: flex;

    justify-content: center;
}

/* =========================================
   CONTEÚDO
   ========================================= */

.about-content {
    flex: 1;

    max-width: 550px;
}

/* =========================================
   IMAGEM DA SEÇÃO SOBRE
   ========================================= */

.about-image img {
    width: 380px;
    height: 380px;

    object-fit: cover;

    border-radius: 50%;

    border: 2px solid #D6B36A;

    display: block;

    box-shadow: 0 20px 50px rgba(62, 51, 37, 0.10);
}

/* =========================================
   SUBTÍTULO DA SEÇÃO SOBRE
   ========================================= */

.about-subtitle {
    margin: 0 0 15px;

    color: #B88A3B;

    font-family: Arial, sans-serif;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

/* =========================================
   TÍTULO DA SEÇÃO SOBRE
   ========================================= */

.about h2 {
    margin: 0 0 25px;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 42px;
    font-weight: 500;

    line-height: 1.2;
}

/* =========================================
   TEXTOS DA SEÇÃO SOBRE
   ========================================= */

.about-content p:not(.about-subtitle) {
    max-width: 550px;

    margin: 0 0 18px;

    color: #6F675C;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.8;
}

/* =========================================
   BOTÃO DA SEÇÃO SOBRE
   ========================================= */

.about-button {
    display: inline-block;

    margin-top: 10px;

    padding: 13px 28px;

    background-color: #B88A3B;

    color: #FFFFFF;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 14px;
    font-weight: 600;

    border-radius: 4px;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.about-button:hover {
    background-color: #8C6425;

    transform: translateY(-2px);
}

/* =========================================
   RESPONSIVIDADE - SEÇÃO SOBRE
   ========================================= */

@media (max-width: 768px) {

    .about-container {
        padding: 70px 20px;

        flex-direction: column;

        gap: 50px;

        text-align: center;
    }


    .about-image {
        width: 100%;
    }


    .about-image img {
        width: 280px;
        height: 280px;
    }


    .about-content {
        max-width: 100%;
    }


    .about-subtitle {
        font-size: 11px;

        letter-spacing: 2px;
    }


    .about h2 {
        font-size: 36px;
    }


    .about-content p:not(.about-subtitle) {
        max-width: 100%;

        font-size: 16px;
    }


    .about-button {
        margin-top: 10px;
    }

}

.about {
    width: 100%;

    background-color: #FFFFFF;

    border-bottom: 1px solid #EDE6D9;
}