/* ==========================================================
   TaxisCastelldefels.es · Stylesheet
   Sistema oficial — SKILL 1 Brand & UI
   ========================================================== */

/* ── FUENTES SELF-HOSTED (Urbanist) ────────────────────── */
@font-face{font-family:'Urbanist';font-style:normal;font-weight:300;font-display:swap;src:url('/assets/fonts/urbanist-300.woff2') format('woff2')}
@font-face{font-family:'Urbanist';font-style:normal;font-weight:400;font-display:swap;src:url('/assets/fonts/urbanist-400.woff2') format('woff2')}
@font-face{font-family:'Urbanist';font-style:normal;font-weight:500;font-display:swap;src:url('/assets/fonts/urbanist-500.woff2') format('woff2')}
@font-face{font-family:'Urbanist';font-style:normal;font-weight:600;font-display:swap;src:url('/assets/fonts/urbanist-600.woff2') format('woff2')}
@font-face{font-family:'Urbanist';font-style:normal;font-weight:700;font-display:swap;src:url('/assets/fonts/urbanist-700.woff2') format('woff2')}
@font-face{font-family:'Urbanist';font-style:normal;font-weight:800;font-display:swap;src:url('/assets/fonts/urbanist-800.woff2') format('woff2')}

/* ----------- 1. RESET & VARIABLES ------------------------- */
:root{
  /* Amarillos */
  --yellow:#F5C518;
  --yellow-dark:#D4A800;
  --yellow-hover:#E6B800;
  --yellow-soft:rgba(245,197,24,0.10);
  --yellow-glow:rgba(245,197,24,0.20);

  /* Oro/champán (acento decorativo) */
  --gold-light:#D4B97E;
  --gold-mid:#C8A96E;
  --gold-dark:#A88A50;
  --gold-mid-rgb:200,169,110;

  /* Fondos oscuros */
  --black:#0A0A0A;
  --dark:#111111;
  --card:#181818;
  --card-hover:#1F1F1F;
  --card-2:#222222;
  --border:rgba(255,255,255,0.07);
  --border-hover:rgba(245,197,24,0.35);

  /* Textos sobre oscuro */
  --white:#FFFFFF;
  --gray-light:#CCCCCC;
  --gray:#888888;
  --gray-dark:#555555;

  /* Estado */
  --green:#22C55E;
  --green-soft:rgba(34,197,94,0.12);
  --red:#EF4444;
  --red-soft:rgba(239,68,68,0.10);

  /* Secciones claras */
  --bg-light:#FFFFFF;
  --bg-light-alt:#F8F9FA;
  --text-on-light:#0A0A0A;
  --text-2-on-light:#555555;
  --border-light:rgba(0,0,0,0.08);
  --shadow-on-light:0 2px 16px rgba(0,0,0,0.07);

  /* Layout */
  --section-y:5rem;
  --section-y-sm:3.5rem;
  --container:1200px;
  --gap:1.5rem;

  /* Radius */
  --radius-xs:4px;
  --radius-sm:6px;
  --radius-md:12px;
  --radius-lg:20px;
  --radius-xl:32px;
  --radius-pill:999px;

  /* Z-index scale */
  --z-fab:70;
  --z-nav:80;
  --z-menu:90;
  --z-sticky:200;
  --z-top:9999;

  /* Escala tipográfica */
  --text-2xs:0.65rem;
  --text-xs:0.75rem;
  --text-sm:0.875rem;
  --text-base:1rem;
  --text-md:1.125rem;
  --text-lg:1.35rem;

  /* Sombras */
  --shadow-sm:0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:0 4px 20px rgba(0,0,0,0.5);
  --shadow-card:0 2px 12px rgba(0,0,0,0.6);
  --shadow-cta:0 4px 24px rgba(245,197,24,0.30);

  /* Transiciones */
  --transition:all 0.2s ease;
  --transition-slow:all 0.35s ease;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;overflow-x:hidden}
body{
  font-family:'Urbanist',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  font-weight:400;
  font-size:var(--text-base);
  line-height:1.65;
  color:var(--white);
  background:var(--black);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img,svg,video{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:none;cursor:pointer}
ul,ol{list-style:none;padding:0;margin:0}

:focus-visible{
  outline:2px solid var(--yellow);
  outline-offset:3px;
  border-radius:var(--radius-xs);
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:0.01ms!important;animation-iteration-count:1!important;transition-duration:0.01ms!important;scroll-behavior:auto!important}
}

/* ── Scroll reveal universal ──────────────────────────────────── */
.will-reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .65s ease, transform .65s cubic-bezier(.22,1,.36,1);
}
.will-reveal.is-revealed{
  opacity:1;
  transform:none;
}
/* Stagger: cada hijo sucesivo espera 80 ms más */
.will-reveal[data-reveal-i="1"]{transition-delay:.08s}
.will-reveal[data-reveal-i="2"]{transition-delay:.16s}
.will-reveal[data-reveal-i="3"]{transition-delay:.24s}
.will-reveal[data-reveal-i="4"]{transition-delay:.32s}
.will-reveal[data-reveal-i="5"]{transition-delay:.40s}
.will-reveal[data-reveal-i="6"]{transition-delay:.48s}
@media (prefers-reduced-motion:reduce){
  .will-reveal{opacity:1;transform:none;transition:none}
}

/* Skip link */
.skip-link{
  position:absolute;left:-9999px;top:1rem;z-index:var(--z-top);
  background:var(--yellow);color:var(--black);font-weight:700;
  padding:.75rem 1.25rem;border-radius:var(--radius-pill);
}
.skip-link:focus{left:1rem}

/* ----------- 2. LAYOUT BASE ------------------------------- */
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 1.5rem;
}
.section{padding:var(--section-y) 0}
.section--dark{background:var(--dark)}
.section--black{background:var(--black)}
.section--light{background:var(--bg-light);color:var(--text-on-light)}
.section--light-alt{background:var(--bg-light-alt);color:var(--text-on-light)}

.section-head{
  display:flex;flex-direction:column;gap:.75rem;
  margin-bottom:3rem;max-width:780px;
}
.section-head.center{text-align:center;margin-left:auto;margin-right:auto;align-items:center}
.eyebrow{
  font-size:var(--text-xs);font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:var(--yellow);
  display:inline-flex;align-items:center;gap:.6rem;
}
.section--light .eyebrow{color:var(--yellow-dark)}
.eyebrow::before{
  content:"";width:24px;height:1px;background:currentColor;display:inline-block;
}

.h-display{
  font-size:clamp(2rem,5vw,3.5rem);
  font-weight:800;line-height:1.1;letter-spacing:-.02em;
}
.h-section{
  font-size:clamp(1.5rem,3.5vw,2.25rem);
  font-weight:700;line-height:1.2;letter-spacing:-.015em;
}

.lead{
  font-size:clamp(1rem,1.6vw,1.125rem);
  color:var(--gray-light);max-width:62ch;
}
.section--light .lead,.section--light-alt .lead{color:var(--text-2-on-light)}

.grid{display:grid;gap:var(--gap)}
.grid--2{grid-template-columns:repeat(2,1fr)}
.grid--3{grid-template-columns:repeat(3,1fr)}
.grid--4{grid-template-columns:repeat(4,1fr)}
.grid--auto{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}

@media (max-width:900px){
  .grid--3,.grid--4{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:600px){
  .grid--2,.grid--3,.grid--4{grid-template-columns:1fr}
  :root{--section-y:var(--section-y-sm)}
}

/* ----------- 3. BUTTONS ----------------------------------- */
/* .btn — clase base compartida (aeropuerto, empresas y otras páginas de sección) */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.875rem 2rem;
  font-family:'Urbanist',sans-serif;
  font-weight:800;font-size:var(--text-base);
  border-radius:var(--radius-pill);
  border:none;cursor:pointer;
  text-decoration:none;white-space:nowrap;
  transition:var(--transition);
}
.btn-primary,.btn-secondary,.btn-ghost{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  padding:.875rem 1.75rem;
  font-weight:800;font-size:var(--text-base);line-height:1;
  border-radius:var(--radius-pill);
  border:1px solid transparent;
  transition:var(--transition);
  text-decoration:none;cursor:pointer;white-space:nowrap;
  min-height:48px;
}
.btn-primary{
  background:var(--yellow);color:var(--black);
  box-shadow:var(--shadow-cta);
}
.btn-primary:hover{
  background:var(--yellow-dark);
  transform:translateY(-1px);
  box-shadow:0 6px 28px rgba(245,197,24,.40);
}
.btn-secondary{
  background:transparent;color:var(--white);font-weight:600;
  border:1px solid rgba(255,255,255,.25);
}
.btn-secondary:hover{
  background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.45);
}
.section--light .btn-secondary{
  color:var(--text-on-light);border-color:rgba(0,0,0,.18);
}
.section--light .btn-secondary:hover{
  background:rgba(0,0,0,.05);border-color:rgba(0,0,0,.4);
}
.btn-ghost{
  background:transparent;color:var(--white);font-weight:600;
  padding:.55rem 1rem;min-height:auto;
}
.btn-ghost:hover{color:var(--yellow)}
.btn-sm{padding:.6rem 1.25rem;font-size:var(--text-sm);min-height:40px}
.btn-lg{padding:1.05rem 2.4rem;font-size:1.05rem}
.btn-full{width:100%}

