/* ============================================================
   Travel with Mirta — Sitio premium
   Marca: turquesa + rosa + dorado (derivado del logo)
   Hecho por Mateolab Creative Agency
   ============================================================ */

:root {
  /* Marca */
  --turquoise: #1FC7D4;
  --turquoise-deep: #0FA7B8;
  --aqua: #3FE0E0;
  --pink: #FF7BAC;
  --pink-deep: #F65B96;
  --gold: #FBB845;
  --coral: #FF9A6C;

  /* Neutros / fondo */
  --ocean: #0A3D52;       /* texto principal sobre claro */
  --ocean-soft: #3E6477;  /* texto secundario */
  --sand: #FBF8F4;
  --paper: #FFFFFF;
  --mist: #EAF8FA;        /* secciones suaves */
  --line: #E4ECEF;

  /* Gradientes de marca */
  --grad-brand: linear-gradient(120deg, var(--turquoise) 0%, #7FD0E6 38%, var(--pink) 78%, var(--gold) 110%);
  --grad-cta: linear-gradient(120deg, var(--pink) 0%, var(--coral) 55%, var(--gold) 100%);
  --grad-aqua: linear-gradient(135deg, var(--aqua) 0%, var(--turquoise) 100%);
  --grad-ocean: linear-gradient(170deg, #0B4763 0%, #0A3D52 55%, #072E3F 100%);

  /* Sistema */
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 16px rgba(10, 61, 82, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 61, 82, 0.10);
  --shadow-lg: 0 30px 70px rgba(10, 61, 82, 0.16);
  --shadow-brand: 0 18px 44px rgba(246, 91, 150, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --z-nav: 50;
  --z-float: 40;
  --z-overlay: 30;

  --maxw: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ocean);
  background: var(--sand);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Tipografía ---------- */
h1, h2, h3, .display {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ocean);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turquoise-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad-cta);
  border-radius: 2px;
}
.script {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
}
.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; }
.section-pad { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); margin: 14px 0 18px; }
.section-head p { font-size: 1.08rem; color: var(--ocean-soft); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-weight: 600; font-size: 1rem;
  padding: 15px 28px; border-radius: var(--radius-pill);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn-primary { background: var(--grad-cta); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 54px rgba(246, 91, 150, 0.38); }
.btn-ghost { background: rgba(255,255,255,0.14); color: #fff; border: 1.5px solid rgba(255,255,255,0.55); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,0.26); transform: translateY(-3px); }
.btn-ocean { background: var(--ocean); color: #fff; }
.btn-ocean:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 14px 34px rgba(37, 211, 102, 0.32); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(37, 211, 102, 0.42); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 32px); max-width: var(--maxw);
  z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px 12px 22px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 8px 30px rgba(10, 61, 82, 0.08);
  transition: box-shadow .3s var(--ease), background .3s var(--ease), top .3s var(--ease);
}
.nav.scrolled { top: 8px; box-shadow: 0 12px 36px rgba(10, 61, 82, 0.14); background: rgba(255,255,255,0.9); }
.nav-brand { display: flex; align-items: center; gap: 11px; }
.nav-brand img { height: 42px; width: auto; }
.nav-brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-brand .wordmark b { font-family: 'Dancing Script', cursive; font-size: 1.45rem; line-height: 1; }
.nav-brand .wordmark span { font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ocean-soft); font-weight: 700; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 9px 16px; border-radius: var(--radius-pill); font-size: 0.95rem; font-weight: 500; color: var(--ocean); transition: background .2s, color .2s; }
.nav-links a:hover { background: var(--mist); color: var(--turquoise-deep); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-cta .btn { padding: 11px 20px; font-size: 0.92rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; color: var(--ocean); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--grad-ocean);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-wave { position: absolute; bottom: -2px; left: 0; width: 100%; z-index: 2; line-height: 0; }
.hero-wave svg { width: 100%; height: clamp(60px, 9vw, 130px); display: block; }
/* blobs decorativos */
.blob { position: absolute; border-radius: 50%; filter: blur(48px); opacity: 0.5; z-index: 1; }
.blob.b1 { width: 460px; height: 460px; background: var(--turquoise); top: -120px; right: -80px; }
.blob.b2 { width: 380px; height: 380px; background: var(--pink); bottom: 40px; left: -120px; opacity: 0.4; }
.blob.b3 { width: 300px; height: 300px; background: var(--gold); top: 30%; left: 40%; opacity: 0.25; }

.hero-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; width: 100%; }
.hero-copy { color: #fff; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(251,184,69,0.25); }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 5.6vw, 4.4rem); margin-bottom: 22px; }
.hero h1 .script { font-size: 1.12em; display: inline-block; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: .1em; }
.hero p.lead { font-size: 1.18rem; color: rgba(255,255,255,0.88); max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-trust { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-trust .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.6); font-weight: 600; }
.hero-trust .lines { display: flex; gap: 18px; align-items: center; }
.hero-trust .lines b { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: #fff; opacity: 0.92; }

/* Foto de Mirta */
.hero-photo { position: relative; }
.hero-photo .frame {
  position: relative; border-radius: 30px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--grad-aqua);
}
.hero-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .frame .fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: var(--grad-aqua); color: rgba(255,255,255,0.92); text-align: center; padding: 20px;
}
.hero-photo .frame .fallback svg { width: 60px; height: 60px; opacity: 0.85; }
.hero-photo .frame .fallback span { font-size: 0.82rem; max-width: 200px; }
/* tarjeta flotante */
.float-card {
  position: absolute; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-radius: 16px; padding: 14px 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 11px;
}
.float-card.fc1 { bottom: 26px; left: -28px; }
.float-card.fc2 { top: 30px; right: -22px; }
.float-card .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.float-card .ic svg { width: 22px; height: 22px; color: #fff; }
.float-card .ic.aqua { background: var(--grad-aqua); }
.float-card .ic.pink { background: var(--grad-cta); }
.float-card b { font-size: 0.92rem; display: block; line-height: 1.2; }
.float-card small { font-size: 0.74rem; color: var(--ocean-soft); }

/* ============================================================
   LOGOS / cruise bar
   ============================================================ */
.cruisebar { background: var(--paper); border-bottom: 1px solid var(--line); }
.cruisebar .container { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 5vw, 64px); flex-wrap: wrap; padding-top: 30px; padding-bottom: 30px; }
.cruisebar .cl { display: flex; align-items: center; gap: 10px; color: var(--ocean-soft); font-weight: 600; font-size: 1.05rem; opacity: 0.85; transition: opacity .2s; }
.cruisebar .cl:hover { opacity: 1; }
.cruisebar .cl svg { width: 26px; height: 26px; color: var(--turquoise-deep); }

