:root {
    --ink: #16232e;
    --ink-soft: #47596b;
    --muted: #7c8fa0;
    --terracotta: #1878b8;
    --terracotta-dark: #125f92;
    --terracotta-darker: #0d4a73;
    --terracotta-light: #d9ecf8;
    --gold: #2fa84f;
    --gold-dark: #23803c;
    --gold-light: #ddf5e3;
    --sky: #1f9d6c;
    --sky-dark: #167a54;
    --sky-light: #d7f3e6;
    --paper: #ffffff;
    --cream: #f2f7fa;
    --border: #dfeaf0;
    --brown: #0e2436;
    --brown-soft: #163449;
    --shadow-sm: 0 2px 12px rgba(14, 36, 54, 0.07);
    --shadow-md: 0 16px 40px rgba(14, 36, 54, 0.12);
    --shadow-lg: 0 30px 70px rgba(14, 36, 54, 0.2);
    --radius: 22px;
    --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, "Segoe UI", Roboto, sans-serif;
    background: var(--paper);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
.script { font-family: 'Caveat', cursive; font-weight: 600; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6.5rem 0; position: relative; }
.section-cream { background: var(--cream); }

.section-head { max-width: 600px; margin: 0 auto 3rem; text-align: center; position: relative; z-index: 1; }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.6; margin-top: 0.6rem; }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3rem); }
.section-head .eyebrow {
    display: block; background: none; padding: 0; margin-bottom: -0.3rem;
    font-family: 'Caveat', cursive; font-weight: 600; font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    color: var(--terracotta); text-transform: none; letter-spacing: 0;
}
.section-head h2::after {
    content: ""; display: block; width: 60px; height: 5px; margin: 0.7rem auto 0;
    border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--terracotta));
}
.section-promos .section-head h2::after { background: linear-gradient(90deg, var(--gold), var(--terracotta-light)); }

.eyebrow {
    display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--terracotta-dark); background: var(--terracotta-light);
    padding: 0.4rem 0.9rem; border-radius: 999px; margin-bottom: 1rem;
}
.eyebrow-light { color: var(--gold-dark); background: var(--gold-light); }

.empty-note { text-align: center; color: var(--muted); padding: 2rem 0; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: 0.08s; }
.reveal-2 { transition-delay: 0.16s; }
.reveal-3 { transition-delay: 0.24s; }
.reveal-4 { transition-delay: 0.32s; }

/* ---------- Background blobs ---------- */
.section-blobby { overflow: hidden; }
.section-blobby > .container { position: relative; z-index: 1; }
.bg-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.18; pointer-events: none; z-index: 0; animation: drift 26s ease-in-out infinite; }
.bg-blob.terracotta { background: radial-gradient(circle, var(--terracotta) 0%, transparent 72%); }
.bg-blob.gold { background: radial-gradient(circle, var(--gold) 0%, transparent 72%); }
.bg-blob.sky { background: radial-gradient(circle, var(--sky) 0%, transparent 72%); }
@keyframes drift { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(14px, -10px); } }
@media (max-width: 700px) { .bg-blob { opacity: 0.13; filter: blur(60px); } }

/* ---------- Topbar ---------- */
.topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 2rem; transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, top 0.2s ease;
}