.btn-primary svg,.btn-secondary svg{width:18px;height:18px}

/* ----------- 4. HEADER ------------------------------------ */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:var(--z-nav);
  background:#0A0A0A;
  border-bottom:1px solid var(--border);
  transition:padding .3s ease;
}
.site-header.is-scrolled{
  background:#0A0A0A;
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem;
  padding:.85rem 0;
}
.brand{display:flex;align-items:center;gap:.75rem;flex-shrink:0}
.brand svg,.brand img{height:46px;width:auto}
.brand-text{display:block;font-size:var(--text-base);font-weight:800;letter-spacing:-.02em;color:var(--white)}
.brand-text em{font-style:normal;color:var(--yellow)}
/* Nav: ocultar botón Reservar en móvil/tablet */
.header-actions .btn-primary{display:none}
.nav-main{display:none}
.nav-main ul{display:flex;align-items:center;gap:1.75rem}
.nav-main a{
  font-size:.95rem;font-weight:500;color:var(--gray-light);
  transition:color .2s;
  position:relative;padding:.4rem 0;
}
.nav-main a:hover,.nav-main a[aria-current]{color:var(--white)}
.nav-main a[aria-current]::after{
  content:"";position:absolute;bottom:0;left:0;right:0;height:2px;
  background:var(--yellow);border-radius:var(--radius-xs);
}
.header-actions{display:flex;align-items:center;gap:.5rem}
.tel-link{
  display:none;align-items:center;gap:.5rem;
  font-weight:700;color:var(--white);
  padding:.5rem .9rem;border-radius:var(--radius-pill);
}
.tel-link:hover{color:var(--yellow)}
.tel-link svg{width:18px;height:18px;color:var(--yellow)}
.menu-toggle{
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:50%;
  border:1px solid var(--border);background:transparent;
  color:var(--white);
}
.menu-toggle:hover{border-color:var(--border-hover)}
.menu-toggle svg{width:22px;height:22px}

@media (min-width:768px){
  .brand-text{font-size:1.1rem}
}
@media (min-width:1024px){
  .nav-main{display:block}
  .tel-link{display:inline-flex}
  .menu-toggle{display:none}
  /* Restaurar botón Reservar en desktop */
  .header-actions .btn-primary{display:inline-flex}
}

/* Mobile menu — app-style, pantalla completa */
.mobile-menu{
  position:fixed;top:0;left:0;right:0;z-index:var(--z-menu);
  height:100vh;height:100dvh;
  display:flex;flex-direction:column;justify-content:flex-end;
  visibility:hidden;
  transition:visibility 0s linear .36s;
}
.mobile-menu.is-open{
  visibility:visible;
  transition:visibility 0s linear 0s;
}

/* Backdrop */
.mm-backdrop{
  position:absolute;inset:0;
  background:rgba(6,6,6,.62);
  -webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);
  opacity:0;
  transition:opacity .3s ease;
}
.mobile-menu.is-open .mm-backdrop{opacity:1}

/* Sliding panel — pantalla completa */
.mm-panel{
  position:relative;
  display:flex;flex-direction:column;
  width:100%;
  height:100vh;height:100dvh;
  background:var(--dark);
  padding:calc(.35rem + env(safe-area-inset-top,0px)) 1.15rem
          calc(1rem + env(safe-area-inset-bottom,0px));
  transform:translateY(100%);
  transition:transform .36s cubic-bezier(.32,.72,.24,1);
  will-change:transform;
}
.mobile-menu.is-open .mm-panel{transform:translateY(0)}
.mm-panel.is-dragging{transition:none}

/* Drag handle */
.mm-handle{
  flex-shrink:0;
  display:flex;justify-content:center;
  padding:.55rem 0 .3rem;
  touch-action:none;cursor:grab;
}
.mm-handle span{
  width:38px;height:4px;border-radius:var(--radius-pill);
  background:rgba(255,255,255,.22);
}

/* Head */
.mm-head{
  flex-shrink:0;
  display:flex;align-items:center;justify-content:space-between;
  padding:.1rem 0 .55rem;
}
.mm-head .brand img{height:46px}
.mm-close{width:42px;height:42px}

/* Logo icon decorativo — entre nav y CTA */
.mm-logo-icon{
  flex-shrink:0;
  display:flex;justify-content:center;align-items:center;
  padding:.2rem 0 .45rem;
  margin-top:-8px;
}
.mm-logo-icon img{
  height:78px;width:auto;
  opacity:.9;
  filter:drop-shadow(0 4px 16px rgba(245,197,24,.35));
}

/* Nav list */
.mm-nav{
  list-style:none;margin:0;padding:.2rem 0;
  display:flex;flex-direction:column;gap:.1rem;
  flex:1 1 auto;min-height:0;
  overflow-y:auto;-webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
}
.mm-link{
  position:relative;overflow:hidden;
  display:flex;align-items:center;
  min-height:52px;padding:0 .85rem;
  border-radius:var(--radius-md);
  font-size:1.13rem;font-weight:500;
  color:var(--gray-light);
  -webkit-tap-highlight-color:transparent;
  transition:color .15s ease,background-color .15s ease;
}
.mm-link:active{background:rgba(255,255,255,.05)}
.mm-link.is-active{
  font-weight:700;color:var(--white);
  background:linear-gradient(90deg,rgba(245,197,24,.16) 0%,rgba(245,197,24,0) 78%);
}
.mm-link.is-active::before{
  content:"";position:absolute;left:0;top:50%;
  transform:translateY(-50%);
  width:3px;height:24px;border-radius:0 3px 3px 0;
  background:var(--yellow);
}

/* Tap ripple */
.mm-ripple{
  position:absolute;border-radius:50%;
  background:rgba(245,197,24,.30);
  transform:scale(0);opacity:.55;
  pointer-events:none;
  animation:mmRipple .55s ease-out forwards;
}
@keyframes mmRipple{
  to{transform:scale(2.4);opacity:0}
}

/* CTA footer */
.mm-cta{
  flex-shrink:0;
  display:flex;flex-direction:column;gap:.55rem;
  padding-top:.8rem;margin-top:.3rem;
  border-top:1px solid var(--border);
}
.mm-call{position:relative;isolation:isolate}
.mm-call::after{
  content:"";position:absolute;inset:0;z-index:-1;
  border-radius:inherit;background:var(--yellow);
  animation:mmPulse 2.8s ease-out infinite;
}
@keyframes mmPulse{
  0%{transform:scale(1);opacity:.45}
  70%{transform:scale(1.12);opacity:0}
  100%{transform:scale(1.12);opacity:0}
}

body.menu-open{overflow:hidden}

/* Pantallas muy cortas (iPhone SE, Android compactos) */
@media (max-height:680px){
  .mm-logo-icon img{height:48px}
  .mm-logo-icon{padding:.1rem 0 .3rem;margin-top:-4px}
  .mm-link{min-height:44px}
}

@media (prefers-reduced-motion:reduce){
  .mm-panel,.mm-backdrop,.mobile-menu{transition-duration:.01ms}
  .mm-ripple{display:none}
  .mm-call::after{animation:none}
}

/* Spacer to prevent layout shift under fixed header */
.header-spacer{height:78px}

