/* ================= PAGE HERO (CONTATO) ================= */
.page-hero {
    padding: 140px 0 100px;
    background: radial-gradient(circle at center, #111a30 0%, #0a101f 70%, #060a14 100%);
    text-align: center;
    color: #fff;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.eyebrow {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-hero h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero p {
    max-width: 680px;
    margin: auto;
    font-size: 18px;
    color: var(--muted);
    line-height: 1.5;
}

/* ================= CONTACT SECTION & CARDS ================= */
.contact-section-dark {
    background: #ffffff; /* Fundo da seção 100% branco */
    padding: 110px 0;
    color: #0f172a; /* Texto do título geral em escuro */
}

.contact-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
}

.contact-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #0f172a; /* Título "Canais de Atendimento" em escuro para contrastar no fundo branco */
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #0a101f; /* Card escuro */
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 18px;
    transition: .3s;
    box-shadow: 0 10px 30px rgba(10, 16, 31, 0.15); /* Sombra suave no fundo branco */
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(10, 16, 31, 0.25);
}

.contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, .08);
    border: 1px solid rgba(0, 240, 255, .2);
    color: var(--accent);
    font-size: 20px;
}

.contact-icon.whatsapp {
    background: rgba(37, 211, 102, .12);
    border: 1px solid rgba(37, 211, 102, .3);
    color: #25d366;
}

.contact-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5); /* Texto interno do card escuro */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card span a {
    color: #fff; /* Texto interno do card escuro */
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s;
}

.contact-card span a:hover {
    color: var(--accent);
}

/* ================= CONTACT FORM ================= */
.contact-form-card {
    background: #121b2e; /* Formulário escuro */
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 40px 80px rgba(10, 16, 31, 0.2); /* Sombra marcante no fundo branco */
}

.contact-form-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff; /* Título do form em branco */
}

.contact-form-card p {
    color: var(--muted); /* Texto de apoio em cinza */
    margin-bottom: 35px;
    font-size: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.field {
    margin-bottom: 24px;
}

.field label {
    display: block;
    margin-bottom: 9px;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, .85); /* Labels em branco */
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: #0a101f; /* Inputs escuros */
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 14px;
    padding: 15px 18px;
    color: #fff; /* Texto digitado em branco */
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    outline: none;
    transition: .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.15);
    background: #0d1527;
}

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.field textarea {
    resize: vertical;
}

/* Custom Button to match theme gradient */
.btn-primary-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
    padding: 16px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.btn-primary-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 118, 168, 0.4);
}

/* ================= RESPONSIVO ================= */
@media(max-width:950px){
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .page-hero h1 {
        font-size: 36px;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
}

/* ===================================================
   TABLETS
=================================================== */

@media (max-width:991px){

    .page-hero{
        padding:110px 0 80px;
    }

    .page-hero h1{
        font-size:42px;
    }

    .contact-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .contact-info{
        order:1;
    }

    .contact-form-card{
        order:2;
    }

}

/* ===================================================
   MOBILE
=================================================== */

@media (max-width:768px){

    section{
        padding:70px 0;
    }

    .page-hero{
        padding:90px 0 65px;
    }

    .eyebrow{
        font-size:12px;
        padding:8px 16px;
        margin-bottom:18px;
    }

    .page-hero h1{
        font-size:2rem;
        line-height:1.2;
        margin-bottom:18px;
    }

    .page-hero p{
        font-size:1rem;
        line-height:1.7;
    }

    .contact-section-dark{
        padding:70px 0;
    }

    .contact-title{
        font-size:2rem;
        margin-bottom:25px;
        text-align:center;
    }

    .contact-grid{
        gap:35px;
    }

    .contact-card{
        padding:20px;
        gap:16px;
        border-radius:18px;
    }

    .contact-icon{
        width:48px;
        height:48px;
        min-width:48px;
        font-size:18px;
    }

    .contact-card strong{
        font-size:12px;
    }

    .contact-card span a{
        font-size:1rem;
        word-break:break-word;
    }

    .contact-form-card{
        padding:28px 22px;
        border-radius:20px;
    }

    .contact-form-card h3{
        font-size:1.7rem;
    }

    .contact-form-card p{
        font-size:.95rem;
        margin-bottom:28px;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:0;
    }

    .field{
        margin-bottom:18px;
    }

    .field label{
        font-size:13px;
    }

    .field input,
    .field select,
    .field textarea{
        padding:14px 16px;
        font-size:15px;
    }

    .btn-primary-contact{
        width:100%;
        padding:16px;
    }

}

/* ===================================================
   CELULARES PEQUENOS
=================================================== */

@media (max-width:480px){

    .page-hero{
        padding:80px 0 60px;
    }

    .page-hero h1{
        font-size:1.75rem;
    }

    .contact-title,
    .contact-form-card h3{
        font-size:1.5rem;
    }

    .contact-card{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .contact-icon{
        margin-bottom:5px;
    }

    .contact-card span a{
        font-size:.95rem;
    }

    .contact-form-card{
        padding:24px 18px;
    }

}