/* ---------- Banner especial (Hot Sale, Cyber Monday, etc.) ---------- */
.promo-banner-especial {
    position: fixed; top: 0; left: 0; right: 0; z-index: 210;
    height: 48px; display: flex; align-items: center; justify-content: center;
    gap: 1rem; padding: 0 3.2rem 0 1rem; overflow: hidden;
    background: linear-gradient(90deg, var(--terracotta), var(--gold));
    background-size: cover; background-position: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.promo-banner-especial::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(14,36,54,0.72), rgba(14,36,54,0.55));
    pointer-events: none;
}
.promo-banner-especial-text {
    position: relative; z-index: 1; color: #fff;
    display: flex; align-items: baseline; gap: 0.5rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    font-size: 0.88rem;
}
.promo-banner-especial-text strong { font-size: 0.92rem; letter-spacing: 0.2px; }
.promo-banner-especial-text span { opacity: 0.9; overflow: hidden; text-overflow: ellipsis; }
.promo-banner-especial-cta {
    position: relative; z-index: 1; flex-shrink: 0;
    background: #fff; color: var(--ink); font-weight: 700; font-size: 0.8rem;
    padding: 0.4rem 0.9rem; border-radius: 999px; white-space: nowrap;
    transition: transform 0.15s ease;
}
.promo-banner-especial-cta:hover { transform: translateY(-1px); }
.promo-banner-especial-close {
    position: absolute; right: 0.7rem; top: 50%; transform: translateY(-50%);
    z-index: 1; background: rgba(255,255,255,0.2); color: #fff; border: none;
    width: 26px; height: 26px; border-radius: 50%; font-size: 1.1rem; line-height: 1;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.promo-banner-especial-close:hover { background: rgba(255,255,255,0.32); }

body.has-promo-banner { padding-top: 48px; }
body.has-promo-banner .topbar { top: 48px; }

.promo-popup-overlay {
    display: none; position: fixed; inset: 0; z-index: 500;
    background: rgba(10, 14, 20, 0.86);
    align-items: center; justify-content: center; padding: 2rem;
}
.promo-popup-overlay.open { display: flex; }
.promo-popup-box {
    position: relative; height: min(85vh, 680px); width: auto;
    aspect-ratio: 9 / 16; max-width: 92vw;
    border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.promo-popup-box a { display: block; width: 100%; height: 100%; }
.promo-popup-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.promo-popup-close {
    position: absolute; top: 10px; right: 10px; z-index: 1;
    width: 34px; height: 34px; border-radius: 50%; border: none;
    background: rgba(0,0,0,0.55); color: #fff; font-size: 1.3rem; line-height: 1;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.promo-popup-close:hover { background: rgba(0,0,0,0.75); }
@media (max-width: 480px) {
    .promo-popup-overlay { padding: 1rem; }
}

@media (max-width: 760px) {
    .promo-banner-especial { height: 68px; padding: 0 2.6rem 0 0.8rem; gap: 0.6rem; }
    .promo-banner-especial-text { flex-direction: column; align-items: flex-start; gap: 0.1rem; font-size: 0.78rem; }
    .promo-banner-especial-text strong { font-size: 0.82rem; }
    .promo-banner-especial-cta { font-size: 0.72rem; padding: 0.32rem 0.7rem; }
    body.has-promo-banner { padding-top: 68px; }
    body.has-promo-banner .topbar { top: 68px; }
}
.topbar.scrolled {
    background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm); padding: 0.85rem 2rem;
}
.brand-logo { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.12rem; color: var(--ink); }
.brand-logo .mark {
    width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, var(--terracotta), var(--gold));
    color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.76rem; font-weight: 700;
    letter-spacing: 0.02em; box-shadow: 0 6px 14px rgba(24, 120, 184, 0.35);
}
.brand-logo-img { height: 64px; width: auto; max-width: 86px; object-fit: contain; flex-shrink: 0; }
.brand-logo-img-round { border-radius: 50%; height: 58px; width: 58px; object-fit: cover; box-shadow: 0 6px 14px rgba(24, 120, 184, 0.25); }
@media (max-width: 700px) { .brand-logo-img { height: 48px; max-width: 66px; } .brand-logo-img-round { height: 44px; width: 44px; } }
.topbar nav { display: flex; align-items: center; gap: 2.1rem; }
.topbar nav a { font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); position: relative; padding: 0.3rem 0; transition: color 0.2s ease; }
.topbar nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--terracotta); transition: width 0.2s ease; }
.topbar nav a:hover::after { width: 100%; }
.topbar nav a.current { color: var(--ink); }
.topbar nav a.current::after { width: 100%; }

/* Pages whose hero is a dark photo need light nav text until the topbar goes solid on scroll */
.topbar-dark-hero nav a, .topbar-dark-hero nav a.current { color: #fff; }
.topbar-dark-hero .nav-toggle { color: #fff; }
.topbar.scrolled nav a { color: var(--ink-soft); }
.topbar.scrolled nav a.current { color: var(--ink); }
.topbar.scrolled .nav-toggle { color: var(--ink); }

.btn-wa {
    display: flex; align-items: center; gap: 0.5rem; background: var(--terracotta); color: #fff;
    padding: 0.65rem 1.25rem; border-radius: 100px; font-size: 0.88rem; font-weight: 700;
    box-shadow: 0 10px 20px rgba(24, 120, 184, 0.3); transition: background 0.15s ease, transform 0.15s ease;
}
.btn-wa:hover { background: var(--terracotta-dark); transform: translateY(-2px); }

.nav-toggle { display: none; }

@media (max-width: 700px) {
    .topbar { padding: 1.1rem 1.2rem; }
    .topbar nav {
        display: none;
    }
    .topbar nav.nav-open {
        display: flex; flex-direction: column; align-items: flex-start; gap: 0.3rem;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--paper); padding: 1.2rem 1.5rem 1.4rem; box-shadow: var(--shadow-md);
    }
    .topbar nav.nav-open a { color: var(--ink-soft); padding: 0.5rem 0; width: 100%; }
    .topbar nav.nav-open a.current { color: var(--ink); }
    .btn-wa span { display: none; }
    .btn-wa { padding: 0.65rem; }
    .nav-toggle {
        display: flex; align-items: center; justify-content: center;
        background: none; border: none; color: var(--ink); cursor: pointer; padding: 0.4rem;
    }
}

/* ---------- Hero ---------- */
.hero {
    position: relative; min-height: 88vh; display: flex; align-items: center;
    padding: 9rem 0 10rem; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-veil {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(14,36,54,0.82) 0%, rgba(14,36,54,0.55) 42%, rgba(14,36,54,0.22) 75%);
}

.hero-body { position: relative; z-index: 2; max-width: 640px; }
.hero-body .eyebrow { background: rgba(255,255,255,0.14); color: #eaf5fc; backdrop-filter: blur(4px); }
.hero h1 { font-size: clamp(2.3rem, 4.3vw, 3.4rem); line-height: 1.1; margin-bottom: 1.2rem; color: #fff; }
.hero h1 .accent { color: var(--gold); }
.hero h1 .script { color: var(--gold); font-size: 1.15em; display: inline-block; transform: rotate(-3deg); }
.hero-lead { font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.6; max-width: 480px; margin: 0 0 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.55); }
.hero-actions .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.12); }