/* ----------- 5. HERO -------------------------------------- */
.hero{
  position:relative;overflow:hidden;
  background:var(--black);
  padding:3.5rem 0 4rem;
}
.hero::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(245,197,24,.10), transparent 70%),
    radial-gradient(40% 35% at 5% 100%, rgba(245,197,24,.06), transparent 70%);
  pointer-events:none;
}
.hero-inner{
  position:relative;z-index:1;
  display:grid;gap:3rem;align-items:center;
}
@media (min-width:1024px){
  .hero{
    padding:5.5rem 0 6rem;
    min-height:90vh;
    background-image:url('/assets/img/flota-mar.webp');
    background-size:cover;
    background-position:center 35%;
  }
  .hero::before{
    background:linear-gradient(100deg,rgba(10,10,10,.93) 25%,rgba(10,10,10,.55) 55%,rgba(10,10,10,.10) 100%);
  }
  .hero-inner{grid-template-columns:1fr}
  .hero-visual{display:none}
  .hero-copy{max-width:54ch}
}
.hero-availability{
  display:inline-flex;align-items:center;gap:.6rem;
  background:var(--green-soft);
  color:var(--green);
  font-size:.8rem;font-weight:700;letter-spacing:.05em;
  padding:.45rem .9rem;border-radius:var(--radius-pill);
  border:1px solid rgba(34,197,94,.25);
  margin-bottom:1.25rem;
}
.dot-pulse{
  width:8px;height:8px;border-radius:50%;background:var(--green);
  box-shadow:0 0 0 0 rgba(34,197,94,.6);
  animation:pulse 2s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,.6)}
  70%{box-shadow:0 0 0 10px rgba(34,197,94,0)}
  100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}
}
.hero-title{
  font-size:clamp(2.5rem,7.5vw,5rem);
  font-weight:800;line-height:1.02;letter-spacing:-.03em;
  margin-bottom:1.25rem;
}
.hero-title .accent{color:var(--yellow)}
.hero-title .small{
  display:block;font-size:.55em;font-weight:600;color:var(--gray-light);
  letter-spacing:-.01em;margin-top:.4rem;line-height:1.2;
}
.hero-sub{
  font-size:clamp(1rem,1.7vw,1.2rem);
  color:var(--gray-light);max-width:54ch;margin-bottom:2rem;
}
.hero-ctas{display:flex;flex-wrap:wrap;gap:.75rem;margin-bottom:1.75rem}
.hero-pills{
  display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:2rem;
}
.pill{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.78rem;font-weight:600;color:var(--gray-light);
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  padding:.4rem .85rem;border-radius:var(--radius-pill);
}
.pill svg{width:14px;height:14px;color:var(--yellow)}
.hero-trust{
  display:flex;align-items:center;gap:1rem;flex-wrap:wrap;
  padding-top:1.5rem;border-top:1px solid var(--border);
  color:var(--gray-light);font-size:.9rem;
}
.stars{display:flex;gap:2px}
.stars svg{width:16px;height:16px;color:var(--yellow);fill:var(--yellow)}
.trust-divider{width:1px;height:24px;background:var(--border)}

/* Hero visual */
.hero-visual{position:relative}
.hero-photo{
  position:relative;
  border-radius:var(--radius-xl);
  overflow:hidden;
  background:var(--card);
  aspect-ratio:4/5;
  box-shadow:0 30px 60px -20px rgba(0,0,0,.7);
}
.hero-photo img{
  width:100%;height:100%;object-fit:cover;
}
.hero-photo-fallback{
  display:flex;align-items:center;justify-content:center;
  width:100%;height:100%;
  background:linear-gradient(135deg,#1a1a1a,#0a0a0a);
  color:var(--gray-dark);font-size:.85rem;text-align:center;padding:2rem;
}
.hero-photo::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 55%,rgba(10,10,10,.55) 100%);
  pointer-events:none;
}
.hero-badge{
  position:absolute;left:1rem;bottom:.75rem;right:1rem;
  display:flex;justify-content:space-between;align-items:flex-end;gap:1rem;
}
.hero-badge-card{
  background:rgba(10,10,10,.7);
  backdrop-filter:blur(10px);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:.75rem 1rem;
  font-size:.85rem;color:var(--gray-light);
}
.hero-badge-card strong{
  display:block;color:var(--white);font-size:var(--text-base);font-weight:700;
}

/* Tablet: centrar badges, no tan pegados a los bordes */
@media (max-width:900px) and (min-width:601px){
  .hero-badge{
    left:2rem;right:2rem;
    justify-content:center;
    gap:1.25rem;
  }
}

/* Móvil: imagen completa sin recorte + badges debajo */
@media (max-width:600px){
  .hero-photo{
    overflow:hidden;
    aspect-ratio:unset;   /* elimina el recorte portrait 4/5 */
  }
  .hero-photo img{
    height:auto;          /* la imagen dicta su propia altura */
    object-fit:unset;     /* sin cropping */
  }
  .hero-badge{
    position:static;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:.5rem;
    margin-top:.65rem;
  }
  .hero-badge-card{
    text-align:center;
    padding:.6rem .75rem;
    font-size:.78rem;
  }
  .hero-badge-card strong{
    font-size:.88rem;
  }
}

/* Decorative chip */
.hero-floating{
  position:absolute;top:-18px;right:-12px;
  background:linear-gradient(140deg,#FFD93D 0%,#F5B800 100%);
  color:var(--black);
  padding:.62rem 1.3rem .62rem 1.05rem;
  border-radius:var(--radius-pill);
  font-weight:800;font-size:.88rem;letter-spacing:.015em;
  box-shadow:0 6px 22px rgba(245,184,0,.45),0 2px 8px rgba(0,0,0,.22);
  transform:rotate(-3deg);
  display:inline-flex;align-items:center;gap:.4rem;
  border:1.5px solid rgba(255,255,255,.5);
  white-space:nowrap;
  transition:transform .2s ease,box-shadow .2s ease;
}
.hero-floating:hover{
  transform:rotate(-1deg) scale(1.04);
  box-shadow:0 10px 30px rgba(245,184,0,.55),0 3px 10px rgba(0,0,0,.2);
}

/* ----------- 6. STATS BAR --------------------------------- */
.stats{
  background:var(--dark);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:1.4rem 0;
}
.stats-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:2rem 1rem;
  text-align:center;
}
@media (min-width:768px){
  .stats-grid{grid-template-columns:repeat(4,1fr)}
}
.stat-num{
  font-size:clamp(2rem,4vw,2.75rem);
  font-weight:800;line-height:1;color:var(--yellow);letter-spacing:-.02em;
}
.stat-label{
  font-size:.82rem;font-weight:600;letter-spacing:.08em;
  text-transform:uppercase;color:var(--gray);margin-top:.5rem;
}

/* ----------- 7. SERVICES — Feature + Strip ---------------- */

/* Cabecera sección partida */
.section-head--split{
  display:grid;grid-template-columns:1fr 1fr;
  gap:2rem;align-items:end;max-width:100%;
}
.section-head--split>div{display:flex;flex-direction:column;gap:.75rem}
.section-head--split .lead{margin:0;max-width:44ch}
@media(max-width:768px){
  .section-head--split{grid-template-columns:1fr;gap:1rem}
  .section-head--split .lead{max-width:100%}
}

