/* ==========================================
   HERO
========================================== */
.contato-hero {
    background:
        linear-gradient(to bottom, rgba(11, 36, 71, .85), rgba(11, 36, 71, .85)),
        url('../img/mapaFundo.png') center/cover no-repeat;

    padding: 70px 0;
    text-align: center;
    color: #fff;
}

.contato-hero .hero-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.contato-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 6px;
}

.contato-hero p {
    opacity: .95;
}


/* ==========================================
   CONTAINER PRINCIPAL (CARD)
========================================== */
.contato-box {
    max-width: 760px;
    margin: 40px auto;
    background: #fff;
    border: 1px solid var(--ring);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(2, 8, 23, .04);
}

.contato-box p {
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--ink);
}


/* ==========================================
   FORMULÁRIO
========================================== */
.form-contato {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* mobile → 1 coluna */
@media (max-width: 700px) {
    .form-contato {
        grid-template-columns: 1fr;
    }
}

.field {
    display: flex;
    flex-direction: column;
}

.field label {
    font-weight: 600;
    margin-bottom: 6px;
}

/* Inputs padrão do site */
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--nav-border);
    background: #fff;
    font-size: 1rem;
    transition: border-color .2s, box-shadow .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(15, 112, 255, .15);
}

/* textarea ocupa as duas colunas */
.field textarea {
    resize: vertical;
    min-height: 130px;
    grid-column: span 2;
}

@media (max-width: 700px) {
    .field textarea {
        grid-column: span 1;
    }
}


/* ==========================================
   BOTÃO ENVIAR
========================================== */
.btn-enviar {
    background: var(--brand);
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
    grid-column: span 2;
}

.btn-enviar:hover {
    filter: brightness(1.08);
}

@media (max-width: 700px) {
    .btn-enviar {
        grid-column: span 1;
        width: 100%;
    }
}


/* ==========================================
   MENSAGEM DE RETORNO
========================================== */
.form-msg {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 600;
}

.form-msg.success {
    background: #ecfdf5;
    border: 1px solid #16a34a;
    color: #065f46;
}

.form-msg.error {
    background: #fef2f2;
    border: 1px solid #dc2626;
    color: #7f1d1d;
}


/* ==========================================
   REDES SOCIAIS
========================================== */
.social-list {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.social-list li {
    margin-bottom: 6px;
}

.social-list a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}

.social-list a:hover {
    text-decoration: underline;
}


/* ==========================================
   RESPONSIVO EXTRA
========================================== */
@media (max-width: 600px) {
    .contato-hero h1 {
        font-size: 1.8rem;
    }

    .contato-box {
        padding: 18px;
    }
}

/* =========================
   WHATSAPP CONTATO
========================= */
.contact-whatsapp {
    padding: 60px 0;
    text-align: center;
}

.contact-whatsapp h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.contact-whatsapp .muted {
    color: #64748b;
    margin-bottom: 24px;
}

.whatsapp-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(2, 8, 23, 0.06);
    transition: transform .15s ease, box-shadow .15s ease;
}

.whatsapp-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(2, 8, 23, 0.10);
}

.whatsapp-qr {
    width: 220px;
    max-width: 100%;
    border-radius: 16px;
}

.whatsapp-btn {
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 1rem;
}