/* ---------- Hero overlap cards ---------- */
.hero-overlap { position: relative; z-index: 3; margin-top: -6rem; }
.hero-overlap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.overlap-card {
    display: flex; align-items: center; gap: 1.2rem; background: var(--paper); border-radius: var(--radius);
    padding: 1.3rem 1.5rem; box-shadow: var(--shadow-lg); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.overlap-card:hover { transform: translateY(-4px); }
.overlap-card img { width: 84px; height: 84px; border-radius: 16px; object-fit: cover; flex-shrink: 0; }
.overlap-card-body { min-width: 0; flex: 1; }
.overlap-card-body span { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--terracotta-dark); }
.overlap-card-body h4 { font-size: 1.3rem; margin: 0.25rem 0 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.overlap-card-arrow {
    width: 42px; height: 42px; border-radius: 50%; background: var(--terracotta-light); color: var(--terracotta-dark);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.overlap-card.overlap-extra { display: none; }
.hero-overlap-grid.expanded .overlap-card.overlap-extra { display: flex; }

.hero-overlap-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-overlap-actions .btn-ghost {
    background: var(--paper); box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
    .hero-overlap-grid { grid-template-columns: 1fr; }
    .hero-overlap { margin-top: -3rem; }
}

.hero-stats { display: flex; gap: 2.2rem; margin-top: 2.2rem; }
.hero-stats div strong { display: block; font-size: 1.7rem; font-weight: 800; color: #fff; }
.hero-stats div span { font-size: 0.8rem; color: rgba(255,255,255,0.75); font-weight: 600; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 0.55rem; background: var(--terracotta); color: #fff;
    padding: 0.95rem 1.75rem; border-radius: 100px; font-weight: 700; font-size: 0.96rem;
    border: none; cursor: pointer; font-family: inherit; box-shadow: 0 14px 26px rgba(24, 120, 184, 0.32);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(24, 120, 184, 0.4); background: var(--terracotta-dark); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 0.4rem; background: transparent; color: var(--ink);
    padding: 0.95rem 1.6rem; border-radius: 100px; font-weight: 700; font-size: 0.96rem;
    border: 1.5px solid var(--border); transition: border-color 0.15s ease, background 0.15s ease;
}
.btn-ghost:hover { border-color: var(--terracotta); background: var(--terracotta-light); }
.why-body .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.why-body .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

@media (max-width: 700px) {
    .hero { padding: 7rem 0 6rem; min-height: 0; }
    .hero-stats { flex-wrap: wrap; gap: 1.4rem; }
}

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
    padding: 9rem 0 3.5rem; text-align: center;
    background: radial-gradient(circle at 15% 20%, var(--terracotta-light) 0%, transparent 45%),
                radial-gradient(circle at 85% 15%, var(--gold-light) 0%, transparent 40%),
                var(--paper);
}
.page-hero .eyebrow { display: inline-flex; }
.page-hero h1 { font-size: clamp(2.1rem, 3.8vw, 2.9rem); margin: 1rem 0 0.9rem; }
.page-hero h1::after {
    content: ""; display: block; width: 74px; height: 6px; margin: 0.75rem auto 0;
    border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--terracotta));
}
.page-hero .lead { max-width: 560px; margin: 0 auto; font-size: 1.05rem; color: var(--ink-soft); line-height: 1.6; }

