/* ==========================================================================
   Motorhome Experience — Landing Page
   Identidade extraída de motorhomeexperience.com.br
   Teal #0096A5 · Cobre #886853 · Escuro #1E1A15 · Albert Sans + Poppins
   ========================================================================== */

:root {
    --brand-primary: #0096a5;
    --brand-primary-hover: #007d8a;
    --brand-deep: #005d67;
    --brand-copper: #886853;
    --brand-copper-soft: #a9866c;
    --brand-dark: #1e1a15;
    --brand-darker: #14110e;
    --brand-light: #f2f8f9;
    --brand-white: #ffffff;

    --text-main: #333333;
    --text-muted: #656565;
    --text-onDark: rgba(255, 255, 255, 0.86);

    --font-display: 'Albert Sans', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --border-radius: 8px;
    --border-radius-lg: 14px;
    --border-radius-pill: 50px;
    --container-width: 1200px;

    --shadow-sm: 0 2px 8px rgba(30, 26, 21, 0.06);
    --shadow-md: 0 8px 24px rgba(30, 26, 21, 0.10);
    --shadow-lg: 0 18px 44px rgba(30, 26, 21, 0.16);

    --map-pattern: url('../images/bg-mapas.webp');
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--brand-white);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.12;
    color: var(--brand-dark);
    letter-spacing: -0.01em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.25s ease; }

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.center { text-align: center; }
.section-padding { padding: 5.5rem 0; position: relative; }

.bg-light { background-color: var(--brand-light); }

.bg-dark {
    background-color: var(--brand-dark);
    color: var(--text-onDark);
}
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #ffffff; }

/* Padrão topográfico da marca.
   background-attachment: fixed prende o padrão à viewport — o conteúdo rola por cima
   e o mapa fica parado, como no site oficial. Como o cover é calculado sobre a
   viewport, o desenho continua alinhado de uma seção para a outra. */
.bg-map { position: relative; }
.bg-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--map-pattern);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}
.bg-dark.bg-map::before { opacity: 0.07; filter: invert(1); }

/* Seção com foto de fundo desfocada — usada para quebrar a sequência de
   seções claras sobre o padrão de mapa. A imagem já vem desfocada do arquivo
   (não usa filter: blur) para não pesar na rolagem nem vazar nas bordas. */