/* Tarjeta featured aeropuerto */
.serv-feat{
  background:rgba(14,14,18,0.88);
  border-radius:var(--radius-xl);
  border:1px solid rgba(255,255,255,0.07);
  box-shadow:0 8px 40px rgba(0,0,0,0.32);
  padding:2.5rem 3rem;
  display:grid;grid-template-columns:1fr auto;
  align-items:center;gap:3rem;
  margin-bottom:1rem;
  position:relative;overflow:hidden;
}
.serv-feat-badge{
  font-size:.6rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase;
  background:var(--yellow);color:var(--black);
  padding:.28rem .75rem;border-radius:var(--radius-pill);
  display:inline-flex;align-items:center;gap:.35rem;
  margin-bottom:.9rem;
}
.serv-feat-badge::before{
  content:'';display:block;width:6px;height:6px;
  background:var(--black);border-radius:50%;flex-shrink:0;
}
.serv-feat-route{
  font-size:clamp(1.2rem,2.2vw,1.7rem);
  font-weight:800;color:var(--white);
  letter-spacing:-.025em;line-height:1.2;
  display:flex;align-items:center;gap:.65rem;
  margin-bottom:.75rem;flex-wrap:wrap;
}
.serv-feat-route svg{color:var(--yellow);flex-shrink:0}
.serv-feat-desc{
  font-size:.88rem;color:rgba(255,255,255,0.62);
  line-height:1.65;max-width:46ch;margin-bottom:1.25rem;
}
.serv-feat-tags{
  display:flex;gap:.4rem;flex-wrap:wrap;list-style:none;
}
.serv-feat-tags li{
  font-size:.66rem;font-weight:600;color:rgba(255,255,255,0.6);
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.1);
  padding:.2rem .6rem;border-radius:var(--radius-pill);
}
.serv-feat-aside{
  display:flex;flex-direction:column;
  align-items:flex-end;gap:1.25rem;
}
.serv-feat-n{
  font-size:5.5rem;font-weight:800;
  color:rgba(245,197,24,.07);
  letter-spacing:-.04em;line-height:1;display:block;
}
.serv-feat-cta{
  display:inline-flex;align-items:center;gap:.5rem;
  background:var(--yellow);color:var(--black);
  font-size:.88rem;font-weight:800;
  padding:.8rem 1.5rem;border-radius:var(--radius-md);
  text-decoration:none;white-space:nowrap;
  transition:background .18s ease,transform .15s ease;
}
.serv-feat-cta:hover{background:var(--yellow-dark);transform:translateY(-1px)}
@media(max-width:900px){
  .serv-feat{grid-template-columns:1fr;padding:2rem 1.75rem;gap:1.5rem}
  .serv-feat-aside{flex-direction:row;align-items:center;justify-content:space-between}
  .serv-feat-n{font-size:3.5rem}
}
@media(max-width:480px){
  .serv-feat{padding:1.75rem 1.25rem}
  .serv-feat-route{font-size:1.1rem}
}

/* Strip 5 servicios — Variante híbrida C+A (noir · número XL · icono con fondo · línea dorada) */
.serv-strip{
  display:grid;grid-template-columns:repeat(5,1fr);
  gap:.75rem;
}
.serv-strip-item{
  position:relative;overflow:hidden;
  padding:1.5rem 1.25rem 1.35rem;
  display:flex;flex-direction:column;gap:.45rem;
  background:#111;
  border:1px solid rgba(255,255,255,0.07);
  border-radius:var(--radius-lg);
  transition:border-color .2s ease,transform .2s ease;
  /* Efecto 4: estado inicial para animación de entrada */
  opacity:0;
  transform:translateY(16px);
}
/* Efecto 4: clase que activa la entrada */
.serv-strip-item.is-visible{
  animation:stripFadeUp .45s ease forwards;
}
@keyframes stripFadeUp{
  to{opacity:1;transform:translateY(0)}
}
/* Efecto 4: respeta preferencia de movimiento reducido */
@media(prefers-reduced-motion:reduce){
  .serv-strip-item{opacity:1;transform:none}
  .serv-strip-item.is-visible{animation:none}
}
.serv-strip-item:hover{
  border-color:rgba(var(--gold-mid-rgb),.3);
  transform:translateY(-2px);
}
/* Efecto 2: línea de acento superior que crece desde el centro */
.serv-strip-item::before{
  content:'';
  position:absolute;top:0;left:50%;
  width:100%;height:2px;
  background:linear-gradient(90deg,transparent,var(--gold-mid),transparent);
  transform:translateX(-50%) scaleX(0);
  transform-origin:center;
  transition:transform .3s ease;
  border-radius:var(--radius-xs) 2px 0 0;
}
.serv-strip-item:hover::before{
  transform:translateX(-50%) scaleX(1);
}
/* Número XL decorativo de fondo */
.serv-strip-item::after{
  content:attr(data-n);
  position:absolute;bottom:2px;right:8px;
  font-size:4.5rem;font-weight:700;line-height:1;
  color:rgba(var(--gold-mid-rgb),.09);
  font-variant-numeric:tabular-nums;
  pointer-events:none;letter-spacing:-.04em;
}
/* Número pill pequeño */
.serv-strip-n{
  display:inline-block;
  font-size:.6rem;font-weight:700;
  letter-spacing:.08em;
  color:var(--gold-dark);
  background:rgba(var(--gold-mid-rgb),.12);
  padding:.2rem .55rem;border-radius:var(--radius-pill);
  width:fit-content;
}
/* Icono con fondo traslúcido dorado */
.serv-strip-ico{
  display:inline-flex;align-items:center;justify-content:center;
  width:34px;height:34px;border-radius:var(--radius-sm);
  background:rgba(var(--gold-mid-rgb),.1);
  color:var(--gold-mid);
  margin:.2rem 0 0;flex-shrink:0;
}
.serv-strip-ico svg{width:17px;height:17px}
/* Línea dorada separadora — Efecto 6: expand on hover */
.serv-strip-line{
  display:block;width:22px;height:2px;
  background:var(--gold-mid);border-radius:var(--radius-xs);
  margin:.35rem 0;
  transition:width .25s ease;
}
.serv-strip-item:hover .serv-strip-line{
  width:40px;
}
/* Label de categoría */
.serv-strip-cat{
  font-size:.6rem;font-weight:600;
  letter-spacing:.07em;
  color:rgba(var(--gold-mid-rgb),.55);
  font-variant:all-small-caps;
}
.serv-strip-title{
  font-size:var(--text-sm);font-weight:700;
  color:rgba(255,255,255,.92);line-height:1.25;
  letter-spacing:-.01em;margin:0;
}
.serv-strip-desc{
  font-size:.72rem;color:rgba(255,255,255,.42);
  line-height:1.6;flex:1;margin:0;
}
.serv-strip-cta{
  display:inline-flex;align-items:center;gap:.3rem;
  font-size:.72rem;font-weight:700;
  color:var(--gold-mid);text-decoration:none;
  margin-top:.3rem;
}
.serv-strip-cta:hover{color:var(--gold-light);text-decoration:underline}
@media(max-width:900px){
  .serv-strip{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:480px){
  .serv-strip{grid-template-columns:1fr}
}

/* ----------- 8. AIRPORT BANNER ---------------------------- */
.banner-airport{
  position:relative;overflow:hidden;
  background:var(--dark);
  border-radius:var(--radius-xl);
  padding:2.5rem 1.75rem;
  display:grid;gap:2rem;align-items:center;
  border:1px solid var(--border);
}
.banner-airport::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(60% 80% at 100% 50%, rgba(245,197,24,.10), transparent 70%);
  pointer-events:none;
}
@media (min-width:900px){
  .banner-airport{
    grid-template-columns:1.3fr .8fr;
    padding:3.5rem 3rem;gap:3rem;
  }
}
.banner-content{position:relative;z-index:1}
.banner-title{
  font-size:clamp(1.6rem,3.5vw,2.5rem);
  font-weight:800;letter-spacing:-.02em;line-height:1.1;
  margin-bottom:1rem;
}
.banner-title .yellow{color:var(--yellow)}
.banner-text{color:var(--gray-light);margin-bottom:1.5rem;max-width:54ch}
.banner-checks{
  display:flex;flex-wrap:wrap;gap:.6rem;margin-bottom:1.75rem;
}
.check{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.85rem;font-weight:600;
  color:var(--white);
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  padding:.45rem .85rem;border-radius:var(--radius-pill);
}
.check svg{width:14px;height:14px;color:var(--yellow)}
.banner-actions{display:flex;flex-wrap:wrap;gap:.75rem}

.banner-visual{
  position:relative;z-index:1;
  display:flex;justify-content:center;
}
.terminal-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:1.5rem;
  width:100%;max-width:340px;
}
@media (max-width:900px){
  .terminal-card{max-width:100%;padding:1.75rem}
}
.terminal-card h3{
  font-size:.78rem;font-weight:700;letter-spacing:.12em;
  text-transform:uppercase;color:var(--gray);margin-bottom:1rem;
}
.terminal-list{display:flex;flex-direction:column;gap:0}
.terminal-row{
  display:grid;grid-template-columns:1fr 88px;
  align-items:center;gap:.75rem;
  padding:.85rem 0;border-bottom:1px solid var(--border);
}
.terminal-row:last-child{border-bottom:none}
.terminal-row b{font-weight:700;color:var(--white);line-height:1.3}
.terminal-row span{
  font-size:.85rem;color:var(--gray-light);
  display:flex;align-items:center;gap:.4rem;
  white-space:nowrap;flex-shrink:0;
}
.terminal-row span svg{width:14px;height:14px;color:var(--yellow)}
.terminal-note{
  margin-top:1rem;padding-top:1rem;
  border-top:1px solid var(--border);
  font-size:.78rem;color:var(--gray);line-height:1.5;
}

