/* =========================
   CONTACT PAGE
   VOLPH BRASIL
========================= */

/* =========================
   BASE
========================= */

.contact-page {
    background: #ffffff;
    color: #111111;
}

.contact-page .contact-main {
    background: #ffffff;
}

/* =========================
   SEÇÕES
========================= */

/* HERO */
.contact-page .hero-home {
    background: #0b0b0b;
}

/* CLARAS */
.contact-page .entry-section,
.contact-page .destinations-section,
.contact-page .trust-section {
    background: #f5f5f5;
}

/* ESCURAS */
.contact-page .ecosystem-section,
.contact-page .final-cta-section {
    background: #0b0b0b;
}

/* =========================
   TIPOGRAFIA
========================= */

.contact-page .section-title {
    color: #111111;
}

.contact-page .section-text {
    color: #555555;
}

.contact-page .section-eyebrow {
    color: #d4b06a;
}

/* DARK */
.contact-page .hero-title,
.contact-page .hero-text,
.contact-page .section-title-on-dark,
.contact-page .section-text-on-dark {
    color: #ffffff;
}

.contact-page .hero-text {
    color: rgba(255,255,255,0.7);
}

/* =========================
   HERO (PADRÃO VOLPH)
========================= */

.contact-page .hero-visual {
    position: relative;
}

.contact-page .hero-image-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
}

.contact-page .hero-image-wrap img {
    width: 100%;
    display: block;
}

/* CARD SOBREPOSTO */
.contact-page .hero-aside {
    position: absolute;
    left: 20px;
    bottom: 20px;

    width: calc(100% - 40px);
    max-width: 320px;

    padding: 16px;
    border-radius: 16px;

    background: linear-gradient(180deg, rgba(8,16,24,0.95), rgba(11,31,46,0.95));
    backdrop-filter: blur(6px);

    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);

    z-index: 3;
}

.contact-page .hero-aside h2 {
    color: #ffffff;
    margin-bottom: 6px;
}

.contact-page .hero-aside p {
    color: rgba(255,255,255,0.7);
}

.contact-page .hero-aside-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #d4b06a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* =========================
   CARDS
========================= */

.contact-page .entry-card,
.contact-page .destination-card,
.contact-page .trust-card {
    background: #ffffff;
    border-radius: 18px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

.contact-page .entry-card:hover,
.contact-page .destination-card:hover,
.contact-page .trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.10);
}

.contact-page .entry-card h3,
.contact-page .destination-card h3,
.contact-page .trust-card h3 {
    color: #111111;
}

.contact-page .entry-card p,
.contact-page .destination-card p,
.contact-page .trust-card p {
    color: #555555;
}

.contact-page .entry-card small,
.contact-page .destination-card small,
.contact-page .trust-card small {
    color: #d4b06a;
}

/* CARD DARK */
.contact-page .entry-card-dark {
    background: #111111;
}

.contact-page .entry-card-dark h3 {
    color: #ffffff;
}

.contact-page .entry-card-dark p {
    color: rgba(255,255,255,0.7);
}

/* =========================
   BOTÕES
========================= */

.contact-page .btn-primary {
    background: #d4b06a;
    color: #111111;
}

.contact-page .btn-secondary {
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-page .btn-outline-dark {
    border: 1px solid rgba(0,0,0,0.12);
    color: #111111;
}

.contact-page .btn-outline-dark:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

/* =========================
   FORMULÁRIO
========================= */

.contact-page .volph-contact-form {
    background: #ffffff;
}

/* =========================
   BLOCO ESCURO
========================= */

.contact-page .ecosystem-layout {
    background: #111111;
}

.contact-page .ecosystem-step {
    background: rgba(255,255,255,0.04);
}

.contact-page .ecosystem-step strong {
    color: #ffffff;
}

.contact-page .ecosystem-step p {
    color: rgba(255,255,255,0.7);
}

/* =========================
   CTA FINAL
========================= */

.contact-page .final-cta-panel {
    background: #111111;
}

.contact-page .final-cta-panel h2,
.contact-page .final-cta-panel p {
    color: #ffffff;
}

/* =========================
   CORREÇÃO GLOBAL DARK
========================= */

.contact-page .hero-home .section-title,
.contact-page .ecosystem-section .section-title,
.contact-page .final-cta-section .section-title {
    color: #ffffff;
}

.contact-page .hero-home .section-text,
.contact-page .ecosystem-section .section-text,
.contact-page .final-cta-section .section-text {
    color: rgba(255,255,255,0.7);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .contact-page .hero-aside {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: none;
        margin-top: 12px;

        box-shadow: none;
        backdrop-filter: none;
    }
}