/* =========================================
   PÁGINA DE CONTATO
   ARTHUR ESSÊNCIA
   ========================================= */


/* =========================================
   HERO
   ========================================= */

.contact-hero {
    background-color: #F8F5EF;

    text-align: center;
}


.contact-hero-container {
    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    padding: 120px 30px;

    box-sizing: border-box;
}


.contact-subtitle {
    margin: 0 0 18px;

    color: #B88A3B;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.contact-hero h1 {
    margin: 0 0 25px;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 64px;

    font-weight: 500;

    line-height: 1.1;
}


.contact-hero-description {
    max-width: 650px;

    margin: 0 auto;

    color: #6F675C;

    font-family: Arial, sans-serif;

    font-size: 17px;

    line-height: 1.9;
}


/* =========================================
   CONTAINER
   ========================================= */

.contact-container {
    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    padding: 100px 30px;

    box-sizing: border-box;
}


/* =========================================
   SEÇÃO PRINCIPAL
   ========================================= */

.contact-section {
    background-color: #FFFFFF;
}


.contact-section
.contact-container {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;

    align-items: start;
}


/* =========================================
   INFORMAÇÕES
   ========================================= */

.contact-info {
    max-width: 480px;
}


.contact-info h2 {
    margin: 0 0 25px;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 44px;

    font-weight: 500;

    line-height: 1.2;
}


.contact-info > p:not(.contact-subtitle) {
    margin: 0 0 18px;

    color: #6F675C;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.9;
}

/* =========================================
   DETALHES DE CONTATO
   ========================================= */

.contact-detail {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 22px;
}


.contact-detail-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    flex-shrink: 0;

    background-color: #F8F5EF;

    border: 1px solid #E3DCCD;

    border-radius: 50%;

    color: #B88A3B;

    font-size: 16px;
}


.contact-detail-label {
    display: block;

    margin-bottom: 4px;

    color: #8A8175;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.contact-detail a {
    color: #3E3325;

    font-family: Arial, sans-serif;

    font-size: 14px;

    text-decoration: none;

    transition:
        color 0.3s ease;
}


.contact-detail a:hover {
    color: #B88A3B;
}

/* =========================================
   REDES SOCIAIS
   ========================================= */

.contact-social {
    margin-top: 45px;

    padding-top: 35px;

    border-top: 1px solid #E3DCCD;
}


.contact-social h3 {
    margin: 0 0 20px;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 22px;

    font-weight: 500;
}


.contact-social-links {
    display: flex;

    align-items: center;

    gap: 12px;
}


.contact-social-links a {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    box-sizing: border-box;

    background-color: #F8F5EF;

    border: 1px solid #E3DCCD;

    border-radius: 50%;

    color: #3E3325;

    font-size: 17px;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.contact-social-links a:hover {
    background-color: #B88A3B;

    border-color: #B88A3B;

    color: #FFFFFF;

    transform: translateY(-3px);
}


/* =========================================
   FORMULÁRIO
   ========================================= */

.contact-form-wrapper {
    width: 100%;

    padding: 40px;

    box-sizing: border-box;

    background-color: #F8F5EF;

    border: 1px solid #E3DCCD;

    border-radius: 6px;
}


.contact-form {
    width: 100%;
}


.contact-field {
    margin-bottom: 22px;
}


.contact-field label {
    display: block;

    margin-bottom: 9px;

    color: #3E3325;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: 600;
}


.contact-field input,
.contact-field textarea {
    display: block;

    width: 100%;

    padding: 14px 16px;

    box-sizing: border-box;

    background-color: #FFFFFF;

    border: 1px solid #DCD4C7;

    border-radius: 4px;

    outline: none;

    color: #3E3325;

    font-family: Arial, sans-serif;

    font-size: 15px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.contact-field input {
    height: 50px;
}


.contact-field textarea {
    min-height: 160px;

    resize: vertical;

    line-height: 1.7;
}


.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #9A9185;
}


.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #B88A3B;

    box-shadow:
        0 0 0 3px rgba(184, 138, 59, 0.10);
}


/* =========================================
   BOTÃO
   ========================================= */

.contact-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    min-height: 48px;

    padding: 13px 25px;

    box-sizing: border-box;

    background-color: #B88A3B;

    border: 1px solid #B88A3B;

    border-radius: 4px;

    cursor: pointer;

    color: #FFFFFF;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.contact-button:hover {
    background-color: #96702F;

    border-color: #96702F;

    transform: translateY(-2px);
}


/* =========================================
   STATUS DO FORMULÁRIO
   ========================================= */

.contact-status {
    min-height: 20px;

    margin: 15px 0 0;

    color: #6F675C;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.6;

    text-align: center;
}


/* =========================================
   SEÇÃO FINAL
   ========================================= */

.contact-final {
    background-color: #F8F5EF;

    text-align: center;
}


.contact-final .contact-container {
    max-width: 800px;
}


.contact-final h2 {
    max-width: 650px;

    margin: 0 auto 25px;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 44px;

    font-weight: 500;

    line-height: 1.2;
}


.contact-final p:not(.contact-subtitle) {
    max-width: 650px;

    margin: 0 auto;

    color: #6F675C;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.9;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .contact-hero-container {
        padding: 90px 25px;
    }


    .contact-hero h1 {
        font-size: 52px;
    }


    .contact-container {
        padding: 80px 25px;
    }


    .contact-section
    .contact-container {

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .contact-info {
        max-width: 750px;
    }


    .contact-info h2 {
        font-size: 38px;
    }


    .contact-final h2 {
        font-size: 38px;
    }

}


/* =========================================
   CELULAR
   ========================================= */

@media (max-width: 600px) {

    .contact-hero-container {
        padding: 70px 20px;
    }


    .contact-hero h1 {
        font-size: 40px;
    }


    .contact-hero-description {
        font-size: 15px;

        line-height: 1.8;
    }


    .contact-container {
        padding: 65px 20px;
    }


    .contact-section
    .contact-container {

        gap: 40px;
    }


    .contact-info {
        text-align: center;
    }


    .contact-info h2 {
        font-size: 32px;
    }


    .contact-info > p:not(.contact-subtitle) {
        font-size: 15px;

        line-height: 1.8;
    }


    .contact-social {
        margin-top: 35px;

        padding-top: 30px;
    }


    .contact-social-links {
        justify-content: center;
    }


    .contact-form-wrapper {
        padding: 25px 20px;
    }


    .contact-field input,
    .contact-field textarea {
        font-size: 14px;
    }


    .contact-field textarea {
        min-height: 140px;
    }


    .contact-final h2 {
        font-size: 32px;
    }


    .contact-final p:not(.contact-subtitle) {
        font-size: 15px;

        line-height: 1.8;
    }

}

/* =========================================
   STATUS DO FORMULÁRIO
   ========================================= */

.contact-status.success {
    color: #5E7650;
}


.contact-status.error {
    color: #A34D43;
}


/* =========================================
   BOTÃO DESABILITADO
   ========================================= */

.contact-button:disabled {
    opacity: 0.65;

    cursor: not-allowed;

    transform: none;
}

/* =========================================
   CAMPO ANTI-SPAM
   ========================================= */

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;

    width: 1px !important;
    height: 1px !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;

    opacity: 0 !important;

    pointer-events: none !important;

    overflow: hidden !important;
}
