@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Sora:wght@400;500;600;700;800&display=swap');

:root{
  --bg: #f5f5f7;
  --bg-white: #ffffff;
  --surface: #ffffff;
  --surface-2: #f5f5f7;
  --surface-3: #e8e8ed;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --accent-soft: rgba(0,113,227,0.08);
  --accent-2: #0071e3;
  --accent-2-soft: rgba(0,113,227,0.08);
  --text: #1d1d1f;
  --text-muted: #6e6e73;
  --text-light: #aeaeb2;
  --border: rgba(0,0,0,0.06);
  --border-strong: rgba(0,0,0,0.14);
  --radius: 20px;
  --radius-sm: 12px;
  --maxw: 1200px;
  /* legacy aliases */
  --coral: #0071e3;
  --coral-soft: rgba(0,113,227,0.08);
  --yellow: #f5a623;
  --mint: #248a3d;
  --pink: #ff375f;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, 'SF Pro Text', BlinkMacSystemFont, 'Sora', 'Segoe UI', sans-serif;
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
  font-family: -apple-system, 'SF Pro Display', BlinkMacSystemFont, 'Fraunces', sans-serif;
  font-weight:700;
  line-height:1.07;
  letter-spacing:-0.025em;
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }
img,svg{ display:block; }

.wrap{ max-width: var(--maxw); margin:0 auto; padding:0 48px; }
@media (max-width:700px){ .wrap{ padding:0 24px; } }

section{ padding: 100px 0; }
@media (max-width:700px){ section{ padding:72px 0; } }

.section-head{ max-width:680px; margin-bottom:72px; }
.section-head h2{ font-size: clamp(32px, 4.5vw, 52px); }
.section-head p{ font-size:19px; color:var(--text-muted); margin-top:14px; max-width:540px; line-height:1.5; }

