﻿/* ============================================================
   Parapente Latino — diseño desde cero
   Paleta  : oceano #0A4F8F · vela #F4C020 · cta #E8541A
   Tipograf: Barlow Condensed 700/900 (display) · Barlow 400/500/600 (cuerpo)
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --oceano:       #0A4F8F;
  --oceano-dk:    #063A6E;
  --oceano-xdk:   #041E3A;
  --cielo:        #EBF5FD;
  --cielo-md:     #C8E3F6;
  --vela:         #F4C020;
  --cta:          #E8541A;
  --cta-dk:       #C44214;
  --texto:        #0D1B2A;
  --suave:        #4E6D85;
  --borde:        #D4E5F2;
  --blanco:       #FFFFFF;
  --r:            16px;
  --r-lg:         24px;
  --sombra:       0 6px 32px rgba(10,79,143,.12);
  --sombra-lg:    0 16px 56px rgba(10,79,143,.18);
  --display:      'Barlow Condensed', system-ui, sans-serif;
  --body:         'Barlow', system-ui, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body { font-family: var(--body); font-size: 1.0625rem; line-height: 1.65; color: var(--texto); background: var(--blanco); -webkit-text-size-adjust: 100%; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--oceano); }
a:hover { color: var(--oceano-dk); }
ul { list-style: none; }

/* ── Utilidades ─────────────────────────────────────────────── */
.container { width: min(1120px, 100% - 2rem); margin-inline: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; top: -100%; left: 1rem; z-index: 200; padding: .5rem 1rem; background: var(--oceano); color: var(--blanco); border-radius: 0 0 8px 8px; text-decoration: none; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--vela); outline-offset: 2px; border-radius: 4px; }

/* ── Cabecera páginas internas ──────────────────────────────── */
.page-banner {
  position: relative;
  background: linear-gradient(135deg, var(--oceano-xdk) 0%, var(--oceano) 100%);
  background-size: cover;
  background-position: center;
  padding: 8rem 0 4rem;
  color: var(--blanco);
  text-align: center;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4,30,58,.48) 0%, rgba(10,79,143,.32) 100%);
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner-eyebrow {
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--vela);
  margin-bottom: .5rem;
  display: block;
}
.page-banner-h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--blanco);
  margin-bottom: 1rem;
}
.page-banner-sub {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.page-banner-acciones { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Sección genérica páginas internas ──────────────────────── */
.pi-seccion { padding: 4rem 0; }
.pi-seccion--gris { background: var(--cielo); }
.pi-seccion--ocean { background: var(--oceano-xdk); color: var(--blanco); }
.pi-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.pi-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pi-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 860px) {
  .pi-grid-2 { grid-template-columns: 1fr; }
  .pi-grid-3 { grid-template-columns: 1fr 1fr; }
  .pi-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .pi-grid-3, .pi-grid-4 { grid-template-columns: 1fr; }
  .page-banner { padding: 6rem 0 3rem; }
}

.pi-card {
  background: var(--blanco);
  border-radius: var(--r);
  box-shadow: var(--sombra);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.pi-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-lg); }
.pi-card-foto { width: 100%; height: 200px; object-fit: cover; }
.pi-card-body { padding: 1.4rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.pi-card-badge {
  display: inline-block;
  background: var(--vela);
  color: #5a3a00;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: 20px;
  width: fit-content;
}
.pi-card-nombre { font-family: var(--display); font-weight: 900; font-size: 1.5rem; color: var(--oceano-dk); line-height: 1; }
.pi-card-sub { font-size: .88rem; color: var(--suave); line-height: 1.4; }
.pi-card-precio { font-family: var(--display); font-size: 2.2rem; font-weight: 900; color: var(--oceano); line-height: 1; margin: .4rem 0; }
.pi-card-precio span { font-size: 1rem; font-weight: 600; color: var(--suave); margin-left: .25rem; }
.pi-card-body .btn { margin-top: auto; width: 100%; justify-content: center; }

.pi-feature { display: flex; gap: 1rem; align-items: flex-start; }
.pi-feature-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--cielo); display: grid; place-items: center; flex-shrink: 0; color: var(--oceano); }
.pi-feature-titulo { font-family: var(--display); font-weight: 700; font-size: 1.1rem; color: var(--oceano-dk); margin-bottom: .25rem; }
.pi-feature-desc { font-size: .9rem; color: var(--suave); line-height: 1.5; }