.bg-photo {
    position: relative;
    isolation: isolate;
    background: var(--brand-dark) url('../images/ParqueNacionais_02.jpg') center/cover no-repeat fixed;
    color: var(--text-onDark);
}
.bg-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(20, 17, 14, 0.74) 0%, rgba(0, 93, 103, 0.52) 48%, rgba(20, 17, 14, 0.78) 100%);
}
.bg-photo h2, .bg-photo h3 { color: #ffffff; }
.bg-photo .section-lead { color: #ffffff; }
.bg-photo .section-intro { color: var(--text-onDark); }
.bg-photo .section-tag {
    background-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}
/* Os cards brancos por cima continuam com o texto escuro original */
.bg-photo .duvidas-card h3 { color: var(--brand-dark); }

/* Etiqueta de seção */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.05rem;
    border-radius: var(--border-radius-pill);
    background-color: rgba(0, 150, 165, 0.12);
    color: var(--brand-primary);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.section-title {
    font-size: clamp(1.75rem, 3.8vw, 2.85rem);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title .tl-teal { color: var(--brand-primary); }

/* Subtítulo em Poppins — como no site da marca */
.section-lead {
    font-family: var(--font-body);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.35;
    margin-bottom: 1.25rem;
    text-transform: none;
    letter-spacing: 0;
}
.bg-dark .section-lead { color: #ffffff; }

.section-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 780px;
    margin-bottom: 1.1rem;
    line-height: 1.75;
}
.bg-dark .section-intro { color: var(--text-onDark); }

.text-block p { margin-bottom: 0.9rem; color: var(--text-muted); font-size: 1.05rem; }
.text-block p:last-child { margin-bottom: 0; }
.text-block p strong { color: var(--brand-dark); font-weight: 600; }
.bg-dark .text-block p { color: var(--text-onDark); }
.bg-dark .text-block p strong { color: #ffffff; }

/* ===================== HEADER ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 26, 21, 0.07);
    box-shadow: var(--shadow-sm);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    z-index: 2;
}

.site-header-logo img { height: 60px; width: auto; display: block; }

.site-nav { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; justify-content: flex-end; }

.site-nav-link {
    color: var(--brand-dark);
    font-size: 0.84rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.site-nav-link:hover { color: var(--brand-primary); }

.site-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}
.site-nav-toggle-bar {
    width: 24px; height: 2.5px;
    background-color: var(--brand-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================== HERO ===================== */
.hero-section {
    position: relative;
    isolation: isolate;
    background: var(--brand-dark) url('../images/ParqueNacionais_01.png') center/cover no-repeat;
    color: #ffffff;
    padding: 4.5rem 0 4rem;
    min-height: 82vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Vídeo de fundo do hero */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

/* Véu escuro por cima do vídeo, para o texto continuar legível */
.hero-veil {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(95deg, rgba(20, 17, 14, 0.92) 0%, rgba(24, 21, 17, 0.80) 36%, rgba(24, 21, 17, 0.34) 68%, rgba(0, 93, 103, 0.24) 100%);
}

.hero-content { max-width: 900px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 150, 165, 0.22);
    border: 1px solid rgba(0, 150, 165, 0.55);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}
.hero-badge i { color: var(--brand-primary); width: 16px; height: 16px; }

.hero-title {
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.05;
}
.hero-title .hero-highlight { color: var(--brand-primary); }

.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.9rem;
    line-height: 1.55;
}

.hero-text {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.4rem;
    line-height: 1.7;
    max-width: 760px;
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.4rem;
}

.hero-bullet {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1.1rem;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}
.hero-bullet i { color: var(--brand-primary); width: 17px; height: 17px; flex-shrink: 0; }

/* ===================== CTA CHAT ===================== */
.cta-note-box {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: rgba(0, 150, 165, 0.09);
    border-left: 4px solid var(--brand-primary);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 1rem 1.25rem;
    margin-top: 1.25rem;
    color: var(--brand-dark);
    font-weight: 500;
    font-size: 0.94rem;
    line-height: 1.6;
    max-width: 760px;
    text-align: left;
}
.cta-note-box i { color: var(--brand-primary); flex-shrink: 0; margin-top: 0.25rem; width: 22px; height: 22px; }

.hero-section .cta-note-box,
.bg-dark .cta-note-box {
    background: rgba(255, 255, 255, 0.09);
    border-left-color: var(--brand-primary);
    color: #ffffff;
}

/* ===================== LISTA DE CHECK ===================== */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.55;
}
.check-list li i { color: var(--brand-primary); flex-shrink: 0; width: 21px; height: 21px; margin-top: 0.22rem; }
.bg-dark .check-list li { color: #ffffff; }

.check-list.check-pills { gap: 0.7rem; }
.check-list.check-pills li {
    background: #ffffff;
    border: 1px solid rgba(0, 150, 165, 0.22);
    border-radius: var(--border-radius);
    padding: 0.75rem 1.1rem;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--brand-dark);
}

/* ===================== GRIDS ===================== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.media-frame {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 380px;
    background: var(--brand-light);
    position: relative;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-frame::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-copper));
}

/* Painel da arte-chave "Livre por natureza" — não recorta a tipografia */

/* ===================== CARDS DE SERVIÇO ===================== */
.servico-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 2rem 1.6rem;
    border: 1px solid rgba(30, 26, 21, 0.08);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary);
}
.servico-icon {
    width: 58px; height: 58px;
    background: rgba(0, 150, 165, 0.12);
    border-radius: var(--border-radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
}
.servico-card h3 {
    font-size: 1.12rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--brand-dark);
    line-height: 1.25;
}
.servico-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ===================== DÚVIDAS x SOLUÇÃO ===================== */
.duvidas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: stretch; }

.duvidas-card {
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}
.duvidas-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-perguntas {
    background: linear-gradient(150deg, #ffffff 0%, #f2f8f9 100%);
    border: 1px solid rgba(30, 26, 21, 0.1);
    border-top: 4px solid var(--brand-copper);
}
.card-resposta {
    background: #ffffff;
    border: 1px solid rgba(0, 150, 165, 0.22);
    border-top: 4px solid var(--brand-primary);
}

.vcard-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--brand-copper);
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.vcard-tag.tag-teal { color: var(--brand-primary); }

.duvidas-card h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    line-height: 1.25;
}

.perguntas-list { display: flex; flex-direction: column; gap: 0.75rem; flex-grow: 1; }
.pergunta-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #ffffff;
    padding: 0.85rem 1.1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(30, 26, 21, 0.08);
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    color: var(--brand-dark);
    font-size: 0.96rem;
}
.pergunta-item .q-icon { font-size: 1.15rem; flex-shrink: 0; }

/* ===================== ROTEIROS / DESTINOS ===================== */
.roteiros-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

.roteiro-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(30, 26, 21, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.roteiro-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.roteiro-img { height: 210px; width: 100%; object-fit: cover; background: var(--brand-light); }

.roteiro-body { padding: 1.6rem 1.5rem 1.8rem; display: flex; flex-direction: column; flex-grow: 1; }
.roteiro-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--brand-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.roteiro-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0.6rem; }
.roteiro-body p:last-child { margin-bottom: 0; }

/* ===================== DESTINOS EXTRAS (Canadá / Europa) ===================== */
.extra-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 760px; margin: 0 auto; }
.extra-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--border-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.extra-card:hover { background: rgba(0, 150, 165, 0.18); border-color: var(--brand-primary); transform: translateY(-4px); }
.extra-flag { font-size: 2.4rem; line-height: 1; margin-bottom: 0.75rem; }
.extra-card h3 { color: #ffffff; font-size: 1.4rem; text-transform: uppercase; }

/* ===================== SOBRE / FUNDADORES ===================== */
.sobre-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(30, 26, 21, 0.08);
}
.sobre-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0; align-items: stretch; }