.page-hero-split { position: relative; overflow: hidden; }
.page-hero-split .page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-split .page-hero-media img {
    width: 100%; height: 100%; object-fit: cover; opacity: 1;
    border-radius: 0; border: 0; box-shadow: none;
}
.page-hero-split .page-hero-media::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.62); }
.page-hero-split .container { position: relative; z-index: 1; }
.page-hero-split h1, .page-hero-split .lead { color: #fff; }
.page-hero-split .eyebrow { background: rgba(255, 255, 255, 0.15); color: #fff; }

/* ---------- Filter pills ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.4rem; }
.filter-pill {
    background: var(--paper); border: 1.5px solid var(--border); color: var(--ink-soft);
    font-weight: 700; font-size: 0.84rem; padding: 0.55rem 1.15rem; border-radius: 999px;
    cursor: pointer; font-family: inherit; transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.filter-pill:hover { border-color: var(--terracotta); transform: translateY(-1px); }
.filter-pill.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.filters-secundario { margin-top: -1.4rem; }
.filter-pill-secundario { font-size: 0.76rem; padding: 0.42rem 0.95rem; border-color: transparent; background: var(--sky-light); color: var(--sky-dark); }
.filter-pill-secundario.active { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }

/* ---------- Google badge ---------- */
.google-badge {
    display: inline-flex; align-items: center; gap: 0.55rem;
    background: var(--paper); border: 1px solid var(--border); border-radius: 999px;
    padding: 0.6rem 1.2rem; margin-top: 1.4rem; box-shadow: var(--shadow-sm);
    font-size: 0.88rem; color: var(--ink-soft);
}
.google-badge strong { color: var(--ink); font-size: 1rem; }
.google-badge .stars { color: var(--gold); letter-spacing: 0.05em; }

/* ---------- Vantagens / teaser cards ---------- */
.vantagens-band { padding: 6rem 0; }
.vantagens-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.vantagem {
    background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 1.7rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vantagem:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.vantagem-icon {
    width: 46px; height: 46px; border-radius: 13px; color: #fff;
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
    box-shadow: 0 8px 16px rgba(14, 36, 54, 0.18);
}
.vantagem:nth-child(1) .vantagem-icon { background: linear-gradient(135deg, var(--terracotta), #4aa3d6); }
.vantagem:nth-child(2) .vantagem-icon { background: linear-gradient(135deg, var(--sky), var(--sky-dark)); }
.vantagem:nth-child(3) .vantagem-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.vantagem:nth-child(4) .vantagem-icon { background: linear-gradient(135deg, var(--brown-soft), var(--brown)); }
.vantagem h3 { font-size: 1.03rem; margin-bottom: 0.5rem; }
.vantagem p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .vantagens-grid { grid-template-columns: repeat(2, 1fr); gap: 1.3rem; } }
@media (max-width: 560px) { .vantagens-grid { grid-template-columns: 1fr; } }

/* ---------- Full-bleed diagonal sections (Serviços / Destinos) ---------- */
.full-wrap { display: flex; flex-direction: column; }

.full-block {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 78vh;
    overflow: hidden;
}
.full-wrap > .full-block:nth-child(odd) { background: var(--terracotta-light); --tint: var(--terracotta); }
.full-wrap > .full-block:nth-child(even) { background: var(--gold-light); --tint: var(--gold-dark); }

.full-block-media {
    position: absolute; top: 0; bottom: 0; left: 0; width: 56%;
    background-size: cover; background-position: center;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    box-shadow: 30px 0 60px -20px rgba(14, 36, 54, 0.35);
}
.full-block.reverse .full-block-media {
    left: auto; right: 0;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: -30px 0 60px -20px rgba(14, 36, 54, 0.35);
}

.full-block-content {
    position: relative; z-index: 2;
    width: 42%; margin-left: auto;
    padding: 3rem 6vw 3rem 2.5rem;
    overflow: hidden;
}
.full-block.reverse .full-block-content {
    margin-left: 0; margin-right: auto;
    padding: 3rem 2.5rem 3rem 6vw;
}

.full-block-bignum {
    position: absolute; top: -1.6rem; right: 1.5rem; z-index: 0;
    font-size: 10rem; font-weight: 800; line-height: 1;
    color: var(--tint); opacity: 0.1; pointer-events: none; user-select: none;
}
.full-block.reverse .full-block-bignum { right: auto; left: 1.5rem; }

.full-block-content .eyebrow { position: relative; z-index: 1; color: #fff; background: var(--tint); }
.full-block-content h2 { position: relative; z-index: 1; font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 1rem; }
.full-block-rule { position: relative; z-index: 1; display: block; width: 54px; height: 4px; border-radius: 999px; margin-bottom: 1.3rem; background: var(--tint); }
.full-block-content p { position: relative; z-index: 1; font-size: 0.98rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.8rem; }

@media (max-width: 900px) {
    .full-block { flex-direction: column; min-height: auto; padding-bottom: 2.8rem; align-items: stretch; }
    .full-block-media {
        position: relative; width: 100%; height: 260px; top: auto; left: auto; right: auto; bottom: auto;
        clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%) !important;
        box-shadow: none !important;
    }
    .full-block-content, .full-block.reverse .full-block-content {
        width: 100%; margin: 0; padding: 2.2rem 1.5rem 0;
    }
}

/* ---------- Destinos (overlay cards) ---------- */
.destinos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.destino-card {
    position: relative; display: block; border-radius: var(--radius); overflow: hidden; height: 300px;
    box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.destino-card-big { grid-column: span 2; grid-row: span 2; height: 100%; }
.destino-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.destino-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.destino-card:hover .destino-img { transform: scale(1.07); }
.destino-fade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,36,54,0) 40%, rgba(14,36,54,0.86) 100%); }
.destino-ribbon {
    position: absolute; top: 14px; left: 14px; z-index: 1;
    background: var(--terracotta); color: #fff; font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em; padding: 0.35rem 0.8rem; border-radius: 999px;
    box-shadow: 0 6px 14px rgba(14,36,54,0.25);
}
.destino-info { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.3rem 1.3rem 1.2rem; color: #fff; display: flex; align-items: flex-end; justify-content: space-between; gap: 0.8rem; }
.destino-info-text { min-width: 0; }
.destino-info h3 { font-size: 1.15rem; color: #fff; }
.destino-card-big .destino-info h3 { font-size: 1.5rem; }
.destino-info p { font-size: 0.84rem; margin: 0.4rem 0 0; color: rgba(255,255,255,0.85); line-height: 1.5; max-width: 320px; }
.destino-link {
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--brown);
    transition: background 0.15s ease, transform 0.15s ease;
}
.destino-card:hover .destino-link { background: #fff; transform: scale(1.08); }

@media (max-width: 900px) {
    .destinos-grid { grid-template-columns: repeat(2, 1fr); }
    .destino-card-big { grid-column: span 2; grid-row: span 1; height: 300px; }
}
@media (max-width: 620px) {
    .destinos-grid { grid-template-columns: 1fr; }
    .destino-card-big { grid-column: span 1; }
}

/* ---------- Trust band (real traveler/owner photos) ---------- */
.trust-band { position: relative; padding: 5rem 0 4.5rem; overflow: hidden; }
.trust-band-media { position: absolute; inset: 0; }
.trust-band-media img { width: 100%; height: 100%; object-fit: cover; }
.trust-band-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,36,54,0.55) 0%, rgba(14,36,54,0.88) 100%); }
.trust-band .container { position: relative; z-index: 1; }
.trust-band h2 { text-align: center; color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 2.4rem; }
.trust-photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.trust-photos img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg); transition: transform 0.3s ease;
}
.trust-photos img:hover { transform: translateY(-4px); }
@media (max-width: 700px) { .trust-photos { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Stats band ---------- */
.stats-band {
    background: linear-gradient(120deg, var(--terracotta-darker), var(--terracotta-dark) 55%, var(--sky-dark));
    color: #fff; padding: 3.8rem 0; position: relative; overflow: hidden;
}
.stats-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(255,255,255,0.14), transparent 45%); }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat strong { display: block; font-size: 2.3rem; font-weight: 800; }
.stat span { display: block; margin-top: 0.4rem; font-size: 0.85rem; opacity: 0.88; font-weight: 600; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 1.8rem; } }