.pi-cta { background: linear-gradient(135deg, var(--oceano-xdk) 0%, var(--oceano) 100%); color: var(--blanco); padding: 5rem 0; text-align: center; }
.pi-cta h2 { font-family: var(--display); font-weight: 900; font-size: clamp(2rem, 5vw, 3.2rem); text-transform: uppercase; color: var(--blanco); margin-bottom: 1rem; }
.pi-cta p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; max-width: 520px; margin-inline: auto; }
.pi-cta .btn-acciones { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Scroll reveal ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* ── Botones ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.5rem;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-reserva  { background: var(--cta); color: var(--blanco); box-shadow: 0 4px 18px rgba(232,84,26,.35); }
.btn-reserva:hover { background: var(--cta-dk); color: var(--blanco); }
.btn-ghost    { border: 2px solid rgba(255,255,255,.8); color: var(--blanco); background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,.15); color: var(--blanco); }
.btn-outline  { border: 2px solid var(--oceano); color: var(--oceano); background: transparent; }
.btn-outline:hover { background: var(--cielo); }
.btn-lg  { padding: .9rem 1.9rem; font-size: 1.1rem; }
.btn-xl  { padding: 1.1rem 2.2rem; font-size: 1.2rem; font-weight: 700; }

/* ── Tipografía global ───────────────────────────────────────── */
h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  color: var(--oceano-dk);
  text-wrap: balance;
}
h3 { font-family: var(--display); font-weight: 700; font-size: 1.35rem; color: var(--oceano-dk); }

/* ── Cabecera / nav ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header:not(.scrolled) { background: transparent; }
.site-header.scrolled { background: rgba(255,255,255,.97); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(10,79,143,.1); }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .75rem; }

/* Brand */
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; font-family: var(--body); font-size: 1.1rem; font-weight: 500; transition: color .2s; }
.brand-icon { flex-shrink: 0; }
.site-header:not(.scrolled) .brand { color: var(--blanco); }
.site-header.scrolled .brand { color: var(--oceano-dk); }
.brand strong { color: var(--cta); }
.brand--sm { font-size: .95rem; }
.brand-logo { height: 70px; width: auto; display: block; border-radius: 50%; }
.site-header:not(.scrolled) .brand-logo { mix-blend-mode: multiply; }
@media (max-width: 768px) { .brand-logo { height: 48px; } }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { font-weight: 500; text-decoration: none; transition: color .2s; }
.site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,.9); }
.site-header:not(.scrolled) .nav-links a:hover { color: var(--blanco); }
.site-header.scrolled .nav-links a { color: var(--texto); }
.site-header.scrolled .nav-links a:hover { color: var(--oceano); }

/* Nav acciones */
.nav-acciones { display: flex; align-items: center; gap: 1rem; }
.nav-tel { display: flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .92rem; text-decoration: none; transition: color .2s; }
.site-header:not(.scrolled) .nav-tel { color: rgba(255,255,255,.9); }
.site-header.scrolled .nav-tel { color: var(--texto); }