/* ----------- 9. COVERAGE ---------------------------------- */
.coverage-figure{
  position:relative;
  margin-bottom:2rem;
}
/* Bracket — ángulo amarillo esquina superior izquierda */
.coverage-figure::before{
  content:'';
  position:absolute;
  top:0;left:0;
  width:48px;height:48px;
  border-top:4px solid var(--yellow);
  border-left:4px solid var(--yellow);
  border-radius:var(--radius-xl) 3px 0 3px;
  z-index:2;
  pointer-events:none;
}
.coverage-img-wrap{
  position:relative;
  border-radius:var(--radius-xl);overflow:hidden;
  aspect-ratio:21/9;
  box-shadow:0 20px 40px -15px rgba(0,0,0,.22);
  background:#dde;
}
.coverage-img-wrap img{width:100%;height:100%;object-fit:cover}
.coverage-caption{
  position:absolute;left:1.25rem;bottom:1.25rem;z-index:3;
  background:rgba(10,10,10,.80);
  backdrop-filter:blur(10px);color:var(--white);
  border-radius:var(--radius-md);
  padding:.55rem 1rem;font-size:.82rem;
}
.coverage-caption strong{display:block;color:var(--yellow);font-weight:700}
.coverage-zones-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.75rem;
  list-style:none;padding:0;margin:0;
}
@media (max-width:768px){
  .coverage-img-wrap{aspect-ratio:16/9}
  .coverage-zones-grid{grid-template-columns:1fr}
}
@media (max-width:600px){
  /* Imagen + caption forman una tarjeta unificada */
  .coverage-figure{
    box-shadow:0 12px 32px -10px rgba(0,0,0,.18);
    border-radius:var(--radius-xl);
    overflow:hidden;
  }
  .coverage-img-wrap{
    aspect-ratio:unset;
    border-radius:0;
    box-shadow:none;
  }
  .coverage-img-wrap img{height:auto;object-fit:unset}
  .coverage-caption{
    position:static;
    background:var(--dark);
    backdrop-filter:none;
    border-radius:0;
    border-left:none;
    padding:.8rem 1.1rem;
    margin-top:0;
    font-size:.83rem;
    color:var(--gray-light);
  }
  .coverage-caption strong{
    font-size:.9rem;
    margin-bottom:.15rem;
  }
}
.zone{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:1rem 1.25rem;
  background:var(--white);
  border:1px solid var(--border-light);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-on-light);
  transition:var(--transition);
}
.zone:hover{
  border-color:rgba(245,197,24,.5);
  transform:translateX(4px);
}
.zone-name{
  display:flex;align-items:center;gap:.85rem;
  font-weight:700;font-size:var(--text-base);color:var(--text-on-light);
  line-height:1.35;
}
.zone-name svg{width:18px;height:18px;flex-shrink:0;color:var(--yellow-dark)}
.zone-eta{
  font-size:.8rem;font-weight:600;flex-shrink:0;
  background:var(--yellow-soft);color:var(--yellow-dark);
  padding:.3rem .7rem;border-radius:var(--radius-pill);
  white-space:nowrap;
}

/* ----------- 10. WHY US ----------------------------------- */
.why-grid{
  display:grid;gap:2rem;
}
@media (min-width:900px){
  .why-grid{grid-template-columns:.85fr 1.15fr;gap:3.5rem;align-items:center}
}
/* ── Efecto D: imagen con bloque amarillo offset (reutilizable) ── */
.img-frame-d{
  position:relative;
  padding-bottom:16px;padding-right:16px;
}
.img-frame-d::after{
  content:'';
  position:absolute;
  bottom:0;right:0;
  width:76%;height:50%;
  background:var(--yellow);
  border-radius:var(--radius-md);
  z-index:0;
}
.img-frame-d>picture,
.img-frame-d>img,
.img-frame-d>div{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
}

.why-visual-frame{
  position:relative;
  padding-bottom:18px;padding-right:18px;
}
.why-visual-frame::after{
  content:'';
  position:absolute;
  bottom:0;right:0;
  width:76%;height:50%;
  background:var(--yellow);
  border-radius:var(--radius-md);
  z-index:0;
}
.why-visual{
  position:relative;z-index:1;
  border-radius:var(--radius-xl);overflow:hidden;
  aspect-ratio:4/5;background:var(--card);
}
.why-visual img{width:100%;height:100%;object-fit:cover}
.why-visual-fallback{
  display:flex;align-items:center;justify-content:center;
  width:100%;height:100%;
  background:linear-gradient(135deg,#1a1a1a,#0a0a0a);
  color:var(--gray-dark);font-size:.85rem;text-align:center;padding:2rem;
}
.why-list{display:flex;flex-direction:column;gap:1.5rem}
.why-item{
  display:flex;gap:1.25rem;align-items:flex-start;
}
.why-num{
  flex-shrink:0;
  width:46px;height:46px;border-radius:50%;
  background:var(--yellow);color:var(--black);
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:1.1rem;
}
.why-item h3{
  font-size:1.15rem;font-weight:700;margin-bottom:.35rem;
}
.why-item p{
  color:var(--gray-light);font-size:.95rem;line-height:1.55;
}
@media (max-width:600px){
  /* ── Efecto D: imagen con bloque amarillo offset (reutilizable) ── */
.img-frame-d{
  position:relative;
  padding-bottom:16px;padding-right:16px;
}
.img-frame-d::after{
  content:'';
  position:absolute;
  bottom:0;right:0;
  width:76%;height:50%;
  background:var(--yellow);
  border-radius:var(--radius-md);
  z-index:0;
}
.img-frame-d>picture,
.img-frame-d>img,
.img-frame-d>div{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
}

.why-visual-frame{padding-bottom:12px;padding-right:12px;}
  .why-visual-frame::after{width:65%;height:42%;}
  .why-visual{aspect-ratio:unset}
  .why-visual img{height:auto;object-fit:unset}
}

/* ----------- 11. TESTIMONIALS ----------------------------- */
/* Reseña plana destacada — ocupa las 2 columnas derechas del grid */
/* Left edge = inicio col 2 = (100% - 2*gap) / 3 + gap           */
.review-featured-wrap{
  display:flex;
  justify-content:flex-end;
  margin-bottom:2rem;
  margin-top:.5rem;
}
.review-featured{
  /* Ancho = 2 columnas + 1 gap (espejo del reviews-summary) */
  width:calc((100% - 3rem) * 2/3 + 1.5rem);
  border-left:3px solid var(--yellow);
  padding-left:1.25rem;
  display:flex;flex-direction:column;gap:.5rem;
}
.review-featured .review-stars svg{width:13px;height:13px;color:var(--yellow);fill:var(--yellow)}
.review-featured-quote{
  font-size:.97rem;
  font-style:italic;
  line-height:1.55;
  color:var(--text-on-light);
}
.review-featured-quote::before{
  content:"\201C";
  color:var(--yellow-dark);
  font-size:1.3rem;
  line-height:0;vertical-align:-.18em;
  margin-right:.08rem;font-style:normal;
}
.review-featured-foot{
  display:flex;align-items:center;gap:.6rem;
}
/* Foto real en avatar de reseña destacada */
.review-featured-photo{
  width:44px;height:44px;border-radius:50%;flex-shrink:0;
  object-fit:cover;object-position:center top;
  border:2px solid var(--yellow);
  display:block;
}
.review-featured-foot .review-avatar{
  width:30px;height:30px;border-radius:50%;flex-shrink:0;
  background:var(--yellow);color:var(--black);
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:.68rem;
}
.review-featured-author{
  display:block;font-weight:700;font-size:.85rem;
  color:var(--text-on-light);font-style:normal;
}
.review-featured-meta{
  display:block;font-size:.74rem;color:var(--text-2-on-light);
}
@media(max-width:768px){
  .review-featured-wrap{justify-content:stretch}
  .review-featured{width:100%}
}

/* Bloque foto-testimonio */
/* ── Testimonio destacado: imagen grande izquierda + reseña ── */
.review-photo-block{
  display:grid;
  grid-template-columns:300px 1fr;
  align-items:stretch;
  background:var(--white);
  border:1px solid var(--border-light);
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow-on-light);
  margin-bottom:2rem;
}
.review-photo-img{
  overflow:hidden;
  min-height:340px;
}
.review-photo-img img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
}
.review-photo-content{
  padding:2rem 2rem 2rem 2rem;
  display:flex;flex-direction:column;gap:1rem;
  justify-content:center;
}
.review-photo-badge{
  display:inline-block;
  font-size:.62rem;font-weight:700;letter-spacing:.09em;text-transform:uppercase;
  color:var(--yellow-dark);
  background:rgba(212,168,0,.1);
  padding:.25rem .75rem;border-radius:var(--radius-pill);
  width:fit-content;
}
.review-photo-quote{
  font-size:var(--text-base);line-height:1.65;
  color:var(--text-on-light);
  border-left:3px solid var(--yellow);
  padding-left:1rem;
  margin:0;
}
.review-photo-quote::before{content:none}
.review-photo-author{
  padding-top:.75rem;
  border-top:1px solid var(--border-light);
}
.review-photo-author strong{
  display:block;font-size:.9rem;font-weight:700;color:var(--text-on-light);
}
.review-photo-author span{
  font-size:.76rem;color:var(--text-2-on-light);
}
.review-photo-footer{
  display:flex;align-items:center;
  justify-content:space-between;gap:1rem;flex-wrap:wrap;
}
.review-photo-stars{display:flex;gap:3px;}
.review-photo-stars svg{
  width:14px;height:14px;fill:var(--yellow);color:var(--yellow);
}
@media(max-width:768px){
  .review-photo-block{grid-template-columns:1fr}
  .review-photo-img{min-height:260px;max-height:300px;}
  .review-photo-content{padding:1.5rem;}
}

