*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--dark:    #0a1628;
--dark2:   #0f2040;
--teal:    #0693e3;
--teal2:   #00c6d7;
--gold:    #f5a623;
--gold2:   #e8951a;
--white:   #ffffff;
--offwhite:#f0f4f8;
--grey:    #94a3b8;
--border:  rgba(255,255,255,.1);
--card-bg: rgba(255,255,255,.05);
}
html { scroll-behavior: smooth; }
body {
font-family: 'Inter', sans-serif;
background: var(--dark);
color: var(--white);
font-size: 16px;
line-height: 1.6;
}
/* ── STICKY NAV ── */
.nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 200;
background: rgba(10,22,40,.95);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
height: 64px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 40px;
transition: background .3s;
}
.nav-logo {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
font-size: 13px;
font-weight: 600;
color: var(--white);
letter-spacing: .3px;
}
.nav-logo-sub { font-size: 10px; font-weight: 400; color: var(--grey); display: block; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-link { color: var(--grey); text-decoration: none; font-size: 13px; font-weight: 500; transition: color .2s; }
.nav-link:hover { color: var(--white); }
.nav-cta {
background: #25d366;
color: var(--white);
text-decoration: none;
font-size: 13px;
font-weight: 700;
padding: 9px 18px;
border-radius: 6px;
display: flex;
align-items: center;
gap: 7px;
transition: background .2s, transform .15s;
}
.nav-cta:hover { background: #1db954; transform: translateY(-1px); }
/* ── HERO ── */
.hero {
min-height: 100vh;
background:
  linear-gradient(180deg, rgba(10,22,40,.6) 0%, rgba(10,22,40,.8) 60%, var(--dark) 100%),
  url('../img/Cenote-1.jpg') center center / cover no-repeat;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 100px 24px 80px;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
inset: 0;
background:
  radial-gradient(ellipse 80% 50% at 50% 0%, rgba(6,147,227,.15) 0%, transparent 70%),
  radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0,198,215,.08) 0%, transparent 60%);
pointer-events: none;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(245,166,35,.15);
border: 1px solid rgba(245,166,35,.4);
color: var(--gold);
font-size: 12px;
font-weight: 700;
letter-spacing: 1.2px;
text-transform: uppercase;
padding: 6px 16px;
border-radius: 100px;
margin-bottom: 28px;
}
.hero h1 {
font-size: clamp(36px, 6vw, 68px);
font-weight: 900;
line-height: 1.08;
letter-spacing: -1.5px;
margin-bottom: 20px;
max-width: 900px;
}
.hero h1 em { font-style: normal; color: var(--teal2); }
.hero-sub {
font-size: clamp(17px, 2.5vw, 22px);
font-weight: 400;
color: rgba(255,255,255,.75);
max-width: 620px;
margin-bottom: 12px;
line-height: 1.5;
}
.hero-tagline {
font-size: 15px;
font-weight: 600;
color: var(--teal2);
font-style: italic;
margin-bottom: 36px;
opacity: .85;
}
.hero-price {
background: rgba(255,255,255,.06);
border: 1px solid rgba(255,255,255,.12);
border-radius: 10px;
padding: 16px 28px;
display: inline-flex;
align-items: center;
gap: 20px;
margin-bottom: 36px;
flex-wrap: wrap;
justify-content: center;
}
.hero-price-item { text-align: center; }
.hero-price-item .val { font-size: 26px; font-weight: 800; color: var(--white); line-height: 1; }
.hero-price-item .val small { font-size: 13px; font-weight: 500; color: var(--grey); }
.hero-price-item .lbl { font-size: 11px; color: var(--grey); text-transform: uppercase; letter-spacing: .8px; margin-top: 4px; }
.price-divider { width: 1px; height: 40px; background: var(--border); }
.hero-checks {
list-style: none;
display: flex;
flex-wrap: wrap;
gap: 10px 20px;
justify-content: center;
margin-bottom: 40px;
max-width: 640px;
}
.hero-checks li {
font-size: 14px;
color: rgba(255,255,255,.8);
display: flex;
align-items: center;
gap: 7px;
}
.hero-checks li::before { content: '✓'; color: #4ade80; font-weight: 800; font-size: 15px; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.btn-primary {
background: linear-gradient(135deg, var(--teal), var(--teal2));
color: var(--white);
text-decoration: none;
font-size: 16px;
font-weight: 700;
padding: 16px 32px;
border-radius: 8px;
display: inline-flex;
align-items: center;
gap: 10px;
transition: transform .2s, box-shadow .2s;
box-shadow: 0 4px 24px rgba(6,147,227,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(6,147,227,.5); }
.btn-whatsapp {
background: #25d366;
color: var(--white);
text-decoration: none;
font-size: 16px;
font-weight: 700;
padding: 16px 32px;
border-radius: 8px;
display: inline-flex;
align-items: center;
gap: 10px;
transition: transform .2s, box-shadow .2s;
box-shadow: 0 4px 24px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.45); }
.btn-secondary {
background: transparent;
color: var(--white);
text-decoration: none;
font-size: 15px;
font-weight: 600;
padding: 15px 28px;
border-radius: 8px;
border: 1px solid var(--border);
display: inline-flex;
align-items: center;
gap: 8px;
transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.05); }
.hero-trust {
display: flex;
align-items: center;
gap: 24px;
flex-wrap: wrap;
justify-content: center;
}
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--grey); }
.hero-trust-item .stars { color: #fbbf24; font-size: 14px; }
.hero-trust-divider { width: 1px; height: 20px; background: var(--border); }
/* ── PROMO BANNER ── */
.promo-banner {
background: linear-gradient(135deg, rgba(245,166,35,.15), rgba(245,166,35,.08));
border-top: 1px solid rgba(245,166,35,.3);
border-bottom: 1px solid rgba(245,166,35,.3);
padding: 28px 24px;
text-align: center;
}
.promo-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.promo-code-block { text-align: center; }
.promo-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.promo-code { font-size: 26px; font-weight: 900; color: var(--gold); letter-spacing: 1px; }
.promo-divider { width: 1px; height: 50px; background: rgba(245,166,35,.3); }
.promo-perks { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.promo-perk { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); }
.promo-perk-icon { font-size: 20px; }
.promo-perk strong { color: var(--gold); }
/* ── SECTION BASE ── */
section { padding: 80px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
font-size: 11px;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--teal2);
margin-bottom: 12px;
display: block;
}
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.15; letter-spacing: -.5px; margin-bottom: 14px; }
.section-sub { font-size: 17px; color: var(--grey); max-width: 560px; line-height: 1.6; margin-bottom: 48px; }
.section-sub.centered { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
/* ── WHO IT'S FOR ── */
.who-section {
background:
  linear-gradient(rgba(10,22,40,.88), rgba(10,22,40,.88)),
  url('../img/Group-1.jpg') center / cover no-repeat;
}
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.who-card {
background: var(--card-bg);
border: 1px solid var(--border);
border-radius: 12px;
padding: 24px 20px;
text-align: center;
transition: border-color .2s, background .2s;
}
.who-card:hover { border-color: rgba(6,147,227,.4); background: rgba(6,147,227,.07); }
.who-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.who-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.who-text { font-size: 13px; color: var(--grey); line-height: 1.5; }
/* ── TOUR CARD IMAGE ── */
.tour-img {
height: 190px;
overflow: hidden;
}
.tour-img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform .5s ease;
}
.tour-card:hover .tour-img img { transform: scale(1.06); }
/* ── TOURS ── */
.tours-section { background: var(--dark); }
.tours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.tour-card {
background: var(--dark2);
border: 1px solid var(--border);
border-radius: 14px;
overflow: hidden;
transition: transform .2s, border-color .2s, box-shadow .2s;
display: flex;
flex-direction: column;
}
.tour-card:hover { transform: translateY(-4px); border-color: rgba(6,147,227,.4); box-shadow: 0 16px 48px rgba(0,0,0,.4); }
.tour-card.featured { border-color: rgba(245,166,35,.5); box-shadow: 0 0 0 1px rgba(245,166,35,.2); }
.tour-card-header {
padding: 28px 24px 20px;
position: relative;
}
.tour-featured-badge {
position: absolute;
top: 16px; right: 16px;
background: var(--gold);
color: #000;
font-size: 10px;
font-weight: 800;
letter-spacing: .8px;
text-transform: uppercase;
padding: 3px 10px;
border-radius: 100px;
}
.tour-emoji { font-size: 32px; margin-bottom: 12px; display: block; }
.tour-campaign { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal2); margin-bottom: 4px; }
.tour-name { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.tour-subtitle { font-size: 13px; color: var(--grey); }
.tour-card-body {
padding: 0 24px 24px;
flex: 1;
display: flex;
flex-direction: column;
}
.tour-divider { height: 1px; background: var(--border); margin-bottom: 18px; }
.tour-meta { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.tour-meta-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--grey); }
.tour-meta-item span { font-size: 14px; }
.tour-includes { list-style: none; margin-bottom: 20px; }
.tour-includes li { font-size: 13px; color: rgba(255,255,255,.75); padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; }
.tour-includes li::before { content: '✓'; color: #4ade80; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.tour-card-footer {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: auto;
padding-top: 16px;
border-top: 1px solid var(--border);
}
.tour-price .from { font-size: 11px; color: var(--grey); text-transform: uppercase; letter-spacing: .5px; }
.tour-price .amount { font-size: 28px; font-weight: 800; color: var(--white); line-height: 1; }
.tour-price .pp { font-size: 12px; color: var(--grey); }
.tour-price .strikethrough { font-size: 15px; color: var(--grey); text-decoration: line-through; margin-left: 6px; }
.tour-book-btn {
background: rgba(6,147,227,.15);
border: 1px solid rgba(6,147,227,.4);
color: var(--teal2);
text-decoration: none;
font-size: 13px;
font-weight: 700;
padding: 10px 18px;
border-radius: 7px;
transition: background .2s, border-color .2s;
white-space: nowrap;
}
.tour-book-btn:hover { background: rgba(6,147,227,.25); border-color: var(--teal); }
.tour-card.featured .tour-book-btn { background: rgba(245,166,35,.15); border-color: rgba(245,166,35,.5); color: var(--gold); }
.tour-card.featured .tour-book-btn:hover { background: rgba(245,166,35,.25); }
/* ── DIFFERENTIATORS ── */
.diff-section { background: var(--dark2); }
.diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.diff-card {
background: var(--card-bg);
border: 1px solid var(--border);
border-radius: 12px;
padding: 28px 24px;
transition: border-color .2s;
}
.diff-card:hover { border-color: rgba(0,198,215,.3); }
.diff-icon { font-size: 32px; margin-bottom: 14px; }
.diff-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.diff-text { font-size: 14px; color: var(--grey); line-height: 1.6; }
/* ── HOW IT WORKS ── */
.steps-section { background: var(--dark); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; max-width: 800px; margin: 0 auto; }
.steps-grid::before {
content: '';
position: absolute;
top: 32px;
left: calc(16.66% + 16px);
right: calc(16.66% + 16px);
height: 1px;
background: linear-gradient(to right, rgba(6,147,227,.4), rgba(0,198,215,.4));
}
.step { text-align: center; padding: 0 20px; }
.step-num {
width: 64px; height: 64px;
background: linear-gradient(135deg, var(--teal), var(--teal2));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
font-weight: 800;
margin: 0 auto 20px;
position: relative;
z-index: 1;
box-shadow: 0 0 0 6px var(--dark), 0 0 0 7px rgba(6,147,227,.2);
}
.step-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-text { font-size: 14px; color: var(--grey); line-height: 1.6; }
/* ── SOCIAL PROOF ── */
.proof-section { background: var(--dark2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-bottom: 40px; }
.testimonial {
background: var(--card-bg);
border: 1px solid var(--border);
border-radius: 12px;
padding: 24px;
}
.t-stars { color: #fbbf24; font-size: 15px; margin-bottom: 12px; }
.t-text { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
width: 40px; height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
font-weight: 700;
flex-shrink: 0;
}
.t-name { font-size: 14px; font-weight: 600; }
.t-meta { font-size: 12px; color: var(--grey); }
.proof-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.proof-stat { text-align: center; }
.proof-stat .val { font-size: 42px; font-weight: 900; color: var(--teal2); line-height: 1; margin-bottom: 6px; }
.proof-stat .lbl { font-size: 13px; color: var(--grey); }
/* ── FAQ ── */
.faq-section { background: var(--dark); }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
width: 100%;
background: none;
border: none;
color: var(--white);
text-align: left;
padding: 22px 0;
font-size: 16px;
font-weight: 600;
font-family: 'Inter', sans-serif;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
transition: color .2s;
}
.faq-q:hover { color: var(--teal2); }
.faq-q .faq-icon { font-size: 20px; flex-shrink: 0; transition: transform .25s; color: var(--teal2); }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
font-size: 15px;
color: var(--grey);
line-height: 1.75;
max-height: 0;
overflow: hidden;
transition: max-height .3s ease, padding .3s ease;
padding-bottom: 0;
}
.faq-a.open { max-height: 500px; padding-bottom: 22px; }
.faq-a strong { color: var(--white); }
/* ── FINAL CTA ── */
.final-cta {
background:
  linear-gradient(135deg, rgba(10,42,74,.84) 0%, rgba(10,61,42,.84) 100%),
  url('../img/Cenote-5.jpg') center / cover no-repeat;
padding: 100px 24px;
text-align: center;
position: relative;
overflow: hidden;
}
.final-cta::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(6,147,227,.12) 0%, transparent 70%);
pointer-events: none;
}
.final-cta h2 { font-size: clamp(30px, 5vw, 52px); font-weight: 900; letter-spacing: -1px; margin-bottom: 16px; }
.final-cta h2 em { font-style: normal; color: var(--teal2); }
.final-cta p { font-size: 18px; color: var(--grey); margin-bottom: 16px; }
.final-promo {
display: inline-block;
background: rgba(245,166,35,.15);
border: 1px solid rgba(245,166,35,.4);
color: var(--gold);
font-size: 15px;
font-weight: 700;
padding: 8px 20px;
border-radius: 100px;
margin-bottom: 40px;
}
.final-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.final-note { font-size: 13px; color: var(--grey); }
/* ── FOOTER ── */
footer {
background: #060e1a;
border-top: 1px solid var(--border);
padding: 40px 24px 32px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo img { height: 28px; width: auto; opacity: .7; }
.footer-logo span { font-size: 13px; color: var(--grey); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--grey); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: #3d4f66; width: 100%; text-align: center; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
/* ── STICKY BOTTOM BAR (mobile) ── */
.sticky-bottom {
display: none;
position: fixed;
bottom: 0; left: 0; right: 0;
background: rgba(10,22,40,.97);
backdrop-filter: blur(12px);
border-top: 1px solid var(--border);
padding: 12px 16px;
z-index: 199;
}
.sticky-bottom a {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
width: 100%;
background: #25d366;
color: var(--white);
text-decoration: none;
font-size: 15px;
font-weight: 700;
padding: 14px;
border-radius: 8px;
}
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
.nav { padding: 0 20px; }
.nav-link { display: none; }
.hero-price { gap: 12px; }
.price-divider { display: none; }
.steps-grid { grid-template-columns: 1fr; gap: 32px; }
.steps-grid::before { display: none; }
.proof-stats { gap: 28px; }
.promo-inner { gap: 16px; }
.promo-divider { display: none; }
.sticky-bottom { display: block; }
footer { padding-bottom: 80px; }
.final-cta-buttons .btn-primary { display: none; }
}
/* ── UTILITY ── */
.tag {
display: inline-block;
font-size: 11px;
font-weight: 700;
letter-spacing: .6px;
text-transform: uppercase;
padding: 3px 10px;
border-radius: 4px;
}
.tag-teal { background: rgba(0,198,215,.15); color: var(--teal2); border: 1px solid rgba(0,198,215,.3); }
.tag-gold { background: rgba(245,166,35,.15); color: var(--gold); border: 1px solid rgba(245,166,35,.3); }
/* ── LANG SWITCHER ── */
.lang-switcher { position: relative; }
.lang-btn {
background: transparent;
border: 1px solid var(--border);
color: var(--white);
font-size: 12px;
font-weight: 600;
font-family: 'Inter', sans-serif;
padding: 6px 10px;
border-radius: 6px;
cursor: pointer;
display: flex;
align-items: center;
gap: 5px;
transition: border-color .2s, background .2s;
}
.lang-btn:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }
.lang-arrow { font-size: 10px; color: var(--grey); }
.lang-menu {
position: absolute;
top: calc(100% + 8px);
right: 0;
background: #0d1e32;
border: 1px solid var(--border);
border-radius: 8px;
overflow: hidden;
min-width: 120px;
box-shadow: 0 8px 24px rgba(0,0,0,.5);
opacity: 0;
pointer-events: none;
transform: translateY(-4px);
transition: opacity .18s, transform .18s;
z-index: 300;
}
.lang-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.lang-option {
display: block;
width: 100%;
background: none;
border: none;
color: var(--grey);
font-size: 13px;
font-weight: 500;
font-family: 'Inter', sans-serif;
padding: 10px 16px;
cursor: pointer;
text-align: left;
transition: background .15s, color .15s;
}
.lang-option:hover { background: rgba(255,255,255,.06); color: var(--white); }
.lang-option.active { color: var(--teal2); font-weight: 700; }
/* ── SCROLL ANIMATION ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