.eyebrow{
  font-size:12px; font-weight:700; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--accent);
  margin-bottom:18px; display:flex; align-items:center; gap:10px;
}
.eyebrow::before{
  content:''; width:18px; height:1.5px;
  background:var(--accent); display:inline-block;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:6px; padding:12px 22px; border-radius:980px;
  font-weight:600; font-size:15px; cursor:pointer; border:none;
  transition: all .2s ease; white-space:nowrap;
  font-family:inherit; letter-spacing:-0.01em;
}
.btn:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; }
.btn-primary{ background:var(--accent); color:#fff; }
.btn-primary:hover{ background:var(--accent-hover); }
.btn-secondary{
  background:var(--surface-3);
  color:var(--text);
}
.btn-secondary:hover{ background:#d8d8dc; }
.btn-ghost{ background:none; color:var(--accent); padding:12px 8px; }
.btn-ghost:hover{ color:var(--accent-hover); }
.btn-block{ width:100%; }
.btn-sm{ padding:9px 18px; font-size:14px; }

/* ---------- Header ---------- */
header{
  position:sticky; top:0; z-index:100;
  background:rgba(245,245,247,0.85);
  backdrop-filter:blur(20px) saturate(180%);
  -webkit-backdrop-filter:blur(20px) saturate(180%);
  border-bottom:0.5px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:0 48px; height:52px; gap:24px;
}
.logo{
  font-weight:800; font-size:20px; letter-spacing:-0.02em;
  display:flex; align-items:baseline; gap:1px;
  flex-shrink:0; color:var(--text);
  text-transform:uppercase;
}
.logo span{ color:var(--accent); }
.nav-links{
  display:flex; gap:28px; font-size:14px;
  font-weight:400; color:var(--text-muted);
}
.nav-links a:hover{ color:var(--text); }
.nav-cta{ display:flex; align-items:center; gap:8px; flex-shrink:0; }
@media (max-width:900px){ .nav-links{ display:none; } }
@media (max-width:600px){
  .nav{ padding:0 24px; }
  .nav-cta .btn-ghost{ display:none; }
  .nav-cta .btn{ padding:9px 16px; font-size:13px; }
}

/* ---------- Footer ---------- */
footer{
  border-top:0.5px solid var(--border);
  padding:44px 0;
  background:var(--bg);
}
.footer-inner{
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:20px; font-size:13px; color:var(--text-muted);
}
.footer-links{ display:flex; gap:24px; }
.footer-links a:hover{ color:var(--text); }

/* ---------- Page banner ---------- */
.page-banner{
  padding:88px 0 72px;
  border-bottom:0.5px solid var(--border);
  background:var(--bg-white);
  position:relative;
  overflow:hidden;
}
.page-banner h1{
  font-size: clamp(36px, 5.5vw, 64px);
  margin-bottom:16px;
}
.page-banner p{
  color:var(--text-muted); max-width:520px;
  font-size:19px; line-height:1.5;
}

/* ---------- Hero overrides ---------- */
.hero h1 em{ color:var(--accent); font-style:normal; }
.float-card{ box-shadow:0 4px 24px rgba(0,0,0,0.10); }
.fc-1{ background:var(--accent); color:#fff; }
.fc-2{ background:#248a3d; color:#fff; }
.fc-3{ background:#ff9f0a; color:#fff; }
.fc-4{ background:#ff375f; color:#fff; }
.fc-5{ background:#fff; color:var(--text); border:0.5px solid var(--border); }

/* ---------- Steps ---------- */
.step{ border-top:0.5px solid var(--border); padding-top:28px; }
.step .num{ color:var(--accent); }

/* ---------- Include items ---------- */
.include-item{
  background:var(--bg-white); border:0.5px solid var(--border);
  border-radius:var(--radius);
  transition:border-color .2s, transform .2s;
}
.include-item:hover{ border-color:var(--accent); transform:translateY(-3px); }
.include-item .dot{ background:var(--accent); }

/* ---------- Benefits ---------- */
.benefit{ background:var(--bg-white); border:0.5px solid var(--border); }
.benefit .icon{ background:var(--accent-soft); color:var(--accent); }

/* ---------- Plans ---------- */
.plan{
  background:var(--bg-white); border:0.5px solid var(--border);
  border-radius:var(--radius);
  transition:box-shadow .2s;
}
.plan:hover{ box-shadow:0 4px 24px rgba(0,0,0,0.08); }
.plan.featured{
  border:1.5px solid var(--accent);
  transform:translateY(-6px);
  box-shadow:0 8px 40px rgba(0,113,227,0.10);
}
.plan .badge{ background:var(--accent); color:#fff; }
.plan ul li svg{ color:var(--accent); }

/* ---------- FAQ ---------- */
.faq-list{ border-top:0.5px solid var(--border); }
.faq-item{ border-bottom:0.5px solid var(--border); }
.faq-q{ color:var(--text); }
.faq-q:focus-visible{ outline:2px solid var(--accent); }

/* ---------- CTA final ---------- */
.cta-final{ background:var(--bg-white); text-align:center; }

/* ============================
   IMÁGENES DE FONDO EN TARJETAS
   ============================ */
.step{ position:relative; overflow:hidden; }
.step-bg-img{
  position:absolute; inset:0; z-index:0;
  background-size:cover; background-position:center;
  opacity:0.12; border-radius:20px;
  mix-blend-mode:multiply;
}
.step > *:not(.step-bg-img){ position:relative; z-index:1; }

.include-item{ position:relative; overflow:hidden; }
.card-bg-img{
  position:absolute; inset:0; z-index:0;
  background-size:cover; background-position:center;
  opacity:0.10;
  mix-blend-mode:multiply;
}
.include-item > *:not(.card-bg-img){ position:relative; z-index:1; }
.benefit > *:not(.card-bg-img){ position:relative; z-index:1; }

/* ============================
   SELECTOR DE IDIOMA
   ============================ */
.lang-selector{ position:relative; }
.lang-btn{
  display:flex; align-items:center; gap:5px;
  background:none; border:0.5px solid var(--border);
  border-radius:980px; padding:7px 14px;
  font-size:13px; font-weight:600; color:var(--text-muted);
  cursor:pointer; font-family:inherit;
  transition:border-color .2s, color .2s;
}
.lang-btn:hover{ border-color:var(--border-strong); color:var(--text); }
.lang-btn[aria-expanded="true"]{ border-color:var(--accent); color:var(--accent); }
.lang-dropdown{
  display:none; position:absolute; top:calc(100% + 8px); right:0;
  background:var(--bg-white); border:0.5px solid var(--border);
  border-radius:14px; overflow:hidden; min-width:130px;
  box-shadow:0 8px 32px rgba(0,0,0,0.12); z-index:200;
}
.lang-dropdown.open{ display:block; }
.lang-option{
  display:flex; align-items:center; padding:11px 16px;
  font-size:14px; font-weight:500; color:var(--text);
  transition:background .15s;
}
.lang-option:hover{ background:var(--surface-2); }
.lang-option.active{ color:var(--accent); font-weight:700; }

/* ============================
   BANNER PLAZAS COMPLETAS
   ============================ */
.plazas-banner{
  display:none;
  background:#1d1d1f;
  color:#f5f5f7;
  text-align:center;
  padding:14px 24px;
  font-size:14px;
  font-weight:500;
  position:sticky;
  top:52px;
  z-index:99;
  border-bottom:0.5px solid rgba(255,255,255,0.1);
}
.plazas-banner.visible{ display:block; }
.plazas-banner strong{ color:var(--accent); }
.plazas-banner a{ color:var(--accent); text-decoration:underline; margin-left:8px; }

.waitlist-form{
  display:none;
  background:var(--bg-white); border:0.5px solid var(--border);
  border-radius:14px; padding:20px 22px; margin-top:16px;
}
.waitlist-form.visible{ display:block; }
.waitlist-form p{ font-size:13px; color:var(--text-muted); margin-bottom:12px; line-height:1.5; }
.waitlist-row{ display:flex; gap:8px; }
.waitlist-row input{
  flex:1; padding:10px 14px; border-radius:980px;
  border:1px solid var(--border-strong); background:var(--surface-2);
  font-family:inherit; font-size:14px; color:var(--text);
}
.waitlist-row input:focus{ outline:none; border-color:var(--accent); }
.waitlist-success{ display:none; font-size:13px; color:#1a8a40; font-weight:600; margin-top:8px; }
.waitlist-success.visible{ display:block; }

@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; transition:none !important; }
  html{ scroll-behavior:auto; }
}

/* ============================
   SERVICIOS EXTRA PANEL
   ============================ */
.extras-grid{ display:flex; flex-direction:column; gap:40px; max-width:860px; margin:0 auto; }
.extras-cat-label{ font-size:12px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--text-muted); margin-bottom:14px; display:flex; align-items:center; gap:10px; }
.extras-cat-label::after{ content:''; flex:1; height:0.5px; background:var(--border); }
.extras-cards{ display:flex; flex-direction:column; gap:8px; }
.extra-card{ display:flex; align-items:center; gap:16px; background:var(--bg-white); border:0.5px solid var(--border); border-radius:14px; padding:16px 20px; transition:border-color .2s, box-shadow .2s; }
.extra-card:hover{ border-color:var(--accent); box-shadow:0 4px 16px rgba(0,113,227,0.08); }
.extra-icon{ font-size:22px; flex-shrink:0; width:40px; text-align:center; }
.extra-body{ flex:1; min-width:0; }
.extra-name{ font-size:15px; font-weight:600; color:var(--text); margin-bottom:3px; }
.extra-desc{ font-size:13px; color:var(--text-muted); line-height:1.4; }
.extra-price{ font-size:14px; font-weight:600; color:var(--accent); white-space:nowrap; flex-shrink:0; }
@media(max-width:600px){ .extra-card{ flex-wrap:wrap; } .extra-price{ width:100%; padding-left:56px; } }