.reviews-grid{
  display:grid;gap:1.5rem;
}
@media(min-width:768px){
  .reviews-grid{grid-template-columns:repeat(3,1fr)}
}
.card-review{
  background:var(--white);
  border:1px solid var(--border-light);
  border-radius:var(--radius-lg);
  padding:1.75rem;
  display:flex;flex-direction:column;gap:1rem;
  height:100%;
  box-shadow:var(--shadow-on-light);
}
.review-head{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.review-stars{display:flex;gap:2px}
.review-stars svg{width:16px;height:16px;color:var(--yellow);fill:var(--yellow)}
.review-context{
  font-size:.72rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  color:var(--text-2-on-light);
}
.review-quote{
  font-size:var(--text-base);line-height:1.6;color:var(--text-on-light);
  flex:1;
}
.review-quote::before{content:”\201C”;color:var(--yellow-dark);font-size:1.5rem;line-height:0;vertical-align:-.2em;margin-right:.15rem;font-style:normal}
.review-foot{
  display:flex;align-items:center;gap:.75rem;
  padding-top:1rem;border-top:1px solid var(--border-light);
}
.review-avatar{
  width:38px;height:38px;border-radius:50%;
  background:var(--yellow);color:var(--black);
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:.9rem;
}
.review-author{font-weight:700;font-size:.92rem;color:var(--text-on-light)}
.review-meta{font-size:.78rem;color:var(--text-2-on-light)}
.card-review .review-google-link{
  display:inline-flex;align-items:center;gap:.375rem;
  font-size:.75rem;color:var(--text-2-on-light);text-decoration:none;
  margin-top:auto;padding-top:.75rem;
}
.card-review .review-google-link:hover{color:var(--text-on-light)}
.reviews-summary{
  display:flex;align-items:center;gap:1.25rem;margin-top:2.5rem;
  padding:1.25rem 1.5rem;border:1px solid var(--border-light);
  border-radius:var(--radius-lg);background:var(--white);
  box-shadow:var(--shadow-on-light);
  /* Ancho = 2 tarjetas + 1 gap (del grid de 3 col con gap 1.5rem) */
  width:calc((100% - 3rem) * 2/3 + 1.5rem);
}
.reviews-summary-score{font-size:2rem;font-weight:800;color:var(--yellow-dark);flex-shrink:0}
.reviews-summary-text{flex:1;font-size:.9rem;color:var(--text-2-on-light);display:flex;flex-direction:column;gap:.2rem}
.reviews-summary-text strong{color:var(--text-on-light)}
@media(max-width:768px){
  .reviews-summary{
    flex-direction:column;
    align-items:flex-start;
    width:100%;
  }
}

/* ----------- 12. EMPRESAS --------------------------------- */
.empresas{
  background:var(--dark);
  border-radius:var(--radius-xl);
  padding:2.5rem 1.75rem;
  display:grid;gap:2rem;align-items:center;
  border:1px solid var(--border);
}
@media (min-width:900px){
  .empresas{grid-template-columns:1fr 1fr;padding:3.5rem 3rem;gap:3rem}
}
.empresas-list{display:flex;flex-direction:column;gap:1rem}
.empresas-item{
  display:flex;align-items:flex-start;gap:.85rem;
  font-size:.95rem;color:var(--gray-light);
}
.empresas-item svg{
  width:20px;height:20px;color:var(--yellow);flex-shrink:0;margin-top:2px;
}
.empresas-item strong{color:var(--white);font-weight:700;display:block;margin-bottom:.1rem}

/* ----------- 13. FAQ -------------------------------------- */
.faq{max-width:820px;margin:0 auto}
.faq-item{
  border-bottom:1px solid var(--border);
  padding:.25rem 0;
}
.faq-question{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:1.25rem 0;width:100%;text-align:left;
  font-size:1.05rem;font-weight:700;color:var(--white);
  cursor:pointer;
}
.faq-question:hover{color:var(--yellow)}
.faq-icon{
  flex-shrink:0;width:28px;height:28px;border-radius:50%;
  border:1px solid var(--border);
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--yellow);
  transition:transform .3s ease;
}
.faq-icon svg{
  width:16px;height:16px;
  display:block;flex-shrink:0;
  stroke:currentColor;
}
.faq-item[aria-expanded="true"] .faq-icon{transform:rotate(45deg)}
.faq-answer{
  overflow:hidden;
  max-height:0;
  transition:max-height .35s ease;
  color:var(--gray-light);
}
.faq-answer-inner{padding:0 0 1.25rem;line-height:1.65}
.faq-item[aria-expanded="true"] .faq-answer{max-height:600px}

/* ----------- 14. SECCIÓN RESERVA PREMIUM ------------------ */

/* Sección */
.rsv-section{position:relative;overflow:hidden;padding:var(--section-y) 0}
.rsv-section::before{
  content:'';position:absolute;
  bottom:-15%;left:-5%;
  width:55%;height:70%;
  background:radial-gradient(ellipse, rgba(245,197,24,.07) 0%, transparent 65%);
  pointer-events:none;
}

/* ── Cabecera horizontal (full-width, top) ─── */
.rsv-header{
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:3.5rem;
  align-items:center;
  margin-bottom:2.75rem;
}
@media (max-width:900px){
  .rsv-header{grid-template-columns:1fr;gap:2rem;margin-bottom:2rem}
}

.rsv-titulo{
  font-size:clamp(2rem,4vw,3rem);
  font-weight:800;letter-spacing:-.03em;line-height:1.1;
  margin-bottom:0;margin-top:.5rem;
}
.rsv-lead{
  font-size:.95rem;color:var(--gray-light);line-height:1.7;
  margin-top:1rem;margin-bottom:0;
}

/* Trust list — fila horizontal en header */
.rsv-trust{display:flex;flex-direction:column;gap:1rem;margin-bottom:1.5rem}
.rsv-trust--row{flex-direction:row;flex-wrap:wrap;gap:.75rem 1.25rem}
.rsv-trust--row li{flex:1;min-width:150px}
.rsv-trust li{display:flex;align-items:flex-start;gap:.7rem}
.rsv-trust-ico{
  width:24px;height:24px;flex-shrink:0;
  border-radius:50%;
  background:rgba(245,197,24,.1);
  border:1px solid rgba(245,197,24,.28);
  color:var(--yellow);
  display:flex;align-items:center;justify-content:center;
  margin-top:.1rem;
}
.rsv-trust-ico svg{width:12px;height:12px}
.rsv-trust strong{
  display:block;font-size:.82rem;font-weight:700;
  color:var(--white);margin-bottom:.15rem;
}
.rsv-trust span{font-size:var(--text-xs);color:var(--gray);line-height:1.4}

