:root {
    --teal: #189fdb;
    --teal-dark: #1389c4;
    --teal-darker: #0d6c9e;
    --teal-light: #dcf1fc;
    --coral: #fb7185;
    --coral-dark: #e11d48;
    --sun: #f59e0b;
    --ink: #0f172a;
    --ink-soft: #334155;
    --muted: #64748b;
    --paper: #ffffff;
    --cream: #fbfaf7;
    --border: #eef1f4;
    --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 14px 34px rgba(15, 23, 42, 0.09);
    --shadow-lg: 0 26px 60px rgba(15, 23, 42, 0.16);
    --radius: 22px;
    --radius-sm: 13px;
}

* { 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; }
.script { font-family: 'Caveat', cursive; font-weight: 600; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

.reveal { opacity: 0; transform: translateY(28px); 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; }

/* ---------- Topbar ---------- */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 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(--coral), var(--teal));
    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; }
    .promo-popup-box { max-width: 340px; }
}

@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.75rem 2rem;
}

.brand-logo { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.brand-logo .mark {
    width: 38px; height: 38px; border-radius: 11px;
    background: linear-gradient(135deg, var(--teal), #4dc0f0);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1rem; box-shadow: 0 6px 14px rgba(24, 159, 219, 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, 159, 219, 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(--coral); 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%; background: var(--teal); }

/* 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, .topbar.scrolled nav a.current { color: var(--ink-soft); }
.topbar.scrolled nav a.current { color: var(--ink); }
.topbar.scrolled .nav-toggle { color: var(--ink); }

.btn-wa {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--teal); color: white; font-weight: 700; font-size: 0.88rem;
    padding: 0.68rem 1.35rem; border-radius: 999px; box-shadow: 0 10px 20px rgba(24, 159, 219, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-wa:hover { transform: translateY(-2px); background: var(--teal-dark); box-shadow: 0 14px 26px rgba(24, 159, 219, 0.35); }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 7rem 0 6rem;
    background: radial-gradient(circle at 12% 18%, #f0fdfa 0%, transparent 45%),
                radial-gradient(circle at 88% 12%, #fff1f2 0%, transparent 40%),
                radial-gradient(circle at 75% 85%, #fffbeb 0%, transparent 45%),
                var(--paper);
    overflow: hidden;
}

.hero-blob {
    position: absolute; border-radius: 50%; filter: blur(10px);
    opacity: 0.55; animation: float 9s ease-in-out infinite;
}
.hero-blob.b1 { width: 340px; height: 340px; top: -80px; right: 8%; background: radial-gradient(circle, var(--teal-light), transparent 70%); }
.hero-blob.b2 { width: 260px; height: 260px; bottom: -60px; left: 4%; background: radial-gradient(circle, #ffe4e6, transparent 70%); animation-delay: -3s; }
.hero-blob.b3 { width: 180px; height: 180px; top: 40%; right: 22%; background: radial-gradient(circle, #fef3c7, transparent 70%); animation-delay: -6s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-24px) scale(1.05); }
}

/* ---------- Decorative section washes ---------- */
.section-blobby { position: relative; overflow: hidden; }
.section-blobby > .container { position: relative; z-index: 1; }

.bg-blob {
    position: absolute; border-radius: 50%; filter: blur(90px);
    opacity: 0.16; pointer-events: none; z-index: 0;
    animation: drift 26s ease-in-out infinite;
}
.bg-blob.teal { background: radial-gradient(circle, var(--teal) 0%, transparent 72%); }
.bg-blob.coral { background: radial-gradient(circle, var(--coral) 0%, transparent 72%); }

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(14px, -10px); }
}

@media (max-width: 700px) {
    .bg-blob { opacity: 0.12; filter: blur(60px); }
}

.hero-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--teal-light); color: var(--teal-darker);
    font-weight: 700; font-size: 0.8rem; padding: 0.45rem 1rem; border-radius: 999px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 4.6vw, 3.7rem);
    line-height: 1.05;
    margin-bottom: 1.4rem;
}
.hero h1 .accent { color: var(--teal); position: relative; }
.hero h1 .script { color: var(--coral); font-size: 1.15em; display: inline-block; transform: rotate(-3deg); }

