:root {
  --blue-950: #052d46;
  --blue-900: #073b5d;
  --blue-800: #07547b;
  --blue-600: #008db4;
  --cyan: #13bed1;
  --orange: #ff8900;
  --orange-strong: #f36d00;
  --green: #18a957;
  --sand: #f5f4ed;
  --ink: #0b2333;
  --muted: #59707d;
  --white: #fff;
  --shadow: 0 24px 70px rgba(5, 45, 70, 0.16);
  --radius: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }
html { scroll-padding-top: 150px; }
body { margin: 0; min-width: 320px; background: var(--white); }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
p { line-height: 1.7; }

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 860px; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; transform: translateY(-150%); background: #fff; padding: 12px 16px; border-radius: 10px; font-weight: 800; }
.skip-link:focus { transform: none; }

.sticky-site-chrome { position: sticky; top: 0; z-index: 100; box-shadow: 0 7px 26px rgba(3,49,73,.1); }
.authorization-bar { background: linear-gradient(90deg, #ffc400, #ff9800); color: #122735; font-size: 11px; letter-spacing: .02em; text-align: center; }
.authorization-bar .shell { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; padding: 6px 0; }
.authorization-bar strong { font-size: 11px; }

.site-header { background: rgba(255,255,255,.96); backdrop-filter: blur(16px); }
.header-main { height: 82px; display: flex; align-items: center; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 62px; height: 62px; object-fit: contain; }
.brand span { display: grid; }
.brand strong { font-size: 18px; line-height: 1.1; }
.brand small { color: var(--muted); margin-top: 4px; }
.header-seal { margin-left: 8px; padding-left: 20px; border-left: 1px solid #d8e4e8; }
.header-seal img { width: 56px; height: 56px; object-fit: contain; }
.header-buy { margin-left: auto; }

.section-nav { border-top: 1px solid #e7eef1; background: var(--blue-950); color: #fff; }
.section-nav-track { display: flex; justify-content: center; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.section-nav-track::-webkit-scrollbar { display: none; }
.section-nav a { flex: 0 0 auto; position: relative; padding: 14px 16px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; opacity: .78; }
.section-nav a::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 8px; height: 2px; background: var(--orange); transform: scaleX(0); transition: transform .2s ease; }
.section-nav a:hover, .section-nav a.active { opacity: 1; }
.section-nav a.active::after, .section-nav a:hover::after { transform: scaleX(1); }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; padding: 0 26px; border: 0; font-size: 13px; font-weight: 900; letter-spacing: .035em; text-transform: uppercase; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .section-nav a:focus-visible, summary:focus-visible, .gallery-item:focus-visible { outline: 3px solid #ffe066; outline-offset: 3px; }
.button-orange { color: #fff; background: linear-gradient(135deg, var(--orange-strong), #ffa31a); box-shadow: 0 14px 30px rgba(255,126,0,.28); }
.button-orange:hover { box-shadow: 0 18px 38px rgba(255,126,0,.4); }
.button-whatsapp { background: var(--green); color: #fff; box-shadow: 0 14px 30px rgba(24,169,87,.22); }
.button-blue { background: var(--blue-900); color: #fff; }
.button-ghost { border: 1px solid rgba(255,255,255,.65); color: #fff; background: rgba(5,45,70,.25); backdrop-filter: blur(7px); }
.button-wide { width: 100%; }

.hero { min-height: 660px; position: relative; display: grid; align-items: center; overflow: hidden; color: #fff; }
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 44%; }
.hero-overlay { background: linear-gradient(90deg, rgba(3,43,68,.94) 0%, rgba(5,69,104,.80) 46%, rgba(6,62,92,.22) 80%), linear-gradient(0deg, rgba(4,50,75,.32), transparent 50%); }
.hero-content { position: relative; z-index: 2; padding-block: 88px 72px; }
.eyebrow { width: fit-content; display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 8px 12px; color: #fff; background: var(--orange); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.eyebrow span { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; color: var(--green); background: #fff; }
.hero h1 { max-width: 840px; margin: 22px 0 16px; font-size: clamp(48px, 6.2vw, 88px); line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.hero h1 em { color: #ff9a00; font-style: normal; }
.hero-content > p { max-width: 650px; margin: 0; color: rgba(255,255,255,.9); font-size: clamp(18px, 2vw, 23px); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.trust-row { display: flex; gap: 26px; flex-wrap: wrap; margin: 34px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.86); font-size: 13px; font-weight: 700; }
.trust-row li::before { content: "✓"; color: #65e69a; margin-right: 7px; }
.hero-seal { position: absolute; z-index: 3; right: clamp(24px, 7vw, 120px); top: 54px; width: clamp(100px, 10vw, 150px); filter: drop-shadow(0 18px 30px rgba(0,0,0,.28)); }

.section { padding: 105px 0; scroll-margin-top: 145px; }
.section-intro { background: #fff; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(54px, 8vw, 108px); }
.split-reverse > :first-child { order: 2; }
.split-reverse > :last-child { order: 1; }
.kicker { display: inline-block; margin-bottom: 12px; color: var(--orange-strong); font-size: 12px; font-weight: 950; letter-spacing: .15em; }
.kicker-light { color: #6ce4ef; }
.copy-block h2, .section-heading h2 { margin: 0; color: var(--blue-950); font-size: clamp(36px, 4vw, 56px); line-height: 1.05; letter-spacing: -.04em; }
.copy-block > p, .section-heading > p { color: var(--muted); font-size: 17px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; padding: 0; list-style: none; }
.check-grid li { display: flex; align-items: center; gap: 10px; font-weight: 750; }
.check-grid li::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; color: #fff; background: var(--green); font-size: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--orange-strong); font-weight: 900; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.image-card { position: relative; margin: 0; }
.image-card::before { content: ""; position: absolute; inset: -18px 18px 22px -18px; border-radius: 32px; background: #d9f2f4; transform: rotate(-3deg); }
.image-card img { position: relative; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-card figcaption { position: absolute; left: 24px; right: 24px; bottom: 20px; display: flex; justify-content: space-between; gap: 16px; border-radius: 14px; padding: 14px 18px; background: rgba(5,45,70,.88); color: #fff; backdrop-filter: blur(9px); font-size: 13px; }

.section-blue { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 0 0, rgba(19,190,209,.28), transparent 30%), linear-gradient(140deg, var(--blue-950), #075d85); }
.section-blue::after { content: ""; position: absolute; width: 480px; height: 480px; right: -220px; bottom: -250px; border: 75px solid rgba(255,255,255,.05); border-radius: 50%; }
.section-heading { margin-bottom: 44px; }
.section-heading.centered { max-width: 720px; margin-inline: auto; text-align: center; }
.section-blue .section-heading h2, .section-blue .section-heading p { color: #fff; }
.section-blue .section-heading p { opacity: .78; }
.attractions-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.attraction-card { overflow: hidden; border-radius: 20px; background: #fff; color: var(--ink); box-shadow: 0 20px 50px rgba(0,0,0,.18); transition: transform .25s ease; }
.attraction-card:hover { transform: translateY(-7px); }
.attraction-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.attraction-card > div { padding: 22px; }
.attraction-card span { color: var(--orange-strong); font-size: 10px; font-weight: 950; letter-spacing: .15em; }
.attraction-card h3 { margin: 6px 0 8px; color: var(--blue-950); font-size: 23px; }
.attraction-card p { margin: 0; color: var(--muted); font-size: 14px; }

.tickets { background: var(--sand); }
.tickets-panel { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; padding: 58px; border-radius: 34px; background: #fff; box-shadow: var(--shadow); }
.tickets-copy h2 { margin: 0; color: var(--blue-950); font-size: clamp(40px, 5vw, 68px); letter-spacing: -.055em; }
.tickets-copy > p { color: var(--muted); font-size: 18px; }
.ticket-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.ticket-benefits div { display: grid; gap: 5px; padding: 16px; border-radius: 15px; background: #edf7f8; }
.ticket-benefits strong { color: var(--blue-900); }
.ticket-benefits span { color: var(--muted); font-size: 12px; }
.ticket-cta { display: grid; justify-items: center; gap: 12px; border-radius: 24px; padding: 30px; color: #fff; background: linear-gradient(145deg, var(--blue-950), var(--blue-800)); text-align: center; }
.ticket-cta img { filter: drop-shadow(0 12px 18px rgba(0,0,0,.22)); }
.ticket-cta p { margin: 0 0 4px; font-weight: 800; }
.ticket-cta small { opacity: .7; line-height: 1.45; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature { padding: 30px 24px; border: 1px solid #e2ebef; border-radius: 20px; background: #fff; box-shadow: 0 12px 34px rgba(5,45,70,.07); }
.feature > span { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 16px; color: #fff; background: linear-gradient(135deg, var(--cyan), var(--blue-800)); font-weight: 950; }
.feature h3 { margin: 20px 0 7px; color: var(--blue-950); }
.feature p { margin: 0; color: var(--muted); font-size: 14px; }

.gallery-section { padding-top: 30px; }
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 220px; gap: 14px; }
.gallery-item { overflow: hidden; padding: 0; border: 0; border-radius: 18px; background: #d8e4e8; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-large { grid-row: span 2; }

.partnership { overflow: hidden; background: linear-gradient(180deg, #edf9fa, #fff); }
.auth-card { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; justify-items: center; gap: 20px; min-height: 410px; padding: 54px; border-radius: 30px; color: #fff; background: radial-gradient(circle at top, #0b739b, var(--blue-950) 70%); box-shadow: var(--shadow); text-align: center; }
.auth-card::after { content: "✓ VERIFICADO"; position: absolute; top: 18px; right: -44px; width: 170px; padding: 9px; transform: rotate(35deg); background: var(--green); font-size: 10px; font-weight: 950; }
.auth-card img { max-height: 145px; object-fit: contain; filter: drop-shadow(0 12px 20px rgba(0,0,0,.22)); }
.auth-card strong, .auth-card span { grid-column: 1/-1; }
.auth-card strong { font-size: 23px; }
.auth-card span { opacity: .78; }
.verified-list { display: grid; gap: 16px; margin: 28px 0; padding: 0; list-style: none; }
.verified-list li { position: relative; display: grid; gap: 3px; padding-left: 40px; }
.verified-list li::before { content: "✓"; position: absolute; top: 0; left: 0; display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: #d9f5e5; color: var(--green); font-weight: 950; }
.verified-list span { color: var(--muted); font-size: 14px; }

.location { background: var(--sand); }
.travel-times { display: flex; gap: 12px; margin: 24px 0 30px; }
.travel-times span { display: grid; min-width: 110px; padding: 13px; border-radius: 14px; background: #fff; color: var(--muted); font-size: 12px; }
.travel-times strong { color: var(--blue-900); font-size: 23px; }
.map-card { margin: 0; overflow: hidden; border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.map-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.map-card figcaption { padding: 14px 20px; color: var(--muted); font-size: 12px; }

.faq { background: #fff; }
.accordion { border-top: 1px solid #dbe7eb; }
.accordion details { border-bottom: 1px solid #dbe7eb; }
.accordion summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 23px 4px; color: var(--blue-950); cursor: pointer; font-size: 18px; font-weight: 850; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: #fff; background: var(--blue-900); }
.accordion details[open] summary::after { content: "−"; background: var(--orange); }
.accordion details p { margin: -6px 48px 23px 4px; color: var(--muted); }

.site-footer { padding: 70px 0 22px; color: rgba(255,255,255,.76); background: var(--blue-950); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr 1.2fr; gap: 46px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-brand { gap: 16px !important; }
.footer-badges { display: flex; align-items: center; gap: 14px; }
.footer-badges img { width: 82px; height: 82px; object-fit: contain; }
.footer-badges img:first-child { padding: 7px; border-radius: 18px; background: #fff; }
.footer-badges img:last-child { filter: drop-shadow(0 8px 15px rgba(0,0,0,.28)); }
.footer-grid h2 { margin: 0 0 8px; color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.footer-grid p { margin: 0; font-size: 13px; }
.footer-grid a { font-size: 13px; }
.footer-grid a:hover { color: #fff; }
.footer-grid .legal { font-size: 11px; opacity: .72; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 11px; }

.floating-whatsapp, .floating-buy { position: fixed; z-index: 80; bottom: 22px; box-shadow: 0 14px 34px rgba(0,0,0,.23); }
.floating-whatsapp { left: 22px; width: 60px; height: 60px; display: grid; place-items: center; color: #fff; background: #25d366; border: 3px solid #fff; border-radius: 50%; transition: transform .2s ease, box-shadow .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 38px rgba(0,0,0,.28); }
.whatsapp-icon { display: grid; place-items: center; width: 34px; height: 34px; }
.whatsapp-icon svg { width: 100%; height: 100%; }
.whatsapp-bubble { position: absolute; left: 0; bottom: calc(100% + 12px); width: max-content; padding: 10px 14px; border-radius: 12px; color: var(--blue-950); background: #fff; box-shadow: 0 10px 28px rgba(0,0,0,.2); font-size: 13px; font-weight: 900; white-space: nowrap; }
.whatsapp-bubble::after { content: ""; position: absolute; left: 22px; top: 100%; border: 7px solid transparent; border-top-color: #fff; }
.floating-buy { right: 22px; min-height: 54px; display: flex; align-items: center; border-radius: 999px; padding: 0 26px; color: #fff; background: var(--green); font-size: 13px; font-weight: 900; text-transform: uppercase; }

.lightbox { width: min(980px, calc(100% - 28px)); padding: 0; border: 0; border-radius: 18px; background: #061e2c; box-shadow: 0 30px 100px rgba(0,0,0,.55); }
.lightbox::backdrop { background: rgba(0,19,30,.82); backdrop-filter: blur(7px); }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; }
.lightbox button { position: absolute; top: 12px; right: 12px; width: 42px; height: 42px; border: 0; border-radius: 50%; color: #fff; background: rgba(0,0,0,.62); cursor: pointer; font-size: 28px; }

.whatsapp-choice { width: min(440px, calc(100% - 28px)); padding: 32px; border: 0; border-radius: 24px; color: var(--ink); background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.4); }
.whatsapp-choice::backdrop { background: rgba(0,19,30,.72); backdrop-filter: blur(6px); }
.whatsapp-choice-close { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border: 0; border-radius: 50%; color: var(--blue-950); background: #edf4f6; cursor: pointer; font-size: 25px; line-height: 1; }
.whatsapp-choice-kicker { color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.whatsapp-choice h2 { margin: 8px 0; color: var(--blue-950); font-size: 26px; line-height: 1.1; }
.whatsapp-choice p { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.whatsapp-choice-actions { display: grid; gap: 10px; }
.whatsapp-choice-option { display: grid; gap: 3px; padding: 16px 18px; border: 1px solid #d8e5e9; border-radius: 16px; background: #f8fbfc; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.whatsapp-choice-option:hover { border-color: var(--green); background: #effbf4; transform: translateY(-2px); }
.whatsapp-choice-option strong { color: var(--blue-950); font-size: 16px; }
.whatsapp-choice-option span { color: var(--muted); font-size: 12px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .section-nav-track { justify-content: flex-start; }
  .hero { min-height: 610px; }
  .hero-seal { top: 34px; right: 24px; }
  .split { grid-template-columns: 1fr; }
  .split-reverse > :first-child, .split-reverse > :last-child { order: initial; }
  .attractions-grid { grid-template-columns: repeat(2, 1fr); }
  .tickets-panel { grid-template-columns: 1fr; gap: 40px; padding: 42px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 660px) {
  html { scroll-padding-top: 129px; }
  .shell { width: min(100% - 28px, 1180px); }
  .authorization-bar span { display: none; }
  .header-main { height: 70px; }
  .brand img { width: 50px; height: 50px; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 11px; }
  .header-seal { display: none; }
  .header-buy { min-height: 42px; padding: 0 16px; font-size: 10px; }
  .section-nav a { padding: 12px 13px; font-size: 10px; }
  .section-nav a::after { bottom: 6px; }
  .hero { min-height: 660px; align-items: end; }
  .hero-overlay { background: linear-gradient(0deg, rgba(3,43,68,.96), rgba(5,69,104,.76) 66%, rgba(6,62,92,.36)); }
  .hero-content { padding-block: 150px 54px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-seal { width: 82px; top: 22px; right: 18px; }
  .hero-actions { display: grid; }
  .trust-row { gap: 10px 18px; font-size: 11px; }
  .section { padding: 76px 0; }
  .check-grid { grid-template-columns: 1fr; }
  .image-card figcaption { display: grid; }
  .attractions-grid { grid-template-columns: 1fr; }
  .tickets-panel { width: min(100% - 16px, 1180px); padding: 28px 20px; border-radius: 26px; }
  .ticket-benefits { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery-large { grid-column: 1/-1; grid-row: auto; }
  .auth-card { min-height: 330px; padding: 38px 24px; }
  .auth-card img { max-height: 110px; }
  .travel-times { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { bottom: 14px; left: 14px; width: 56px; height: 56px; }
  .whatsapp-bubble { display: block; left: 0; bottom: calc(100% + 10px); padding: 9px 12px; font-size: 12px; }
  .floating-buy { right: 14px; bottom: 14px; min-height: 48px; padding: 0 18px; font-size: 11px; }
  .whatsapp-choice { padding: 30px 24px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