/* ---------- Excursões (package cards) ---------- */
.excursoes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.excursao-card {
    position: relative; background: var(--paper); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border); display: flex; flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.excursao-card:hover { transform: translateY(-8px) rotate(-0.3deg); box-shadow: var(--shadow-lg); }
.excursao-media { position: relative; height: 190px; background-size: cover; background-position: center; }
.excursao-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.excursao-card:hover .excursao-media img { transform: scale(1.06); }
.excursao-tag {
    position: absolute; top: 12px; left: 12px; background: rgba(14,36,54,0.78); backdrop-filter: blur(4px);
    color: #fff; font-size: 0.86rem; font-weight: 800; padding: 0.4rem 0.9rem; border-radius: 999px;
}
.excursao-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.excursao-body h3 { font-size: 1.05rem; }
.excursao-title-link { color: inherit; text-decoration: none; }
.excursao-title-link:hover { color: var(--terracotta-dark); text-decoration: underline; }
.excursao-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 0.9rem; border-top: 1px dashed var(--border); }
.excursao-preco { font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.excursao-preco span { display: block; font-size: 0.68rem; font-weight: 600; color: var(--muted); }
.excursao-cta {
    display: inline-flex; align-items: center; gap: 0.3rem; background: var(--ink); color: #fff;
    font-weight: 700; font-size: 0.78rem; padding: 0.55rem 0.95rem; border-radius: 999px;
    transition: background 0.15s ease, transform 0.15s ease;
}
.excursao-card:hover .excursao-cta { background: var(--terracotta-dark); }
.excursoes-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin: 2.2rem 0 0; }
.teaser-more { text-align: center; margin-top: 2.4rem; }

.excursao-detalhes-btn {
    align-self: flex-start; background: var(--terracotta); border: none; padding: 0.55rem 1rem; margin-top: -0.1rem;
    color: white; font-weight: 700; font-size: 0.84rem; cursor: pointer; border-radius: 999px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15); transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.excursao-detalhes-btn:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,0.2); }

@media (max-width: 900px) { .excursoes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .excursoes-grid { grid-template-columns: 1fr; } }

