/* ================= PÁGINA FALE CONOSCO ================= */

body {
    background: #f3f1ed;
}


/* ================= HERO ================= */

.contato-hero {
    position: relative;
    height: 420px;
    margin-top: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0e0c2a;

    overflow: hidden;
}

.contato-hero::before {
    content: "";
    position: absolute;

    width: 780px;
    height: 500px;

    border: 7px solid #d87516;
    border-radius: 48% 52% 42% 58%;

    top: -220px;
    right: -80px;

    transform: rotate(-8deg);
    opacity: 0.9;
}

.contato-hero::after {
    content: "";
    position: absolute;

    width: 600px;
    height: 240px;

    border-bottom: 7px solid #d87516;
    border-radius: 50%;

    left: -120px;
    bottom: -70px;

    transform: rotate(8deg);
    opacity: 0.8;
}

.contato-hero-content {
    position: relative;
    z-index: 2;

    max-width: 780px;
    padding: 0 20px;
    text-align: center;
    color: white;
}

.contato-hero-content h1 {
    margin: 0 0 20px;

    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 68px;
    line-height: 1;
    font-weight: 600;
}

/* ================= MAIN ================= */

.contato-main {
    max-width: 1250px;
    margin: auto;
    padding: 90px 20px;
}

.contato-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: start;
}


/* ================= TAGS (reaproveitadas do padrão) ================= */

.section-tag,
.form-tag {
    display: inline-block;

    margin-bottom: 14px;
    padding: 8px 16px;

    background: rgba(216, 117, 22, 0.13);
    color: #d87516;

    border-radius: 999px;

    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ================= COLUNA DE INFORMAÇÕES ================= */

.contato-info h2 {
    margin: 0 0 30px;

    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    color: #0e0c2a;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.15;
}

.info-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;

    margin-bottom: 22px;
    padding: 24px;

    background: white;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.info-icone {
    min-width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0e0c2a;
    border-radius: 50%;

    font-size: 20px;
}

.info-card h3 {
    margin: 0 0 6px;

    color: #0e0c2a;
    font-size: 18px;
    font-weight: 700;
}

.info-card p {
    margin: 0;

    color: #4b4b4b;
    font-size: 15px;
    line-height: 1.7;
}

.info-card a {
    color: #d87516;
    font-weight: 600;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}


/* ================= FORMULÁRIO ================= */

.contato-form-area {
    width: 100%;
}

.contato-form {
    background: white;

    padding: 42px;
    border-radius: 30px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.contato-form h2 {
    margin: 0 0 10px;

    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    color: #0e0c2a;
    font-size: 36px;
    font-weight: 500;
}

.form-description {
    margin-bottom: 28px;

    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;

    margin-bottom: 8px;

    color: #0e0c2a;
    font-weight: bold;
    font-size: 15px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #d6d6d6;
    border-radius: 13px;

    background: #fafafa;
    color: #222;

    font-size: 15px;
    outline: none;

    font-family: inherit;

    transition: 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #d87516;
    background: white;
    box-shadow: 0 0 0 4px rgba(216, 117, 22, 0.12);
}

.input-group textarea {
    height: 130px;
    resize: none;
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
    padding: 15px 22px;

    border: none;
    border-radius: 14px;

    background: #d87516;
    color: white;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #bd6411;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    min-height: 22px;
    margin-top: 18px;

    font-weight: bold;
}


/* ================= RESPONSIVO ================= */

@media (max-width: 950px) {
    .contato-hero-content h1 {
        font-size: 52px;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 650px) {
    .contato-hero {
        height: 380px;
    }

    .contato-hero-content h1 {
        font-size: 40px;
    }

    .contato-hero-content p {
        font-size: 17px;
    }

    .contato-main {
        padding: 60px 16px;
    }

    .contato-info h2 {
        font-size: 32px;
    }

    .contato-form {
        padding: 28px 22px;
    }

    .input-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}