.hero p.lead {
    font-size: 1.12rem; color: var(--ink-soft); line-height: 1.65;
    max-width: 480px; margin-bottom: 2.1rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 0.55rem;
    background: var(--ink); color: white; font-weight: 700; font-size: 0.95rem;
    padding: 0.95rem 1.7rem; border-radius: 999px; border: none; cursor: pointer;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(15, 23, 42, 0.28); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 0.55rem;
    background: transparent; color: var(--ink); font-weight: 700; font-size: 0.95rem;
    padding: 0.95rem 1.6rem; border-radius: 999px; border: 1.5px solid #e2e8f0;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.btn-ghost:hover { border-color: var(--ink); background: #f8fafc; }

.hero-stats { display: flex; gap: 2.2rem; }
.hero-stats div strong { display: block; font-size: 1.7rem; font-weight: 800; color: var(--ink); }
.hero-stats div span { font-size: 0.8rem; color: var(--muted); font-weight: 600; }

.hero-visual { position: relative; }
.hero-blob-solid {
    position: absolute; z-index: 0; top: -6%; right: -14%;
    width: 118%; height: 112%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-darker) 100%);
    border-radius: 42% 58% 65% 35% / 45% 55% 45% 55%;
    animation: blobmorph 14s ease-in-out infinite;
}
@keyframes blobmorph {
    0%, 100% { border-radius: 42% 58% 65% 35% / 45% 55% 45% 55%; }
    50% { border-radius: 58% 42% 35% 65% / 55% 45% 55% 45%; }
}
.hero-photo-stack { position: relative; height: 480px; z-index: 1; }
.hero-photo {
    position: absolute; border-radius: 26px; object-fit: cover;
    box-shadow: var(--shadow-lg); border: 6px solid var(--paper);
}
.hero-photo.p1 { width: 78%; height: 74%; top: 0; right: 0; z-index: 2; }
.hero-photo.p2 { width: 56%; height: 46%; bottom: 0; left: 0; z-index: 3; animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero-badge {
    position: absolute; z-index: 4; bottom: 12%; right: -6%;
    background: var(--paper); border-radius: 18px; box-shadow: var(--shadow-md);
    padding: 0.9rem 1.15rem; display: flex; align-items: center; gap: 0.7rem;
    animation: floaty 5s ease-in-out infinite; animation-delay: -2s;
}
.hero-badge .dot { width: 38px; height: 38px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; color: var(--teal-darker); font-weight: 800; }
.hero-badge strong { display: block; font-size: 0.85rem; }
.hero-badge span { font-size: 0.72rem; color: var(--muted); }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
    padding: 8.5rem 0 3.5rem; text-align: center;
    background: radial-gradient(circle at 15% 20%, #f0fdfa 0%, transparent 45%),
                radial-gradient(circle at 85% 15%, #fff1f2 0%, transparent 40%),
                var(--paper);
}
.page-hero .hero-eyebrow { display: inline-flex; }
.page-hero h1 { font-size: clamp(2.1rem, 3.8vw, 3rem); margin: 1.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(--coral), var(--teal));
}
.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 .hero-eyebrow { background: rgba(255, 255, 255, 0.15); color: #fff; }

/* ---------- Teaser cards (home) ---------- */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.teaser-card {
    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;
}
.teaser-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.teaser-card h3 { font-size: 1.02rem; margin: 1rem 0 0.4rem; }
.teaser-card p { margin: 0; font-size: 0.87rem; color: var(--muted); line-height: 1.5; }
.teaser-more { text-align: center; margin-top: 2.4rem; }

/* ---------- Account creation form ---------- */
.account-form-wrap { max-width: 480px; margin: 0 auto; }
.account-form { display: flex; flex-direction: column; gap: 1.2rem; }
.account-form label {
    display: block; font-size: 0.85rem; font-weight: 700; color: var(--ink-soft);
}
.account-form input, .account-form select {
    display: block; width: 100%; margin-top: 0.4rem; padding: 0.75rem 0.9rem;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    font-size: 0.95rem; font-family: inherit; color: var(--ink);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.account-form input:focus, .account-form select:focus {
    outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(24, 159, 219, 0.15);
}
.account-form-phone { display: grid; grid-template-columns: 1fr 1.4fr; gap: 0.9rem; }
.account-form-submit { width: 100%; justify-content: center; margin-top: 0.4rem; padding: 0.9rem; }

.alert-box {
    background: #fee2e2; color: #991b1b; border: 1px solid #fecaca;
    padding: 0.85rem 1.1rem; border-radius: var(--radius-sm); font-size: 0.88rem; margin-bottom: 1.4rem;
}
.alert-ok-box { text-align: center; padding: 2rem 1rem; }
.alert-ok-box h2 { margin-bottom: 0.8rem; }
.alert-ok-box p { color: var(--muted); margin-bottom: 1.6rem; line-height: 1.6; }

@media (max-width: 560px) {
    .account-form-phone { grid-template-columns: 1fr; }
}

/* ---------- Legal document ---------- */
.legal-doc { max-width: 740px; margin: 0 auto; color: var(--ink-soft); font-size: 0.96rem; line-height: 1.75; }
.legal-updated { color: var(--muted); font-size: 0.84rem; font-weight: 600; margin-bottom: 2rem; }
.legal-doc h2 { color: var(--ink); font-size: 1.15rem; margin: 2.2rem 0 0.8rem; }
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc p { margin: 0 0 1.1rem; }
.legal-doc ul { margin: 0 0 1.1rem; padding-left: 1.3rem; }
.legal-doc li { margin-bottom: 0.5rem; }
.legal-doc a { color: var(--teal-dark); font-weight: 600; }

/* ---------- 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(--muted); line-height: 1.55; }
.contact-card .btn-primary { padding: 0.7rem 1.3rem; font-size: 0.85rem; }

.dest-desc { font-size: 0.76rem; opacity: 0.85; margin: 0.3rem 0 0; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- Full-bleed diagonal service sections ---------- */
.services-full-wrap { display: flex; flex-direction: column; }

.service-full {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 78vh;
    overflow: hidden;
}
.services-full-wrap > .service-full:nth-child(6n+1) { background: #f0fdfa; --tint: #189fdb; }
.services-full-wrap > .service-full:nth-child(6n+2) { background: #fff1f2; --tint: #e11d48; }
.services-full-wrap > .service-full:nth-child(6n+3) { background: #fffbeb; --tint: #d97706; }
.services-full-wrap > .service-full:nth-child(6n+4) { background: #eef2ff; --tint: #4338ca; }
.services-full-wrap > .service-full:nth-child(6n+5) { background: #ecfeff; --tint: #0e7490; }
.services-full-wrap > .service-full:nth-child(6n+6) { background: #fdf2f8; --tint: #be185d; }

.service-full-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(15, 23, 42, 0.35);
}
.service-full.reverse .service-full-media {
    left: auto; right: 0;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: -30px 0 60px -20px rgba(15, 23, 42, 0.35);
}

.service-full-content {
    position: relative; z-index: 2;
    width: 42%; margin-left: auto;
    padding: 3rem 6vw 3rem 2.5rem;
    overflow: hidden;
}
.service-full.reverse .service-full-content {
    margin-left: 0; margin-right: auto;
    padding: 3rem 2.5rem 3rem 6vw;
}

.service-full-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.08; pointer-events: none; user-select: none;
}
.service-full.reverse .service-full-bignum { right: auto; left: 1.5rem; }

.service-full-eyebrow { position: relative; z-index: 1; display: block; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--tint); margin-bottom: 0.9rem; }

.service-full-content h2 { position: relative; z-index: 1; font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 1rem; }
.service-full-rule { position: relative; z-index: 1; display: block; width: 54px; height: 4px; border-radius: 999px; margin-bottom: 1.3rem; background: var(--tint); }
.service-full-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) {
    .service-full { flex-direction: column; min-height: auto; padding-bottom: 2.8rem; align-items: stretch; }
    .service-full-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;
    }
    .service-full-content, .service-full.reverse .service-full-content {
        width: 100%; margin: 0; padding: 2.2rem 1.5rem 0;
    }
}

.section { padding: 6.5rem 0; }
.section.tint { background: var(--cream); }
.section-head { max-width: 640px; margin: 0 auto 3.2rem; text-align: center; }
.section-eyebrow {
    display: block; font-family: 'Caveat', cursive; font-weight: 600;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem); color: var(--coral);
    text-transform: none; letter-spacing: 0; margin-bottom: -0.3rem;
}
.section-head h2 {
    font-size: clamp(2.1rem, 4vw, 3.1rem); margin-bottom: 0.9rem;
}
.section-head h2::after {
    content: ""; display: block; width: 60px; height: 5px; margin: 0.7rem auto 0;
    border-radius: 999px; background: linear-gradient(90deg, var(--coral), var(--teal));
}
.section-promos .section-head h2::after { background: linear-gradient(90deg, var(--sun), var(--coral)); }
.section-head p { color: var(--muted); font-size: 1.02rem; line-height: 1.6; }

/* ---------- Features / Services ---------- */
.features-grid, .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.7rem; }

.feature-card, .service-card {
    background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.9rem 1.6rem; box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover, .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.service-card {
    position: relative; overflow: hidden;
    padding: 2.1rem 1.7rem 1.8rem;
    --tint: var(--teal); --tint-2: #4dc0f0;
}
.service-card::before {
    content: ''; position: absolute; top: -55%; right: -35%; width: 240px; height: 240px; border-radius: 50%;
    background: radial-gradient(circle, var(--tint) 0%, transparent 68%);
    opacity: 0.14; transition: opacity 0.3s ease, transform 0.3s ease; pointer-events: none;
}
.service-card:hover::before { opacity: 0.26; transform: scale(1.12); }
.service-card:hover { border-color: color-mix(in srgb, var(--tint) 45%, var(--border)); }
.service-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--tint), var(--tint-2));
}