/* Bloque teléfono */
.rsv-phone-block{padding-top:1.25rem;border-top:1px solid var(--border)}
.rsv-header-right .rsv-phone-block{text-align:right}
.rsv-phone-label{font-size:.78rem;color:var(--gray);margin-bottom:.4rem}
.rsv-phone{
  display:inline-flex;align-items:center;gap:.6rem;
  font-size:clamp(1.5rem,3vw,2rem);
  font-weight:800;color:var(--yellow);letter-spacing:-.025em;
  text-decoration:none;transition:color .2s ease;
}
.rsv-phone svg{width:22px;height:22px}
.rsv-phone:hover{color:var(--yellow-dark)}

/* ── Tarjeta formulario — full width ─── */
.rsv-card{
  background:var(--card);
  border:1px solid var(--border);
  border-top:3px solid var(--yellow);
  border-radius:0 0 var(--radius-xl) var(--radius-xl);
  padding:2.5rem 3rem 2rem;
  position:relative;
}
@media (max-width:768px){
  .rsv-card{padding:2rem 1.75rem 1.75rem}
}
@media (max-width:480px){
  .rsv-card{padding:1.75rem 1.25rem 1.5rem;border-radius:0 0 var(--radius-lg) var(--radius-lg)}
}

/* Cabecera tarjeta */
.rsv-card-header{margin-bottom:1.75rem;display:flex;align-items:baseline;gap:1.5rem;flex-wrap:wrap}
.rsv-card-titulo{font-size:1.2rem;font-weight:800;letter-spacing:-.02em;margin-bottom:0}
.rsv-card-sub{font-size:.78rem;color:var(--gray);line-height:1.4;margin-bottom:0}
.req-mark{color:var(--yellow);font-weight:800}

/* Filas de campos */
.rsv-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem 1.25rem;margin-bottom:.1rem}
.rsv-row--4col{grid-template-columns:repeat(4,1fr)}
@media (max-width:900px){
  .rsv-row--4col{grid-template-columns:1fr 1fr}
}
@media (max-width:600px){
  .rsv-row,.rsv-row--4col{grid-template-columns:1fr}
}