/* ---------- Seção destacada de Shows de Tango ---------- */
.tango-section {
    background: linear-gradient(135deg, rgba(14,36,54,0.04), rgba(200,80,60,0.05));
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 2rem 1.8rem 2.2rem; margin-bottom: 3rem;
}
.tango-section-title { text-align: center; font-size: 1.35rem; margin-bottom: 1.6rem; }
.excursoes-grid-tango { grid-template-columns: repeat(3, 1fr); }
.excursao-card-tango { border-color: var(--terracotta-light); }
@media (max-width: 900px) { .excursoes-grid-tango { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .excursoes-grid-tango { grid-template-columns: 1fr; } }

/* ---------- Tabela de opções de preço (bodegas, etc.) ---------- */
.excursao-modal-precos { width: 100%; border-collapse: collapse; margin-bottom: 1.1rem; }
.excursao-modal-precos td { padding: 0.45rem 0.2rem; font-size: 0.85rem; border-bottom: 1px dashed var(--border); }
.excursao-modal-precos td:first-child { color: var(--ink-soft); }
.excursao-modal-precos td:last-child { text-align: right; font-weight: 800; color: var(--ink); white-space: nowrap; padding-left: 0.8rem; }
.excursao-modal-precos tr:last-child td { border-bottom: none; }

/* ---------- Modal de detalhes do passeio ---------- */
.excursao-modal-overlay {
    position: fixed; inset: 0; background: rgba(14,36,54,0.62); backdrop-filter: blur(3px);
    display: flex; align-items: center; justify-content: center; padding: 1.2rem; z-index: 300;
    opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.excursao-modal-overlay.open { opacity: 1; pointer-events: auto; }
.excursao-modal {
    background: var(--paper); border-radius: var(--radius); max-width: 560px; width: 100%;
    max-height: 88vh; overflow-y: auto; position: relative; box-shadow: var(--shadow-lg);
}
.excursao-modal-close {
    position: absolute; top: 0.7rem; right: 0.9rem; background: rgba(14,36,54,0.55); color: #fff;
    border: none; width: 34px; height: 34px; border-radius: 50%; font-size: 1.3rem; line-height: 1;
    cursor: pointer; z-index: 2; display: flex; align-items: center; justify-content: center;
}
.excursao-modal-media { width: 100%; max-height: 320px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.excursao-modal-media img { width: 100%; height: 100%; max-height: 320px; object-fit: cover; display: block; }
.excursao-modal-content { padding: 1.5rem 1.6rem 1.8rem; }
.excursao-modal-tag {
    display: inline-block; background: var(--terracotta-light); color: var(--terracotta-dark);
    font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 999px; margin-bottom: 0.7rem;
}
.excursao-modal-content h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.excursao-modal-duracao { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.8rem; }
.excursao-modal-desc { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 1rem; }
.excursao-modal-inclui { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.8rem; }
.excursao-modal-inc {
    font-size: 0.78rem; font-weight: 600; color: var(--sky-dark); background: var(--sky-light);
    padding: 0.32rem 0.7rem; border-radius: 999px;
}
.excursao-modal-naoinclui { display: flex; flex-direction: column; gap: 0.15rem; margin-bottom: 1.1rem; }
.excursao-modal-naoinclui span { font-size: 0.76rem; color: var(--muted); }
.excursao-modal-footer {
    display: flex; align-items: center; justify-content: space-between; padding-top: 1rem;
    border-top: 1px dashed var(--border);
}
.excursao-modal-preco { font-size: 1.2rem; font-weight: 800; color: var(--ink); }
.excursao-modal-preco span { display: block; font-size: 0.7rem; font-weight: 600; color: var(--muted); }

/* ---------- Why band (split) ---------- */
.why-band { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; background: var(--brown); position: relative; overflow: hidden; }
.why-media { position: relative; overflow: hidden; }
.why-media img { width: 100%; height: 100%; object-fit: cover; }
.why-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(20deg, rgba(14,36,54,0.35) 0%, rgba(14,36,54,0) 45%); }
.why-body { display: flex; flex-direction: column; justify-content: center; padding: 4rem 4.5rem; color: #fff; position: relative; z-index: 1; }
.why-body .eyebrow { background: rgba(232,163,61,0.18); color: var(--gold); }
.why-body h2 { color: #fff; font-size: clamp(1.7rem, 2.6vw, 2.1rem); line-height: 1.25; margin-bottom: 1.7rem; }
.why-list { list-style: none; margin: 0 0 2.2rem; padding: 0; display: flex; flex-direction: column; gap: 1.1rem; }
.why-list li { position: relative; padding-left: 2.3rem; color: #cfe3ee; font-size: 0.98rem; line-height: 1.5; }
.why-list li strong { display: block; color: #fff; font-size: 1rem; margin-bottom: 0.15rem; }
.why-list li::before {
    content: "✓"; position: absolute; left: 0; top: -0.05rem; width: 20px; height: 20px; border-radius: 50%;
    background: var(--terracotta); color: #fff; font-size: 0.66rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.why-list.steps { counter-reset: step; }
.why-list.steps li::before {
    counter-increment: step; content: counter(step); width: 24px; height: 24px; font-size: 0.75rem;
}
.why-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 900px) {
    .why-band { grid-template-columns: 1fr; min-height: 0; }
    .why-media { height: 300px; }
    .why-body { padding: 3rem 1.8rem; }
}

/* ---------- Depoimento ---------- */
.depoimento-wrap { display: flex; flex-direction: column; align-items: center; }
.depoimento {
    max-width: 680px; text-align: center; background: var(--paper); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2.8rem 3rem 2.3rem; box-shadow: var(--shadow-sm); position: relative; z-index: 1;
}
.depoimento-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.12em; margin-bottom: 1.1rem; }
.depoimento p { font-size: 1.12rem; line-height: 1.6; color: var(--ink); margin: 0 0 1.4rem; font-weight: 500; }
.depoimento footer { display: flex; align-items: center; justify-content: center; gap: 0.7rem; }
.depoimento-avatar {
    width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--terracotta), var(--gold));
    color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem;
}
.depoimento-name { color: var(--ink-soft); font-weight: 600; font-size: 0.92rem; }

@media (max-width: 600px) { .depoimento { padding: 2.2rem 1.6rem; } .depoimento p { font-size: 1.02rem; } }

/* ---------- Testimonial grid ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
    background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.testi-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 0.9rem; }
.testi-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; margin: 0 0 1.2rem; flex: 1; }
.testi-person { display: flex; align-items: center; gap: 0.7rem; }
.testi-avatar {
    width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--terracotta), var(--gold));
    color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}
.testi-person strong { font-size: 0.87rem; }

@media (max-width: 900px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- Coverflow gallery ---------- */
.coverflow { touch-action: pan-y; margin-top: 1rem; }

/* ---------- Promoções: seção com identidade própria, diferente do resto do site ---------- */
.section-promos {
    position: relative;
    background: linear-gradient(160deg, var(--brown) 0%, var(--brown-soft) 55%, var(--brown) 100%);
    overflow: hidden;
    isolation: isolate;
}
.section-promos::before {
    content: "";
    position: absolute; inset: 0; z-index: 0;
    background-image:
        radial-gradient(circle at 15% 15%, rgba(47, 168, 79, 0.22), transparent 42%),
        radial-gradient(circle at 85% 75%, rgba(24, 120, 184, 0.28), transparent 46%);
    pointer-events: none;
}
.section-promos .container { position: relative; z-index: 1; }
.section-promos .eyebrow { color: var(--gold-light); }
.section-promos .section-head h2 {
    color: #fff;
    font-size: clamp(2.6rem, 5.8vw, 4.4rem);
    letter-spacing: -0.03em;
    text-shadow: 0 0 50px rgba(47, 168, 79, 0.45), 0 0 100px rgba(24, 120, 184, 0.3);
}
.section-promos .section-head p { color: rgba(255, 255, 255, 0.68); }

.promos-ticker {
    position: relative; z-index: 1;
    overflow: hidden; display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.85rem 0;
    margin-bottom: 3.5rem;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.promos-ticker-track {
    display: flex; flex-shrink: 0; gap: 2.6rem; padding-right: 2.6rem;
    animation: promos-ticker-scroll 22s linear infinite;
}
.promos-ticker span {
    display: inline-flex; align-items: center; gap: 0.55rem; white-space: nowrap;
    color: rgba(255, 255, 255, 0.6); font-weight: 800; font-size: 0.82rem;
    letter-spacing: 0.09em; text-transform: uppercase;
}
.promos-ticker span svg { color: var(--gold); flex-shrink: 0; }
@keyframes promos-ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
    .promos-ticker-track { animation: none; }
}

.promos-frame {
    position: relative; z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    padding: 2.4rem 1.4rem 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
}

/* ---------- Traveler photo gallery ---------- */
.photo-grid { columns: 4 220px; column-gap: 1.1rem; }
.photo-item {
    position: relative; break-inside: avoid; margin-bottom: 1.1rem;
    border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm);
}
.photo-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.photo-item:hover img { transform: scale(1.06); }
.photo-caption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 0.9rem 0.9rem 0.7rem;
    background: linear-gradient(180deg, transparent, rgba(14,36,54,0.85));
    color: #fff; font-size: 0.78rem; font-weight: 600;
    opacity: 0; transform: translateY(6px); transition: opacity 0.2s ease, transform 0.2s ease;
}
.photo-item:hover .photo-caption { opacity: 1; transform: translateY(0); }

@media (max-width: 700px) { .photo-grid { columns: 2 160px; } }

/* ---------- CTA band ---------- */
.cta-band {
    margin: 0 1.5rem; border-radius: 32px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--terracotta-light), var(--gold-light));
    padding: 3.8rem 3rem; text-align: center;
}
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 0.8rem; }
.cta-band h2::after {
    content: ""; display: block; width: 60px; height: 5px; margin: 0.7rem auto 0;
    border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--terracotta));
}
.cta-band p { color: var(--ink-soft); margin: 0 auto 1.8rem; font-size: 1rem; max-width: 480px; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 700px) { .cta-band { margin: 0 1rem; padding: 2.6rem 1.5rem; } }