.service-num {
    position: absolute; top: 0.75rem; right: 1.1rem; z-index: 0;
    font-size: 2.6rem; font-weight: 800; color: var(--cream);
    -webkit-text-stroke: 1px var(--border); line-height: 1;
}

.service-card > *:not(.service-num) { position: relative; z-index: 1; }

.feature-icon {
    width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.15rem; color: white;
    box-shadow: 0 10px 20px -6px color-mix(in srgb, var(--tint) 70%, transparent);
    transition: transform 0.3s ease;
}
.service-card:hover .feature-icon { transform: rotate(-6deg) scale(1.06); }

.feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg, var(--teal), #4dc0f0); }
.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, var(--coral), var(--coral-dark)); }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, var(--sun), #d97706); }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, #6366f1, #4338ca); }

.service-card:nth-child(6n+1) { --tint: #189fdb; --tint-2: #4dc0f0; }
.service-card:nth-child(6n+2) { --tint: #fb7185; --tint-2: #e11d48; }
.service-card:nth-child(6n+3) { --tint: #f59e0b; --tint-2: #d97706; }
.service-card:nth-child(6n+4) { --tint: #6366f1; --tint-2: #4338ca; }
.service-card:nth-child(6n+5) { --tint: #0891b2; --tint-2: #0e7490; }
.service-card:nth-child(6n+6) { --tint: #ec4899; --tint-2: #be185d; }
.service-card:nth-child(6n+1) .feature-icon { background: linear-gradient(135deg, var(--tint), var(--tint-2)); }
.service-card:nth-child(6n+2) .feature-icon { background: linear-gradient(135deg, var(--tint), var(--tint-2)); }
.service-card:nth-child(6n+3) .feature-icon { background: linear-gradient(135deg, var(--tint), var(--tint-2)); }
.service-card:nth-child(6n+4) .feature-icon { background: linear-gradient(135deg, var(--tint), var(--tint-2)); }
.service-card:nth-child(6n+5) .feature-icon { background: linear-gradient(135deg, var(--tint), var(--tint-2)); }
.service-card:nth-child(6n+6) .feature-icon { background: linear-gradient(135deg, var(--tint), var(--tint-2)); }

.feature-card h3, .service-card h3 { font-size: 1.08rem; margin-bottom: 0.55rem; }
.feature-card p { margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

.service-desc {
    margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.6;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.service-card.open .service-desc { -webkit-line-clamp: unset; }
.service-toggle {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 0.9rem; background: color-mix(in srgb, var(--tint) 12%, transparent);
    border: none; border-radius: 999px; padding: 0.4rem 0.85rem 0.4rem 0.95rem; cursor: pointer;
    color: var(--tint-2); font-weight: 700; font-size: 0.8rem; font-family: inherit;
    transition: background 0.2s ease;
}
.service-toggle:hover { background: color-mix(in srgb, var(--tint) 20%, transparent); }
.service-toggle svg { transition: transform 0.2s ease; }
.service-card.open .service-toggle svg { transform: rotate(180deg); }

/* ---------- Package cards ---------- */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.7rem; }
.packages-grid.has-featured { grid-template-columns: repeat(3, 1fr); }

.pkg-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;
}
.pkg-card:hover { transform: translateY(-8px) rotate(-0.3deg); box-shadow: var(--shadow-lg); }

.pkg-card.featured { grid-column: span 1; border: 2px solid var(--teal); }

.pkg-media { position: relative; height: 210px; background: linear-gradient(135deg, #e2e8f0, #cbd5e1); background-size: cover; background-position: center; }
.pkg-tag {
    position: absolute; top: 14px; left: 14px;
    background: rgba(15, 23, 42, 0.78); backdrop-filter: blur(4px); color: white;
    font-size: 0.86rem; font-weight: 800; padding: 0.4rem 0.95rem; border-radius: 999px;
    letter-spacing: 0.01em;
}
.pkg-star {
    position: absolute; top: 14px; right: 14px;
    background: var(--coral); color: white; font-size: 0.7rem; font-weight: 800;
    padding: 0.35rem 0.75rem; border-radius: 999px; display: flex; align-items: center; gap: 0.3rem;
    box-shadow: 0 8px 16px rgba(225, 29, 72, 0.35);
}

.pkg-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.pkg-dest { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal-dark); }
.pkg-body h3 { font-size: 1.2rem; }
.pkg-title-link { color: inherit; text-decoration: none; }
.pkg-title-link:hover { color: var(--teal-dark); text-decoration: underline; }
.pkg-summary { font-size: 0.87rem; color: var(--muted); line-height: 1.5; margin: 0; flex: 1; }

.pkg-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--muted); font-weight: 600; }

.pkg-footer { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 0.4rem; padding-top: 1rem; border-top: 1px dashed var(--border); }
.pkg-price .old { display: block; font-size: 0.78rem; color: var(--muted); text-decoration: line-through; }
.pkg-price .now { font-size: 1.35rem; font-weight: 800; color: var(--ink); }
.pkg-price .now span { font-size: 0.7rem; font-weight: 600; color: var(--muted); }
.pkg-cta {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--ink); color: white; font-weight: 700; font-size: 0.82rem;
    padding: 0.62rem 1.05rem; border-radius: 999px;
    transition: background 0.15s ease, transform 0.15s ease;
}
.pkg-cta:hover { background: var(--teal-dark); transform: translateY(-2px); }

.pkg-empty {
    grid-column: 1 / -1; text-align: center; padding: 3rem 1.5rem;
    background: var(--paper); border: 1.5px dashed var(--border); border-radius: var(--radius);
    color: var(--muted);
}

.pkg-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.4rem; }
.pkg-filter {
    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;
}
.pkg-filter:hover { border-color: var(--teal); transform: translateY(-1px); }
.pkg-filter.active { background: var(--ink); border-color: var(--ink); color: white; }

.pkg-subfilters { display: none; justify-content: center; margin: -1.4rem 0 2.4rem; }
.pkg-subfilter-group { display: none; flex-wrap: wrap; gap: 0.5rem; justify-content: center; max-width: 900px; }
.pkg-subfilter {
    background: transparent; border: 1px solid var(--border); color: var(--ink-soft);
    font-weight: 600; font-size: 0.78rem; padding: 0.4rem 0.9rem; border-radius: 999px; cursor: pointer;
}
.pkg-subfilter:hover { border-color: var(--teal); }
.pkg-subfilter.active { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ---------- Destinations ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.dest-card {
    position: relative; border-radius: var(--radius-sm); overflow: hidden; height: 240px;
    box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}
.dest-card:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dest-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.4s ease; }
.dest-card:hover .dest-img { transform: scale(1.08); }
.dest-fade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,0) 35%, rgba(15,23,42,0.82) 100%); }
.dest-info { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.1rem 1.1rem 1rem; color: white; }
.dest-cat { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.85; }
.dest-info h3 { font-size: 1.3rem; font-weight: 800; margin-top: 0.25rem; text-shadow: 0 2px 8px rgba(0,0,0,0.35); }
.dest-pkg-link {
    display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.6rem;
    font-size: 0.8rem; font-weight: 800; color: white; opacity: 0.95;
    background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.5);
    padding: 0.35rem 0.75rem; border-radius: 999px; backdrop-filter: blur(2px);
    transform: translateY(0); transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.dest-card:hover .dest-pkg-link { opacity: 1; background: rgba(255,255,255,0.3); transform: translateY(-2px); }