/* Mobile toggle */
.nav-toggle { display: none; background: none; border: 2px solid rgba(255,255,255,.5); border-radius: 8px; padding: .55rem .65rem; cursor: pointer; }
.site-header.scrolled .nav-toggle { border-color: var(--borde); }
.nav-burger,
.nav-burger::before,
.nav-burger::after { display: block; width: 20px; height: 2px; background: var(--blanco); border-radius: 2px; transition: background .2s; content: ""; }
.site-header.scrolled .nav-burger,
.site-header.scrolled .nav-burger::before,
.site-header.scrolled .nav-burger::after { background: var(--oceano-dk); }
.nav-burger { position: relative; }
.nav-burger::before { position: absolute; top: -6px; }
.nav-burger::after  { position: absolute; top: 6px; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  background: url('../img/parapente-latino-sopelana-portada.jpg') center top / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 11rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(4,30,58,.60) 0%, rgba(4,30,58,.28) 45%, rgba(4,30,58,.03) 100%),
    linear-gradient(to right, rgba(4,30,58,.28) 0%, transparent 60%);
}

.hero-contenido {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
.hero-inner {
  max-width: 500px;
  width: 100%;
}

.hero-kicker {
  font-family: var(--body);
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--cielo-md);
  margin-bottom: .8rem;
}

.hero-h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 1.0;
  color: var(--blanco);
  text-wrap: balance;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: #d6ecf8;
  margin-bottom: 1.4rem;
}
.rn-desktop { display: none; }
@media (min-width: 720px) { .rn-desktop { display: block; } }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.4rem;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: .92rem;
  color: #b8dff5;
}
.hero-trust li::before { content: "✓ "; color: var(--vela); }
.hero-trust-star { color: var(--vela) !important; font-weight: 700; }
.hero-trust-star::before { content: "" !important; }

.hero-acciones { display: flex; flex-wrap: wrap; gap: .8rem; }

.scroll-indicador {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.6);
  animation: bob 2s ease-in-out infinite;
  text-decoration: none;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar { padding: 0 0 3rem; }
.stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
  background: var(--blanco);
  border-radius: var(--r-lg);
  box-shadow: var(--sombra-lg);
  padding: 2rem 2.5rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--oceano);
  line-height: 1;
  display: inline;
}
.stat-sufijo { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--oceano); }
.stat-label { font-size: .85rem; color: var(--suave); font-weight: 500; margin-top: .25rem; }
.stat-sep { width: 1px; background: var(--borde); align-self: stretch; }

/* ── SECCIONES — estilos comunes ────────────────────────────── */
.seccion { padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.seccion-cab { margin-bottom: 2.5rem; }
.seccion-cab--light { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--cta);
  margin-bottom: .5rem;
}
.eyebrow--light { color: var(--vela); }
.h-light { color: var(--blanco); }
.seccion-lead { max-width: 640px; color: var(--suave); font-size: 1.08rem; margin-top: .6rem; }
.lead--light { color: #d6ecf8; margin-inline: auto; text-align: center; }

/* ── EXPERIENCIA ─────────────────────────────────────────────── */
.pasos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.paso {
  padding: 2rem;
  border-radius: var(--r);
  border: 1px solid var(--borde);
  position: relative;
  background: var(--blanco);
  box-shadow: var(--sombra);
}
.paso-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 4rem;
  color: var(--cielo-md);
  line-height: 1;
  margin-bottom: .5rem;
  user-select: none;
}
.paso h3 { margin-bottom: .6rem; }
.paso p { color: var(--suave); font-size: .97rem; }

/* ── VÍDEO ───────────────────────────────────────────────────── */
.seccion-video {
  background: var(--oceano-xdk);
}
.video-facade-wrap {
  max-width: 900px;
  margin-inline: auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  aspect-ratio: 16/9;
}
.video-facade {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #000;
  overflow: hidden;
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .75; transition: opacity .25s, transform .4s; }
.video-facade:hover img { opacity: .9; transform: scale(1.03); }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  display: grid;
  place-items: center;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--cta);
  color: var(--blanco);
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
  transition: transform .2s, background .2s;
}
.video-facade:hover .play-btn,
.video-facade:focus-visible .play-btn { transform: translate(-50%,-50%) scale(1.1); background: var(--cta-dk); }