/* Field group */
.rsv-fg{display:flex;flex-direction:column;gap:.35rem;margin-bottom:.85rem}
.rsv-label{
  display:flex;align-items:center;gap:.3rem;
  font-size:.7rem;font-weight:700;
  color:var(--gray);letter-spacing:.07em;text-transform:uppercase;
}
.rsv-label svg{opacity:.7}
.rsv-input{
  background:#0f0f0f;
  border:1px solid rgba(255,255,255,.09);
  border-radius:var(--radius-md);
  padding:.72rem 1rem;
  font-size:.95rem;color:var(--white);
  font-family:inherit;
  width:100%;outline:none;
  -webkit-appearance:none;
  transition:border-color .18s ease,box-shadow .18s ease;
  color-scheme:dark;
}
.rsv-input::placeholder{color:rgba(255,255,255,.25);font-size:.9rem}
.rsv-input:focus{
  border-color:var(--yellow);
  box-shadow:0 0 0 3px rgba(245,197,24,.12);
}
.rsv-fg--err .rsv-input{border-color:#ef4444}
.rsv-fg--err .rsv-input:focus{box-shadow:0 0 0 3px rgba(239,68,68,.15)}
.rsv-err{
  font-size:var(--text-xs);color:#f87171;
  display:flex;align-items:center;gap:.3rem;
  margin-top:.1rem;
}

/* Privacidad checkbox */
.rsv-fg-check{margin-bottom:.75rem}
.rsv-check-label{
  display:flex;align-items:center;gap:.65rem;
  cursor:pointer;
  font-size:.85rem;color:var(--gray-light);line-height:1.45;
}
.rsv-check-label a{color:var(--yellow);text-decoration:none}
.rsv-check-label a:hover{text-decoration:underline}
.rsv-checkbox{
  width:17px;height:17px;flex-shrink:0;
  accent-color:var(--yellow);
  cursor:pointer;
}

/* Botón submit */
.rsv-submit{
  width:100%;
  display:flex;align-items:center;justify-content:center;gap:.55rem;
  background:var(--yellow);color:#0A0A0A;
  font-size:var(--text-base);font-weight:800;font-family:inherit;
  padding:.9rem 1.5rem;
  border:none;border-radius:var(--radius-md);
  cursor:pointer;margin-top:.5rem;
  transition:background .18s ease,transform .15s ease,box-shadow .18s ease;
  box-shadow:0 4px 22px rgba(245,197,24,.3);
  letter-spacing:.01em;
}
.rsv-submit:hover:not(:disabled){
  background:var(--yellow-dark);
  transform:translateY(-1px);
  box-shadow:0 6px 28px rgba(245,197,24,.4);
}
.rsv-submit:disabled{opacity:.6;cursor:not-allowed;box-shadow:none}

/* Animación spinner */
@keyframes rsv-spin{to{transform:rotate(360deg)}}
.rsv-spin{animation:rsv-spin .75s linear infinite;flex-shrink:0}

/* Microcopy */
.rsv-microcopy{
  display:flex;align-items:center;justify-content:center;
  flex-wrap:wrap;gap:.4rem .6rem;
  margin-top:1.1rem;
  font-size:.72rem;color:var(--gray);
}
.rsv-micro-sep{opacity:.35}

/* Estados: éxito y fallback */
.rsv-state{text-align:center;padding:2.5rem 1rem}
.rsv-state h3{font-size:1.2rem;font-weight:800;margin-bottom:.6rem}
.rsv-state p{font-size:.9rem;color:var(--gray-light);line-height:1.6;margin-bottom:.5rem}
.rsv-state a{color:var(--yellow)}
.rsv-state-note{font-size:.78rem;color:var(--gray);margin-top:.75rem}

.rsv-state-ico{
  width:60px;height:60px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  margin-bottom:1.25rem;
}
.rsv-state-ico--ok{
  background:rgba(34,197,94,.1);
  border:2px solid rgba(34,197,94,.4);
  color:#22c55e;
}
.rsv-state-ico--warn{
  background:rgba(245,197,24,.1);
  border:2px solid rgba(245,197,24,.35);
  color:var(--yellow);
}
.rsv-reset{
  margin-top:1.25rem;
  background:transparent;border:1px solid var(--border);
  color:var(--gray);font-size:.83rem;font-family:inherit;
  padding:.5rem 1.25rem;border-radius:var(--radius-pill);
  cursor:pointer;transition:border-color .2s,color .2s;
}
.rsv-reset:hover{border-color:var(--yellow);color:var(--yellow)}

/* ----------- 15. FOOTER ----------------------------------- */
/* Logotipo home sobre la línea del footer */
.home-footer-logo{background:var(--black);text-align:center;padding:1rem 0 0;margin:0 0 8px;line-height:0}
.home-footer-logo img{width:110px;height:auto;display:block;margin:0 auto;opacity:.72;filter:drop-shadow(0 -6px 14px rgba(var(--gold-mid-rgb),.55)) drop-shadow(0 0 6px rgba(var(--gold-mid-rgb),.3))}
.site-footer{background:var(--black);border-top:none;position:relative;padding-block:4rem 2rem}
.site-footer::before{
  content:'';
  position:absolute;top:0;left:0;right:0;
  height:2px;
  background:linear-gradient(to right,
    transparent 0%,
    rgba(245,197,24,.12) 15%,
    rgba(245,197,24,.55) 40%,
    rgba(245,197,24,.55) 60%,
    rgba(245,197,24,.12) 85%,
    transparent 100%
  );
}
.footer__main{display:grid;grid-template-columns:2.2fr 1fr 1fr 1.3fr;gap:3rem;padding-bottom:3rem;border-bottom:1px solid var(--border);margin-bottom:2rem}
.footer__logo{display:flex;align-items:center;gap:.625rem;font-weight:800;font-size:1.05rem;color:var(--white);margin-bottom:1.125rem}
.footer__logo-svg{width:38px;height:38px;border-radius:var(--radius-sm);flex-shrink:0;object-fit:contain}
.footer__desc{font-size:var(--text-sm);color:var(--gray);line-height:1.7;margin-bottom:1.5rem}
.footer__phone{font-size:1.5rem;font-weight:800;color:var(--yellow);display:block;margin-bottom:.25rem;letter-spacing:-.02em}
.footer__phone:hover{color:var(--yellow-dark)}
.footer__phone--alt{font-size:.9375rem;font-weight:600;color:var(--gray);margin-bottom:.75rem;letter-spacing:0}
.footer__phone--alt:hover{color:var(--white)}
.footer__phone--alt small{font-size:.8125rem;font-weight:400;opacity:.75}
.footer__hours{font-size:.8125rem;color:var(--gray)}
.footer__social{display:flex;gap:.5rem;margin-top:1.375rem}
.footer__social-link{width:36px;height:36px;border-radius:var(--radius-sm);background:var(--card);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--gray);font-size:.9375rem;transition:var(--transition)}
.footer__social-link:hover{color:var(--yellow);border-color:var(--yellow)}
.footer__col-title{font-size:var(--text-xs);font-weight:700;color:var(--white);text-transform:uppercase;letter-spacing:.09em;margin-bottom:1.375rem}
.footer__links{display:flex;flex-direction:column;gap:.625rem}
.footer__link{font-size:var(--text-sm);color:var(--gray);transition:color .2s ease}
.footer__link:hover{color:var(--gray-light)}
.footer__nap-item{display:flex;align-items:flex-start;gap:.625rem;font-size:var(--text-sm);color:var(--gray);margin-bottom:.875rem;line-height:1.5}
.footer__nap-item a:hover{color:var(--yellow)}
.footer__nap-ico{flex-shrink:0;color:var(--yellow);margin-top:.1rem}
.footer__bottom{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.footer__copy{font-size:.8125rem;color:var(--gray-dark)}
.footer__copy a{color:var(--gray-dark);transition:color .2s ease}
.footer__copy a:hover{color:var(--gray)}
.footer__legal{display:flex;gap:1.5rem;flex-wrap:wrap}
.footer__legal a{font-size:.8125rem;color:var(--gray-dark);transition:color .2s ease}
.footer__legal a:hover{color:var(--gray)}
.footer__rating{display:flex;align-items:center;gap:.5rem;margin-top:1.25rem;padding:.5rem .875rem;background:rgba(255,255,255,.04);border:1px solid var(--border);border-radius:var(--radius-md);width:fit-content}
.footer__rating-stars{color:var(--yellow);font-size:.8125rem;letter-spacing:.05em;line-height:1}
.footer__rating-text{font-size:.8125rem;color:var(--gray)}
.footer__rating-text strong{color:var(--white)}
.footer__cta-btn{display:inline-flex;align-items:center;gap:.5rem;margin-top:1.25rem;padding:.625rem 1.125rem;background:var(--yellow);color:var(--black);font-size:var(--text-sm);font-weight:700;border-radius:var(--radius-pill);transition:background .2s ease,transform .15s ease;width:fit-content}
.footer__cta-btn:hover{background:var(--yellow-hover);transform:translateY(-1px)}
.footer__copy--legal{display:none}
@media (min-width:768px){.footer__copy--legal{display:block}}
@media (max-width:900px){.footer__main{grid-template-columns:1fr 1fr;gap:2rem}.footer__brand{grid-column:1 / -1}}
@media (max-width:768px){.footer__main{grid-template-columns:1fr 1fr;gap:1.5rem 1.25rem}.footer__brand{grid-column:1 / -1}.footer__col:last-child{grid-column:1 / -1}.footer__bottom{flex-direction:column;text-align:center}.footer__legal{justify-content:center}}

/* ----------- 16. FAB MOBILE ------------------------------- */
.fab-bar{
  display:none;
  position:fixed;bottom:1rem;left:1rem;right:1rem;z-index:var(--z-fab);
  gap:.6rem;
  transform:translateY(0);
  transition:transform .28s cubic-bezier(.4,0,.2,1),opacity .28s ease,bottom .3s ease;
}
.fab-bar a{
  flex:1;
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  height:54px;border-radius:var(--radius-pill);
  font-weight:800;font-size:var(--text-base);
  box-shadow:0 8px 24px rgba(0,0,0,.45);
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.fab-bar a:active{transform:scale(.97)}
.fab-call{
  background:var(--yellow);color:var(--black);
  animation:fab-pulse 2.8s ease-in-out 1.5s 3;
}
.fab-call:hover{background:var(--yellow-dark)}
@keyframes fab-pulse{
  0%  {box-shadow:0 8px 24px rgba(0,0,0,.45),0 0 0 0 rgba(245,197,24,.55)}
  65% {box-shadow:0 8px 24px rgba(0,0,0,.45),0 0 0 14px rgba(245,197,24,0)}
  100%{box-shadow:0 8px 24px rgba(0,0,0,.45),0 0 0 0 rgba(245,197,24,0)}
}
.fab-reserve{
  background:rgba(26,26,26,.95);color:var(--white);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.12);
}
.fab-reserve:hover{background:rgba(40,40,40,.98);border-color:rgba(255,255,255,.22)}
.fab-bar svg{width:20px;height:20px;flex-shrink:0}
@media (max-width:768px){
  .fab-bar{display:flex}
  body{padding-bottom:5rem}
  /* Cuando el banner de cookies está activo: FAB sube por encima del banner */
  body.has-cookie-banner .fab-bar{
    bottom:calc(var(--cookie-h, 160px) + .5rem);
  }
}
/* Ocultar FAB cuando el menú móvil está abierto */
body.menu-open .fab-bar{
  opacity:0;pointer-events:none;transform:translateY(1rem);
}

/* ----------- 16b. SCROLL TO TOP -------------------------- */
.scroll-top-btn{
  position:fixed;
  bottom:calc(54px + 1.5rem);
  right:1rem;
  z-index:71;
  width:40px;height:40px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.09);
  background:rgba(14,14,14,0.88);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  cursor:pointer;
  display:none;
  align-items:center;justify-content:center;
  box-shadow:0 4px 16px rgba(0,0,0,0.50);
  transition:background .18s ease,border-color .18s ease,box-shadow .18s ease,transform .18s ease;
}
.scroll-top-btn svg{color:var(--yellow);display:block}
.scroll-top-btn:hover{
  background:rgba(22,22,22,0.96);
  border-color:rgba(245,197,24,0.22);
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(0,0,0,0.55);
}
.scroll-top-btn:active{transform:scale(0.93)}
@media(max-width:768px){.scroll-top-btn{display:flex}}
body.menu-open .scroll-top-btn{opacity:0;pointer-events:none}

/* ----------- 17. CTA FINAL -------------------------------- */
.cta-final{padding-bottom:0.5rem}
.cta-final-inner{display:flex;flex-direction:column;align-items:center;text-align:center;max-width:680px;margin:0 auto;gap:1.75rem}
.cta-final-badge{display:inline-flex;align-items:center;gap:.5rem;font-size:var(--text-xs);font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--green);background:var(--green-soft);padding:.35rem .9rem;border-radius:var(--radius-pill)}
.cta-final-title{font-size:clamp(1.75rem,4vw,2.5rem);font-weight:800;color:var(--white);line-height:1.1;letter-spacing:-.02em;margin:0}
.cta-final-sub{font-size:1.05rem;color:var(--gray-light);line-height:1.6;margin:0}
.cta-final-actions{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center}
.cta-final-trust{
  display:flex;
  flex-wrap:nowrap;
  justify-content:center;
  align-items:center;
  gap:0 clamp(1rem,2.5vw,2.5rem);
  list-style:none;
  margin:0;
  padding:0;
}
.cta-final-trust li{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-size:.82rem;
  font-weight:600;
  color:var(--gray);
  line-height:1.3;
  white-space:nowrap;
}
.cta-final-trust li::before{
  content:"";
  display:inline-block;
  flex-shrink:0;
  width:15px;
  height:15px;
  background-color:var(--yellow);
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  -webkit-mask-size:contain;
  mask-size:contain;
  -webkit-mask-repeat:no-repeat;
  mask-repeat:no-repeat;
  -webkit-mask-position:center;
  mask-position:center;
}
@media(max-width:768px){
  .cta-final-trust{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:.75rem 1rem;
    justify-items:start;
  }
  .cta-final-trust li{
    font-size:.8rem;
    white-space:normal;
    justify-content:flex-start;
    align-items:flex-start;
    text-align:left;
  }
  .cta-final-trust li::before{flex-shrink:0;margin-top:2px}
}