.sobre-img-wrapper { position: relative; min-height: 480px; overflow: hidden; background: var(--brand-light); }
.sobre-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.img-placeholder {
    width: 100%; height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: repeating-linear-gradient(45deg, #eaf3f4, #eaf3f4 12px, #e0edee 12px, #e0edee 24px);
    color: var(--brand-deep);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    padding: 1.5rem;
}
.img-placeholder i { width: 34px; height: 34px; opacity: 0.6; }

.sobre-body { padding: 3rem 2.75rem; display: flex; flex-direction: column; justify-content: center; }
.sobre-body .text-block p { font-size: 1rem; }

.assinatura {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(0, 150, 165, 0.2);
}
.assinatura-marca {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--brand-primary);
    letter-spacing: 0.02em;
    line-height: 1.1;
}
.assinatura-tag {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    font-style: italic;
    color: var(--brand-copper);
}

/* ===================== NÚMEROS ===================== */
.numeros-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.numero-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--border-radius-lg);
    padding: 1.75rem 1.25rem;
    text-align: center;
}
.numero-valor {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.numero-label { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); font-weight: 500; line-height: 1.4; }

/* ===================== DEPOIMENTOS (prints do Google) ===================== */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.depoimento-print {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(30, 26, 21, 0.09);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    cursor: zoom-in;
    transition: all 0.3s ease;
}
.depoimento-print:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-primary); }
.depoimento-print img { width: 100%; height: auto; display: block; }

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 17, 14, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--border-radius); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close {
    position: absolute;
    top: 1.5rem; right: 1.75rem;
    background: none; border: none;
    color: #ffffff; font-size: 2.5rem;
    line-height: 1; cursor: pointer;
}

/* ===================== FAQ ===================== */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(30, 26, 21, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.25s ease;
}
.faq-item summary {
    padding: 1.3rem 1.6rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.02rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--brand-dark);
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--brand-primary);
    flex-shrink: 0;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item[open] { border-color: var(--brand-primary); box-shadow: var(--shadow-sm); }
.faq-answer {
    padding: 1.15rem 1.6rem 1.4rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.75;
    border-top: 1px solid rgba(30, 26, 21, 0.06);
}
.faq-answer strong { color: var(--brand-dark); font-weight: 600; }

/* ===================== CTA FINAL ===================== */
.cta-final-box {
    background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand-deep) 100%);
    border-radius: var(--border-radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    color: #ffffff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.cta-final-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-copper));
}
.cta-final-box .section-title { color: #ffffff; }
.cta-final-text {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    margin: 0 auto 1.5rem;
    line-height: 1.75;
}
.cta-final-box .cta-note-box {
    display: inline-flex;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    margin: 0 auto;
}

/* ===================== FOOTER ===================== */
.main-footer {
    background: var(--brand-darker);
    color: rgba(255, 255, 255, 0.75);
    padding: 3.25rem 0 2.25rem;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
.footer-logo img { height: 58px; width: auto; }
.footer-tagline {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1rem;
    color: var(--brand-copper-soft);
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.75rem; font-size: 0.92rem; font-weight: 500; }
.footer-links a { color: rgba(255, 255, 255, 0.8); }
.footer-links a:hover { color: var(--brand-primary); }
.footer-copy { font-size: 0.85rem; color: rgba(255, 255, 255, 0.45); }

/* ===================== RESPONSIVO ===================== */
@media (max-width: 992px) {
    .grid-2, .duvidas-grid, .sobre-grid { grid-template-columns: 1fr; gap: 2rem; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .roteiros-grid, .depoimentos-grid, .grid-3, .numeros-grid { grid-template-columns: repeat(2, 1fr); }
    .sobre-grid { gap: 0; }
    .sobre-img-wrapper, .img-placeholder { min-height: 320px; }
    .media-frame { min-height: 300px; }
}

@media (max-width: 768px) {
    .grid-3, .grid-4, .roteiros-grid, .depoimentos-grid, .numeros-grid, .extra-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .site-nav {
        position: fixed;
        top: 78px; left: 0; right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 1.75rem;
        gap: 1.1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-160%);
        transition: transform 0.35s ease;
        z-index: 999;
    }
    .site-header.is-nav-open .site-nav { transform: translateY(0); }
    .site-nav-toggle { display: flex; }
    .section-padding { padding: 3.5rem 0; }

    /* iOS não suporta background-attachment: fixed — volta para o comportamento normal */
    .bg-map::before, .bg-photo { background-attachment: scroll; }

    /* No mobile o vídeo de 16MB não compensa: fica só o poster */
    .hero-video { display: none; }
    .hero-section {
        min-height: 0;
        padding: 3rem 0;
    }
    .hero-veil {
        background: linear-gradient(180deg, rgba(20, 17, 14, 0.86) 0%, rgba(24, 21, 17, 0.72) 55%, rgba(0, 93, 103, 0.55) 100%);
    }
    .sobre-body { padding: 2rem 1.5rem; }
    .cta-final-box { padding: 2.5rem 1.5rem; }
    .duvidas-card { padding: 2rem 1.35rem; }
}