/* ---------- Contact cards ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.contact-card {
    background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 2rem 1.7rem; box-shadow: var(--shadow-sm); text-align: left;
}
.contact-card h3 { font-size: 1.08rem; margin: 1.1rem 0 0.6rem; }
.contact-card p { margin: 0 0 1.2rem; font-size: 0.89rem; color: var(--ink-soft); line-height: 1.55; }
.contact-card .btn-primary { padding: 0.7rem 1.3rem; font-size: 0.85rem; }
.contact-card-icon {
    width: 46px; height: 46px; border-radius: 13px; background: var(--terracotta-light); color: var(--terracotta-dark);
    display: flex; align-items: center; justify-content: center;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Contato ---------- */
.contato-band { background: var(--cream); }
.contato-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }
.contato-intro h2 { font-size: clamp(1.7rem, 3vw, 2.1rem); margin-bottom: 1rem; }
.contato-intro p { color: var(--ink-soft); line-height: 1.6; margin-bottom: 1.8rem; }

.contato-form-wrap { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-sm); }
.contato-form { display: flex; flex-direction: column; gap: 1.1rem; }
.contato-form label { display: flex; flex-direction: column; gap: 0.45rem; font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); }
.contato-form input, .contato-form select {
    padding: 0.8rem 1rem; border-radius: var(--radius-sm); border: 1.5px solid var(--border);
    font-size: 0.95rem; font-family: inherit; color: var(--ink); background: #fff;
}
.contato-form input:focus, .contato-form select:focus { outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(24, 120, 184, 0.15); }
.contato-submit { margin-top: 0.5rem; width: 100%; justify-content: center; }