/* ============================================================
   FEATURE CARDS (Por qué Mirta)
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .ic {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--mist);
}
.card .ic svg { width: 28px; height: 28px; color: var(--turquoise-deep); }
.card:nth-child(2) .ic { background: #FFEAF2; } .card:nth-child(2) .ic svg { color: var(--pink-deep); }
.card:nth-child(3) .ic { background: #FFF3DF; } .card:nth-child(3) .ic svg { color: #E59A1C; }
.card:nth-child(5) .ic { background: #FFEAF2; } .card:nth-child(5) .ic svg { color: var(--pink-deep); }
.card:nth-child(6) .ic { background: #FFF3DF; } .card:nth-child(6) .ic svg { color: #E59A1C; }
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p { color: var(--ocean-soft); font-size: 1rem; }

/* ============================================================
   ABOUT (Mirta)
   ============================================================ */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about-photo { position: relative; }
.about-photo .frame { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-lg); background: var(--grad-aqua); }
.about-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .frame .fallback { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; text-align: center; padding: 24px; }
.about-photo .badge {
  position: absolute; bottom: -22px; right: -16px; background: var(--grad-cta); color: #fff;
  border-radius: 18px; padding: 18px 22px; box-shadow: var(--shadow-brand); text-align: center;
}
.about-photo .badge b { font-family: 'Playfair Display', serif; font-size: 1.9rem; display: block; line-height: 1; }
.about-photo .badge span { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.92; }
.about-copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 14px 0 20px; }
.about-copy p { color: var(--ocean-soft); margin-bottom: 18px; font-size: 1.06rem; }
.about-sign { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.about-sign .name { font-family: 'Dancing Script', cursive; font-size: 2rem; color: var(--pink-deep); line-height: 1; }
.about-sign .role { font-size: 0.86rem; color: var(--ocean-soft); }

/* ============================================================
   CRUISE LINES
   ============================================================ */
.lines-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.line-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 300px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px; color: #fff; box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.line-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.line-card::before { content: ""; position: absolute; inset: 0; z-index: 0; transition: transform .6s var(--ease); }
.line-card:hover::before { transform: scale(1.06); }
.line-card.carnival::before { background: linear-gradient(150deg, #0A3D52 0%, #1FC7D4 130%); }
.line-card.royal::before { background: linear-gradient(150deg, #072E3F 0%, #2563EB 140%); }
.line-card.nor::before { background: linear-gradient(150deg, #0A3D52 0%, #FF7BAC 150%); }
.line-card.msc::before { background: linear-gradient(150deg, #072E3F 0%, #FBB845 160%); }
.line-card .deco { position: absolute; top: 24px; right: 24px; z-index: 1; opacity: 0.22; }
.line-card .deco svg { width: 88px; height: 88px; color: #fff; }
.line-card .inner { position: relative; z-index: 2; }
.line-card .tag { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; opacity: 0.8; font-weight: 700; }
.line-card h3 { color: #fff; font-size: 1.7rem; margin: 8px 0 8px; }
.line-card p { color: rgba(255,255,255,0.82); font-size: 0.96rem; }

/* ============================================================
   DESTINOS
   ============================================================ */
.dest { background: linear-gradient(180deg, var(--mist) 0%, var(--sand) 100%); }
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.dest-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4;
  display: flex; align-items: flex-end; padding: 20px; color: #fff;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.dest-card::before { content: ""; position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transition: transform .7s var(--ease); }
.dest-card:hover::before { transform: scale(1.08); }
.dest-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 30%, rgba(7,46,63,0.78) 100%); }
.dest-card span { position: relative; z-index: 2; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; }
.dest-card small { position: relative; z-index: 2; display: block; font-size: 0.74rem; opacity: 0.85; margin-top: 2px; font-family: 'Inter', sans-serif; }
.dest-card .txt { position: relative; z-index: 2; }
.dest-card.d1::before { background-image: url('assets/bahamas.webp'); }
.dest-card.d2::before { background-image: url('assets/cozumel.webp'); }
.dest-card.d3::before { background-image: url('assets/caribe-oriental.webp'); }
.dest-card.d4::before { background-image: url('assets/caribe-occidental.webp'); }

/* ============================================================
   PROCESO
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 14px; }
.step .num {
  font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #fff;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-cta); box-shadow: var(--shadow-brand); margin-bottom: 18px;
}
.step h3 { font-size: 1.22rem; margin-bottom: 8px; }
.step p { color: var(--ocean-soft); font-size: 0.96rem; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 36px; left: 58px; right: -10px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px);
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testi { background: var(--ocean); color: #fff; overflow: hidden; position: relative; }
.testi .blob { opacity: 0.18; }
.testi .blob.t1 { width: 380px; height: 380px; background: var(--turquoise); top: -120px; left: -100px; }
.testi .blob.t2 { width: 340px; height: 340px; background: var(--pink); bottom: -120px; right: -80px; }
.testi .section-head h2, .testi .section-head { position: relative; z-index: 2; }
.testi .section-head h2 { color: #fff; }
.testi .section-head p { color: rgba(255,255,255,0.75); }
.testi .eyebrow { color: var(--aqua); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; z-index: 2; }
.testi-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(8px);
}
.testi-card .stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--gold); }
.testi-card .stars svg { width: 18px; height: 18px; }
.testi-card p { color: rgba(255,255,255,0.9); font-size: 1.02rem; margin-bottom: 22px; font-style: italic; }
.testi-card .who { display: flex; align-items: center; gap: 12px; }
.testi-card .av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; font-family: 'Playfair Display', serif; flex-shrink: 0; }
.testi-card:nth-child(1) .av { background: var(--grad-aqua); }
.testi-card:nth-child(2) .av { background: var(--grad-cta); }
.testi-card:nth-child(3) .av { background: linear-gradient(135deg, var(--gold), var(--coral)); }
.testi-card .who b { display: block; font-size: 0.98rem; }
.testi-card .who small { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

/* ============================================================
   FORM / CTA reserva
   ============================================================ */
.quote { background: var(--paper); }
.quote-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; }
.quote-aside h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 14px 0 18px; }
.quote-aside p { color: var(--ocean-soft); margin-bottom: 26px; font-size: 1.06rem; }
.quote-list { display: grid; gap: 16px; }
.quote-list li { display: flex; gap: 13px; align-items: flex-start; }
.quote-list .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-aqua); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.quote-list .tick svg { width: 15px; height: 15px; color: #fff; }
.quote-list b { font-weight: 600; }
.quote-list small { display: block; color: var(--ocean-soft); font-size: 0.92rem; }

.form-card { background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 7px; color: var(--ocean); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 0.98rem; color: var(--ocean); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(31, 199, 212, 0.14);
}
.form-card .btn { width: 100%; margin-top: 6px; }
.form-note { font-size: 0.82rem; color: var(--ocean-soft); text-align: center; margin-top: 14px; }
.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .ic { width: 64px; height: 64px; border-radius: 50%; background: var(--grad-aqua); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .ic svg { width: 32px; height: 32px; color: #fff; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 8px; }
.form-success p { color: var(--ocean-soft); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.finalcta { padding: clamp(56px, 8vw, 100px) 0; }
.finalcta-inner {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--grad-ocean); color: #fff; text-align: center;
  padding: clamp(48px, 7vw, 84px) 28px; box-shadow: var(--shadow-lg);
}
.finalcta .blob { opacity: 0.3; }
.finalcta .blob.f1 { width: 300px; height: 300px; background: var(--pink); top: -100px; right: -60px; }
.finalcta .blob.f2 { width: 260px; height: 260px; background: var(--turquoise); bottom: -100px; left: -60px; }
.finalcta h2 { position: relative; z-index: 2; color: #fff; font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: 16px; }
.finalcta p { position: relative; z-index: 2; color: rgba(255,255,255,0.85); font-size: 1.12rem; max-width: 520px; margin: 0 auto 30px; }
.finalcta .hero-actions { position: relative; z-index: 2; justify-content: center; margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #062533; color: rgba(255,255,255,0.7); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .wordmark b { font-family: 'Dancing Script', cursive; font-size: 1.7rem; color: #fff; }
.footer-brand .wordmark span { display: block; font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--aqua); font-weight: 700; }
.footer-brand p { margin: 16px 0 20px; font-size: 0.96rem; max-width: 280px; }
.footer-soc { display: flex; gap: 10px; }
.footer-soc a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: background .2s, transform .2s; }
.footer-soc a:hover { background: var(--grad-cta); transform: translateY(-3px); }
.footer-soc svg { width: 19px; height: 19px; color: #fff; }
.footer-col h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; }
.footer-col a, .footer-col li { display: block; font-size: 0.96rem; margin-bottom: 12px; transition: color .2s; }
.footer-col a:hover { color: var(--aqua); }
.footer-col .ct { display: flex; gap: 9px; align-items: flex-start; }
.footer-col .ct svg { width: 17px; height: 17px; color: var(--aqua); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 0.84rem; }
.footer-bottom a:hover { color: var(--aqua); }
.footer-bottom .made b { color: rgba(255,255,255,0.85); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: var(--z-float);
  width: 60px; height: 60px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.7); opacity: 0; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo { max-width: 420px; margin: 0 auto; width: 100%; }
  .about-grid, .quote-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 420px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-quote-nav { display: none; }
  .grid-3, .lines-grid, .testi-grid { grid-template-columns: 1fr; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    background: rgba(255,255,255,0.96); backdrop-filter: blur(18px);
    border-radius: 20px; padding: 12px; box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
  }
  .nav.open .nav-links a { padding: 13px 16px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .hero { padding: 120px 0 60px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .float-card.fc1 { left: 8px; bottom: 14px; }
  .float-card.fc2 { right: 8px; top: 14px; }
  .dest-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-photo .badge { right: 10px; }
  .section-head { margin-bottom: 40px; }
}

/* ============================================================
   ACCESIBILIDAD — reduce motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Focus visible */
:focus-visible { outline: 3px solid var(--turquoise); outline-offset: 2px; border-radius: 6px; }
