:root {
  --blue-950: #081a40;
  --blue-900: #0c2d6b;
  --blue-800: #1545a0;
  --blue-700: #1f63d1;
  --blue-100: #eaf3ff;
  --yellow-500: #f6c429;
  --yellow-400: #ffd453;
  --green-500: #1db954;
  --green-600: #18a44a;
  --white: #ffffff;
  --ink: #152033;
  --muted: #5f6b80;
  --line: rgba(12, 45, 107, 0.12);
  --shadow: 0 18px 50px rgba(7, 24, 63, 0.14);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f8fbff;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.6; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.section { padding: 88px 0; }
.section.alt { background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-700);
  font-size: .78rem;
}
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head.left { margin-bottom: 24px; }
.section-head h2, .prose h1 { margin: 10px 0 12px; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.05; }
.section-head p, .prose p { color: var(--muted); }

.topbar {
  background: var(--blue-950);
  color: rgba(255,255,255,.9);
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: .95rem;
  flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(12, 45, 107, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}
.brand img { width: 220px; height: auto; }
.brand.small img { width: 170px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
}
.site-nav a { color: var(--blue-950); }
.site-nav .nav-cta {
  padding: 12px 18px;
  background: var(--yellow-500);
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-900);
  margin: 5px auto;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--blue-950);
}
.hero-media,
.hero-media picture,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(8, 26, 64, .85) 0%, rgba(8, 26, 64, .55) 38%, rgba(8, 26, 64, .2) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 84px 0 108px;
  color: #fff;
  max-width: 720px;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.3rem);
  line-height: .98;
  margin: 18px 0;
}
.hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,.88);
  max-width: 620px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 22px; }
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-points li {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, var(--green-500), var(--green-600));
  color: var(--white);
  box-shadow: 0 18px 38px rgba(29,185,84,.26);
}
.btn-secondary {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.btn-xl { padding: 18px 28px; font-size: 1.08rem; }

.trust-strip {
  background: linear-gradient(180deg, #0b275b, #123882);
  color: #fff;
  padding: 22px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.trust-grid div {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px;
}
.trust-grid strong { display: block; margin-bottom: 6px; }
.trust-grid span { color: rgba(255,255,255,.76); }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.destination-card {
  grid-column: span 4;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.destination-card.featured { grid-column: span 6; }
.destination-card.wide { grid-column: span 6; }
.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.destination-card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 24px; }
.card-body h3 { margin: 0 0 10px; font-size: 1.5rem; }
.card-body p { color: var(--muted); margin: 0 0 18px; }
.card-link { color: var(--blue-800); font-weight: 800; }
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--yellow-500);
  color: var(--blue-950);
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .85rem;
}

.features-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.features-grid article,
.steps-grid article,
.faq-list details,
.cookie-card,
.prose {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.features-grid article,
.steps-grid article { padding: 24px; }
.features-grid h3,
.steps-grid h3 { margin: 0 0 10px; }
.features-grid p,
.steps-grid p { color: var(--muted); margin: 0; }
.steps-grid span {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-weight: 900;
  margin-bottom: 14px;
}

.faq-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }
.faq-list { display: grid; gap: 16px; }
.faq-list details { padding: 20px 22px; }
.faq-list summary { cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 12px 0 0; color: var(--muted); }

.cta-band { background: linear-gradient(90deg, var(--blue-950), var(--blue-800)); color: #fff; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band h2 { margin: 12px 0 10px; font-size: clamp(2rem, 4vw, 3rem); }
.cta-band p { color: rgba(255,255,255,.78); margin: 0; }

.site-footer {
  background: #071734;
  color: rgba(255,255,255,.86);
  padding: 40px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { width: 170px; margin-bottom: 14px; }
.site-footer h3 { color: #fff; margin-top: 0; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.86); }
.footer-legal { padding-top: 18px; }
.footer-legal p { margin: 0; color: rgba(255,255,255,.76); }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #27d366, #16a34a);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 25px 55px rgba(22,163,74,.32);
}
.whatsapp-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  font-size: 1.2rem;
}
.whatsapp-text { line-height: 1.15; font-weight: 700; }
.pulse { animation: pulse 1.8s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(39,211,102,.55), 0 25px 55px rgba(22,163,74,.32); }
  70% { box-shadow: 0 0 0 18px rgba(39,211,102,0), 0 25px 55px rgba(22,163,74,.32); }
  100% { box-shadow: 0 0 0 0 rgba(39,211,102,0), 0 25px 55px rgba(22,163,74,.32); }
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 80;
}
.cookie-card {
  width: min(420px, calc(100vw - 32px));
  padding: 18px;
}
.cookie-card p { margin: 0 0 14px; color: var(--muted); }
.cookie-card a { color: var(--blue-800); font-weight: 700; }

.simple-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}
.simple-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  gap: 16px;
}
.internal-page { background: linear-gradient(180deg, #f8fbff, #eef6ff); }
.prose {
  padding: 34px;
  max-width: 860px;
}
.prose h2 { margin-top: 28px; }
.note {
  background: var(--blue-100);
  border-left: 4px solid var(--blue-700);
  padding: 14px 16px;
  border-radius: 12px;
}
.credits-list { padding-left: 18px; }
.credits-list li { margin-bottom: 12px; }

@media (max-width: 1080px) {
  .destination-card,
  .destination-card.featured,
  .destination-card.wide,
  .features-grid article,
  .steps-grid article {
    grid-column: span 6;
  }
  .features-grid,
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout,
  .cta-band-inner,
  .footer-grid { grid-template-columns: 1fr; display: grid; }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .hero { min-height: auto; }
  .hero-content { padding: 72px 0 90px; }
  .trust-grid,
  .features-grid,
  .steps-grid,
  .destinations-grid { grid-template-columns: 1fr; }
  .destination-card,
  .destination-card.featured,
  .destination-card.wide { grid-column: auto; }
}

@media (max-width: 560px) {
  .brand img { width: 184px; }
  .hero h1 { font-size: 2.45rem; }
  .section { padding: 68px 0; }
  .whatsapp-float {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
    border-radius: 22px;
  }
  .whatsapp-text { text-align: left; }
  .cookie-banner { left: 12px; right: 12px; bottom: 92px; }
}