/* ── CONFIANZA BAND ──────────────────────────────────────────── */
.confianza-band {
  background: var(--oceano-xdk);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.confianza-inner {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.conf-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  flex: 1;
  padding: 0 2rem;
}
.conf-item:first-child { padding-left: 0; }
.conf-item:last-child  { padding-right: 0; }
.conf-sep {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,.12);
}
.conf-icono {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.conf-icono--star   { background: rgba(244,192,32,.18); color: var(--vela); }
.conf-icono--heart  { background: rgba(232,84,26,.18);  color: #f07050; }
.conf-icono--shield { background: rgba(56,189,97,.18);  color: #4ade80; }
.conf-titulo {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--blanco);
  line-height: 1.2;
  margin-bottom: .4rem;
}
.conf-desc {
  font-size: .85rem;
  color: rgba(235,245,253,.7);
  line-height: 1.55;
}

/* ── TARIFAS ─────────────────────────────────────────────────── */
.tarifas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 3rem; }

.tarifa-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}
.tarifa-card:focus-visible { outline: 3px solid var(--vela); outline-offset: 3px; }

.tarifa-foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}
.tarifa-card:hover .tarifa-foto { transform: scale(1.06); }

.tarifa-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,20,45,.62) 0%, rgba(4,20,45,.22) 55%, rgba(4,20,45,.02) 100%);
  transition: opacity .3s;
}

.tarifa-info {
  position: relative;
  z-index: 1;
  padding: 1.4rem;
  color: var(--blanco);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.tarifa-nombre { font-family: var(--display); font-weight: 900; font-size: 1.6rem; color: var(--blanco); }
.tarifa-dur { font-size: .85rem; color: var(--cielo-md); font-weight: 500; }
.tarifa-precio { display: flex; align-items: baseline; gap: .15rem; margin: .3rem 0 .4rem; }
.p-num { font-family: var(--display); font-weight: 900; font-size: 2.8rem; line-height: 1; color: var(--blanco); }
.p-cur { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--vela); }
.tarifa-inc { font-size: .84rem; color: #b8dff5; margin-bottom: .7rem; display: flex; flex-direction: column; gap: .15rem; }
.tarifa-inc li::before { content: "✓ "; color: var(--vela); }
.rtc-inc { list-style: none; padding: 0; margin: .4rem 0 .8rem; display: flex; flex-direction: column; gap: .2rem; font-size: .83rem; }
.rtc-inc li::before { content: "✓ "; color: #f4a820; }

.btn-tarifa { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.4); color: var(--blanco); border-radius: 999px; padding: .55rem 1.2rem; font-size: .9rem; font-weight: 600; text-decoration: none; display: inline-block; transition: background .2s, border-color .2s; }
.btn-tarifa:hover { background: rgba(255,255,255,.3); color: var(--blanco); }
.btn-tarifa--hot { background: var(--cta); border-color: var(--cta); }
.btn-tarifa--hot:hover { background: var(--cta-dk); border-color: var(--cta-dk); color: var(--blanco); }

.tarifa-card--featured { outline: 2.5px solid var(--vela); }
.tarifa-badge {
  position: absolute;
  top: .9rem; right: .9rem;
  z-index: 2;
  background: var(--vela);
  color: var(--oceano-xdk);
  font-family: var(--body);
  font-weight: 700;
  font-size: .75rem;
  padding: .3rem .8rem;
  border-radius: 999px;
}

/* Bonos */
.bonos { background: var(--cielo); border-radius: var(--r-lg); padding: 2.5rem; }
.bonos-titulo { font-family: var(--display); font-weight: 900; font-size: 1.6rem; color: var(--oceano-dk); margin-bottom: 1.5rem; }
.bonos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-bottom: 1.8rem; }
.bono-card { background: var(--blanco); border-radius: var(--r); overflow: hidden; box-shadow: var(--sombra); }
.bono-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.bono-info { padding: 1rem 1.1rem 1.2rem; }
.bono-info h4 { font-family: var(--display); font-weight: 700; font-size: 1.1rem; color: var(--oceano-dk); margin-bottom: .2rem; }
.bono-info p { font-size: .85rem; color: var(--suave); }
.bono-precio { font-family: var(--display); font-weight: 900; font-size: 1.4rem; color: var(--cta); margin-top: .4rem; }
.bonos-cta { text-align: center; }