.alert-box, .alert-ok-box { border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; font-size: 0.9rem; line-height: 1.5; }
.alert-box { background: #fde3da; color: #9c3b2b; margin-bottom: 1rem; }
.alert-ok-box { background: #fff; text-align: center; padding: 2rem 1.5rem; }
.alert-ok-box h3 { margin-bottom: 0.6rem; }
.alert-ok-box p { color: var(--ink-soft); margin: 0; }

@media (max-width: 900px) { .contato-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--brown); color: #b9cad6; padding: 3.5rem 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.site-footer .brand-logo { color: #fff; margin-bottom: 0.9rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; color: #8fa3b3; max-width: 300px; margin: 0; }
.footer-col h4 { color: #fff; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }
.footer-qr-link { display: inline-block; background: #fff; padding: 0.5rem; border-radius: 10px; }
.footer-qr-img { width: 84px; height: 84px; display: block; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; padding-top: 1.6rem; font-size: 0.8rem; color: #6b7f8f; }
.footer-disclaimer { margin-top: 0.6rem; font-size: 0.72rem; color: #6b7f8f; font-style: italic; }

@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; } }

/* ---------- Floating WhatsApp ---------- */
.float-wa {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40; width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
    transition: transform 0.15s ease;
}
.float-wa:hover { transform: scale(1.06); }

/* ---------- Blog ---------- */
.blog-list { display: flex; flex-direction: column; gap: 3.2rem; max-width: 760px; margin: 0 auto; }
.blog-reels-row {
    display: flex; gap: 1.2rem; overflow-x: auto; padding: 0.2rem 0.2rem 1rem;
    margin: 0 0 3rem; scroll-snap-type: x proximity;
}
.blog-reel-card { flex: 0 0 auto; width: 260px; scroll-snap-align: start; }
.blog-reels-row .video-embed { margin-bottom: 0; }
.blog-reels-row::-webkit-scrollbar { height: 8px; }
.blog-reels-row::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.blog-list-img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius); display: block; margin-bottom: 1.1rem; }
.blog-card-date { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--terracotta-dark); }
.blog-list-body h3 { font-size: 1.4rem; line-height: 1.3; margin: 0.4rem 0 0.5rem; }
.blog-list-body p { font-size: 1rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 0.6rem; }

.video-cover {
    position: absolute; inset: 0; cursor: pointer; display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm); overflow: hidden; transition: opacity 0.4s ease; z-index: 2;
}
.video-cover.hidden { opacity: 0; pointer-events: none; }
.video-cover-fade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.88) 100%); }
.video-cover-text { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem; color: #fff; z-index: 1; }
.video-cover-text h3 { color: #fff; margin: 0 0 0.4rem; font-size: 1.3rem; line-height: 1.3; }
.video-cover-text p { color: rgba(255,255,255,0.88); margin: 0; font-size: 0.92rem; line-height: 1.5; }
.video-cover-play {
    position: relative; z-index: 1; width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.94);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--ink); padding-left: 4px;
    box-shadow: var(--shadow-md);
}

.blog-post-content { max-width: 720px; margin: 0 auto; }
.blog-post-content p { font-size: 1.05rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 1.2rem; }
.blog-post-content .btn-ghost { margin-top: 1rem; }
.blog-post-head-plain { padding-top: 8.5rem; }

.video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius-sm); overflow: hidden; background: #000; margin: 0 0 1.6rem; }
.video-embed iframe, .video-embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed-instagram { aspect-ratio: 9 / 16; max-width: 420px; margin-left: auto; margin-right: auto; }