/* ---------- Stats band ---------- */
.stats-band {
    background: linear-gradient(120deg, var(--teal-darker), var(--teal-dark) 55%, #0891b2);
    color: white; padding: 3.6rem 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-wrap { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stats-grid-wrap strong { display: block; font-size: 2.3rem; font-weight: 800; }
.stats-grid-wrap span { font-size: 0.85rem; opacity: 0.85; font-weight: 600; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.testi-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.testi-stars { color: var(--sun); font-size: 0.9rem; margin-bottom: 0.9rem; letter-spacing: 0.1em; }
.testi-card p.quote { font-size: 0.94rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 1.2rem; }
.testi-person { display: flex; align-items: center; gap: 0.7rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: white; font-size: 0.9rem; flex-shrink: 0; }
.testi-avatar-img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testi-person strong { display: block; font-size: 0.87rem; }
.testi-person span { font-size: 0.76rem; color: var(--muted); }

/* ---------- Google rating 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.6rem; box-shadow: var(--shadow-sm);
    font-size: 0.88rem; color: var(--ink-soft);
}
.google-badge strong { color: var(--ink); font-size: 1rem; }
.google-stars { color: var(--sun); letter-spacing: 0.05em; }
.google-badge-link { cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.google-badge-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.google-reviews-cta { text-align: center; margin-top: 2.2rem; }

/* ---------- Coverflow gallery ---------- */
.coverflow { touch-action: pan-y; margin-top: 1rem; }

/* ---------- Promos: sección con identidad propia, distinta al resto del sitio ---------- */
.section-promos {
    position: relative;
    background: linear-gradient(160deg, var(--ink) 0%, #1c2b4d 55%, var(--ink) 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(251, 113, 133, 0.22), transparent 42%),
        radial-gradient(circle at 85% 75%, rgba(24, 159, 219, 0.25), transparent 46%);
    pointer-events: none;
}
.section-promos .container { position: relative; z-index: 1; }
.section-promos .section-eyebrow { color: var(--sun); }
.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(245, 158, 11, 0.45), 0 0 100px rgba(251, 113, 133, 0.25);
}
.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.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    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.55); font-weight: 800; font-size: 0.82rem;
    letter-spacing: 0.09em; text-transform: uppercase;
}
.promos-ticker span svg { color: var(--sun); 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.14);
    border-radius: 28px;
    padding: 2.4rem 1.4rem 1.8rem;
    background: rgba(255, 255, 255, 0.04);
    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(15,23,42,0.85));
    color: white; 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;
    background: linear-gradient(135deg, #fff7ed, #fff1f2);
    padding: 3.6rem 3rem; text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); 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(--coral), var(--teal));
}
.cta-band p { color: var(--muted); margin-bottom: 1.8rem; font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: #cbd5e1; padding: 4rem 0 2rem; margin-top: 5rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand .brand-logo { color: white; margin-bottom: 0.9rem; }
.footer-grid p { font-size: 0.88rem; line-height: 1.6; color: #94a3b8; max-width: 280px; }
.footer-col h4 { color: white; font-size: 0.85rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a, .footer-col span { display: block; font-size: 0.87rem; color: #94a3b8; margin-bottom: 0.65rem; }
.footer-col a:hover { color: white; }
.footer-qr-link { display: inline-block; background: #fff; padding: 0.5rem; border-radius: var(--radius-sm); margin-bottom: 0.7rem; }
.footer-qr-img { width: 84px; height: 84px; display: block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.6rem; display: flex; justify-content: space-between; font-size: 0.8rem; color: #64748b; flex-wrap: wrap; gap: 0.5rem; }
.footer-disclaimer { margin-top: 0.6rem; font-size: 0.72rem; color: #475569; font-style: italic; }

/* ---------- Floating WhatsApp ---------- */
.float-wa {
    position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 200;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25d366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.45);
    animation: pulse-wa 2.6s ease-in-out infinite;
}
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 12px 26px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 12px 26px rgba(37, 211, 102, 0.45), 0 0 0 10px rgba(37, 211, 102, 0.15); }
}

/* ---------- Preview banner ---------- */
.preview-banner {
    background: var(--ink); color: white; text-align: center; font-size: 0.8rem; font-weight: 600;
    padding: 0.55rem 1rem; letter-spacing: 0.02em;
}
.preview-banner strong { color: #fbbf24; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { margin-top: 2.5rem; }
    .hero-photo-stack { height: 320px; }
    .hero-blob-solid { width: 100%; height: 98%; top: 1%; right: 1%; }
    .hero-badge { padding: 0.6rem 0.8rem; gap: 0.5rem; bottom: 8%; right: 3%; }
    .hero-badge .dot { width: 30px; height: 30px; font-size: 0.8rem; }
    .hero-badge strong { font-size: 0.76rem; }
    .hero-badge span { font-size: 0.64rem; }
    .features-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid-wrap { grid-template-columns: repeat(2, 1fr); row-gap: 1.8rem; }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .teaser-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .topbar nav { display: none; }
    .nav-toggle { display: block; background: none; border: none; color: var(--ink); cursor: pointer; }
    /* El menú desplegable siempre tiene fondo blanco (ver script.js), así que el texto
       siempre va oscuro acá, sin importar si el header está sobre un hero oscuro o no. */
    .topbar nav a, .topbar-dark-hero nav a, .topbar.scrolled nav a,
    .topbar nav a.current, .topbar-dark-hero nav a.current, .topbar.scrolled nav a.current {
        color: var(--ink);
    }
    .hero { padding-top: 6.5rem; }
    .hero-stats { flex-wrap: wrap; gap: 1.4rem; }
    .hero-photo-stack { height: 280px; }
    .hero-blob-solid { width: 94%; height: 92%; top: 2%; right: 2%; }
    .features-grid, .services-grid, .packages-grid, .dest-grid { grid-template-columns: 1fr; }
    .stats-grid-wrap { grid-template-columns: 1fr 1fr; }
    .cta-band { margin: 0 1rem; padding: 2.6rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .teaser-grid, .contact-grid { grid-template-columns: 1fr; }
    .page-hero { padding-top: 7rem; }
}

/* ---------- 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(--teal-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; }

/* ---------- Brasil en Bus (paquetes + modal de detalle) ---------- */
.brasil-badge-teal, .brasil-precios-teal thead { --brasil-c: var(--teal); --brasil-c-dark: var(--teal-dark); --brasil-c-light: var(--teal-light); }

.brasil-hotel-link { display: inline-block; font-size: 0.82rem; font-weight: 600; color: var(--brasil-c, var(--teal)); margin: 0.3rem 0 0.6rem; }

.brasil-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.brasil-badge {
    font-size: 0.76rem; font-weight: 600; padding: 0.32rem 0.7rem; border-radius: 999px;
    background: var(--brasil-c-light, #f1f5f9); color: var(--brasil-c-dark, var(--ink-soft));
}

.brasil-nota { font-size: 0.8rem; color: var(--muted); font-style: italic; margin-bottom: 1rem; }

.brasil-precios-scroll { margin-top: 0.4rem; }
.brasil-precios-table { width: 100%; min-width: 420px; border-collapse: collapse; font-size: 0.86rem; }
.brasil-precios-table th {
    background: var(--brasil-c, var(--teal)); color: #fff; text-align: left; font-weight: 700;
    padding: 0.6rem 0.8rem; white-space: nowrap;
}
.brasil-precios-table td { padding: 0.55rem 0.8rem; border-bottom: 1px solid var(--border-soft, #eef2f6); white-space: nowrap; }
.brasil-precios-table tbody tr:nth-child(even) { background: #f8fafc; }
.brasil-precios-table tr.brasil-fila-destacada { background: var(--brasil-c-light, #ecfdf5) !important; font-weight: 700; }
.brasil-fechas-nota { font-size: 0.78rem; color: var(--muted); margin: 0.5rem 0 1.1rem; }

.pkg-fechas-label { font-size: 0.8rem; font-weight: 700; color: var(--ink-soft); margin: 0 0 0.5rem; }

.pkg-fecha-accordion { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 0.85rem 1rem; margin-bottom: 1rem; overflow: hidden; }
.pkg-fecha-seleccionada { font-weight: 800; font-size: 0.98rem; color: var(--ink); margin: 0 0 0.6rem; }
.pkg-fecha-toggle {
    display: inline-flex; align-items: center;
    background: transparent; border: 1.5px solid var(--brasil-c, var(--teal)); color: var(--brasil-c, var(--teal));
    border-radius: 999px; padding: 0.45rem 1rem; cursor: pointer; font-family: inherit;
    font-weight: 700; font-size: 0.8rem; transition: background 0.15s ease, color 0.15s ease;
}
.pkg-fecha-toggle:hover { background: var(--brasil-c, var(--teal)); color: #fff; }

.pkg-fecha-options {
    max-height: 0; overflow-y: auto; transition: max-height 0.25s ease;
    border-top: 0px solid var(--border);
}
.pkg-fecha-accordion.open .pkg-fecha-options { max-height: 220px; border-top-width: 1px; margin-top: 0.85rem; }
.pkg-fecha-option {
    display: block; width: 100%; text-align: left; background: var(--paper); border: none;
    border-bottom: 1px solid var(--border-soft, #eef2f6); padding: 0.65rem 1rem; cursor: pointer;
    font-family: inherit; font-size: 0.86rem; color: var(--ink-soft); transition: background 0.15s ease;
}
.pkg-fecha-option:last-child { border-bottom: none; }
.pkg-fecha-option:hover { background: #f8fafc; }
.pkg-fecha-option.active { background: var(--brasil-c-light, var(--teal-light)); color: var(--brasil-c-dark, var(--teal-darker)); font-weight: 700; }

.pkg-precios-lista { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1rem; }
.pkg-precio-fila {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.7rem 1rem; border-bottom: 1px solid var(--border-soft, #eef2f6);
}
.pkg-precio-fila:last-child { border-bottom: none; }
.pkg-precio-fila:nth-child(even) { background: #f8fafc; }
.pkg-precio-label { font-weight: 600; color: var(--ink-soft); font-size: 0.9rem; }
.pkg-precio-valor { font-weight: 800; color: var(--ink); font-size: 0.98rem; }

.pkg-detail-btn {
    display: inline-flex; align-items: center; gap: 0.35rem;
    background: var(--teal-dark); border: none; padding: 0.55rem 1rem; margin: 0 0 0.9rem;
    color: white; font-weight: 700; font-size: 0.84rem; cursor: pointer; text-align: left;
    border-radius: 999px; box-shadow: 0 6px 14px rgba(13, 148, 136, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.pkg-detail-btn:hover { background: var(--teal-darker, #0f766e); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(13, 148, 136, 0.35); }

.pkg-detail-actions { display: flex; align-items: center; gap: 0.6rem; margin: 0 0 0.9rem; }
.pkg-detail-actions .pkg-detail-btn { margin: 0; }
.pkg-detail-wa {
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 34px; height: 34px; border-radius: 50%; background: #25d366; color: white;
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.35); transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pkg-detail-wa:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 18px rgba(37, 211, 102, 0.45); }

.pkg-modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 300; background: rgba(15,23,42,0.55);
    align-items: center; justify-content: center; padding: 1.2rem;
}
.pkg-modal-overlay.open { display: flex; }
.pkg-modal {
    position: relative; background: var(--paper); border-radius: var(--radius); max-width: 640px; width: 100%;
    max-height: 86vh; overflow-y: auto; padding: 2rem 1.8rem 1.8rem; box-shadow: var(--shadow-lg);
}
.pkg-modal h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.pkg-modal-media { display: grid; grid-template-columns: 1fr; gap: 0.5rem; margin: 0.8rem 0; }
.pkg-modal-media.two { grid-template-columns: 1fr 1fr; }
.pkg-modal-media img {
    width: 100%; max-height: 340px; object-fit: contain; background: #0f172a;
    border-radius: var(--radius-sm); display: block;
}
@media (max-width: 700px) {
    .pkg-modal-media.two { grid-template-columns: 1fr; }
    .pkg-modal-media img { max-height: 240px; }
}
.pkg-modal-region {
    display: inline-block; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--teal-dark); margin-bottom: 0.4rem;
}
.pkg-modal p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; margin: 0.4rem 0 1rem; }
.pkg-modal p.footer-disclaimer { font-size: 0.72rem; color: #94a3b8; font-style: italic; margin: 0.3rem 0 1rem; }
.pkg-modal-wa { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem; }
.pkg-modal-close {
    position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px; border-radius: 50%; border: none;
    background: #f1f5f9; color: var(--ink); font-size: 1.2rem; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.pkg-modal-close:hover { background: #e2e8f0; }

@media (max-width: 700px) {
    .pkg-modal { padding: 1.6rem 1.2rem 1.4rem; }
}