/* ── GALERÍA ─────────────────────────────────────────────────── */
.seccion-galeria { background: var(--oceano-xdk); }
.seccion-galeria .eyebrow { color: var(--vela); }
.seccion-galeria h2 { color: var(--blanco); }
.galeria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: .8rem;
}
.galeria-item { overflow: hidden; border-radius: var(--r); }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.galeria-item:hover img { transform: scale(1.05); }
.galeria-tall { grid-row: 1 / 3; }

/* ── TESTIMONIOS ─────────────────────────────────────────────── */
.seccion-test { background: var(--cielo); }
.rating-global { display: flex; align-items: center; flex-wrap: wrap; gap: .6rem; margin-top: .8rem; font-size: 1.05rem; }
.stars { color: #b96b00; font-size: 1.2rem; letter-spacing: .1em; }
.rating-base { color: var(--suave); font-size: .95rem; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: 2rem; }
.testimonio { background: var(--blanco); border-radius: var(--r); padding: 1.8rem; box-shadow: var(--sombra); border: 0; }
.testimonio .stars { font-size: 1rem; display: block; margin-bottom: .6rem; }

/* ── Reseñas Google con foto ─────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.review-card { background: var(--blanco); border-radius: var(--r); box-shadow: var(--sombra); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-lg); }
.review-foto { width: 100%; height: 190px; object-fit: cover; display: block; }
.review-body { padding: 1.1rem 1.3rem 1.3rem; flex: 1; display: flex; flex-direction: column; gap: .45rem; }
.review-header { display: flex; align-items: center; gap: .65rem; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 900; font-size: 1rem; color: #fff; flex-shrink: 0; }
.review-nombre { font-weight: 700; font-size: .93rem; color: var(--oceano-dk); line-height: 1.2; }
.review-fecha { font-size: .73rem; color: var(--suave); }
.review-stars { color: #F4B400; font-size: .9rem; letter-spacing: .04em; line-height: 1; }
.review-texto { font-size: .87rem; color: #4a5568; line-height: 1.65; flex: 1; }
.review-google-badge { display: flex; align-items: center; gap: .4rem; font-size: .72rem; color: var(--suave); border-top: 1px solid var(--borde); padding-top: .55rem; margin-top: .4rem; }
.test-texto { font-style: italic; color: var(--texto); line-height: 1.65; margin-bottom: .8rem; }
.test-autor { font-weight: 700; font-size: .9rem; color: var(--oceano-dk); }
.test-acciones { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.seccion-faq { background: var(--blanco); }
.faq-grid { max-width: 820px; display: flex; flex-direction: column; gap: .7rem; }
.faq-item {
  border: 1px solid var(--borde);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--blanco);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1.1rem 1.4rem;
  color: var(--oceano-dk);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after { content: "+"; font-size: 1.4rem; font-weight: 300; color: var(--oceano); flex-shrink: 0; }
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { background: var(--cielo); }
.faq-item p { padding: 0 1.4rem 1.2rem; color: var(--suave); }
.faq-item p a { color: var(--oceano); }

/* ── CTA FINAL ───────────────────────────────────────────────── */
.seccion-cta {
  background:
    linear-gradient(160deg, rgba(4,30,58,.88), rgba(10,79,143,.82)),
    url('../img/parapente-latino-sopelana-portada.jpg') center / cover no-repeat;
  color: var(--blanco);
  text-align: center;
}
.cta-inner { max-width: 680px; margin-inline: auto; }
.cta-inner h2 { color: var(--blanco); font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: .8rem; }
.cta-sub { color: #d6ecf8; margin-bottom: 2rem; font-size: 1.08rem; }
.cta-datos { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1rem; margin-top: 1.5rem; font-size: .9rem; }
.cta-datos a { color: #b8dff5; text-decoration: none; font-weight: 600; }
.cta-datos a:hover { color: var(--blanco); }
.cta-datos span { color: #7aadce; }
.cta-social { display: flex; justify-content: center; gap: 1.4rem; margin-top: 1.8rem; }
.cta-social a { color: #7aadce; text-decoration: none; font-weight: 600; font-size: .92rem; }
.cta-social a:hover { color: var(--blanco); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--oceano-xdk); padding-block: 1.6rem; color: #7aadce; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .5rem; }
.footer-addr { font-size: .85rem; }
.footer-copy { font-size: .8rem; }

/* ── WHATSAPP FLOTANTE ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  right: 1.2rem; bottom: 1.2rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #128c4b;
  color: var(--blanco);
  box-shadow: 0 6px 22px rgba(0,0,0,.3);
  transition: background .2s, transform .2s;
}
.whatsapp-float:hover { background: #0d6b39; color: var(--blanco); transform: scale(1.07); }

/* ── TAB LATERAL RESERVA ─────────────────────────────────────── */
.reserva-lateral {
  position: fixed;
  right: 0;
  top: 48%;
  transform: translateY(-50%);
  z-index: 90;
  background: var(--vela);
  color: #3a2600;
  text-decoration: none;
  font-family: var(--body);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 1.2rem .65rem;
  border-radius: 10px 0 0 10px;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: .55rem;
  box-shadow: -4px 0 18px rgba(244,192,32,.35);
  transition: right .2s ease, box-shadow .2s ease;
}
.reserva-lateral:hover {
  right: 2px;
  box-shadow: -6px 0 24px rgba(244,192,32,.5);
  color: #3a2600;
}
.reserva-lateral svg { flex-shrink: 0; }
@media (max-width: 720px) {
  .reserva-lateral { font-size: .68rem; padding: .8rem .45rem; gap: .35rem; }
  .reserva-lateral svg { width: 14px; height: 14px; }
}

/* ── VIDEO MODAL ─────────────────────────────────────────────── */
.video-modal {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  padding: 1.5rem;
  background: rgba(4,20,45,.92);
}
.video-modal[hidden] { display: none; }
.video-modal-dialog { position: relative; width: min(960px, 100%); }
.video-modal-player { aspect-ratio: 16/9; background: #000; border-radius: var(--r); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.6); }
.video-modal-player iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-modal-cerrar {
  position: absolute; top: -2.8rem; right: 0;
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%; border: 0;
  background: rgba(255,255,255,.15); color: var(--blanco);
  cursor: pointer;
}
.video-modal-cerrar:hover { background: var(--cta); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tarifas-grid { grid-template-columns: repeat(2, 1fr); }
  .bonos-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .pasos-grid { grid-template-columns: 1fr; }
  .test-grid  { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .galeria-tall { grid-row: 1 / 3; }
  .stats-inner { gap: 1.5rem; }
  .stat-sep { display: none; }
  .confianza-inner { flex-direction: column; gap: 1.8rem; }
  .conf-sep { width: 100%; height: 1px; align-self: auto; }
  .conf-item { padding: 0; }
}

@media (max-width: 720px) {
  /* Menú móvil */
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--blanco); box-shadow: var(--sombra);
    padding: .6rem 1.2rem 1.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .55rem 0; border-bottom: 1px solid var(--borde); color: var(--texto); }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-toggle { display: block; }
  .nav-tel span { display: none; }

  .tarifas-grid { grid-template-columns: 1fr; }
  .bonos-grid   { grid-template-columns: 1fr 1fr; }
  .galeria-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .galeria-tall { grid-row: auto; }
  .galeria-item { aspect-ratio: 4/3; }
  .hero-h1 { font-size: clamp(2.6rem, 10vw, 3.8rem); }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-acciones { flex-direction: column; }
  .bonos-grid { grid-template-columns: 1fr; }
  .stats-inner { padding: 1.5rem; }
}
