/* ============================================================
   AZO AMAZOLANDIA · Hoja de estilos principal
   Centro de Ocio Inclusivo · A Coruña
   ============================================================ */

/* -------- RESET & BASE -------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

img, svg, video { max-width: 100%; height: auto; display: block; }

button { font: inherit; cursor: pointer; border: none; background: none; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

input, textarea, select { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 3px;
  border-radius: 6px;
}

/* -------- DESIGN TOKENS -------- */
:root {
  /* Colores marca */
  --color-primary: #ff6b6b;          /* coral vibrante */
  --color-primary-dark: #e54b4b;
  --color-secondary: #ffc93c;        /* amarillo sol */
  --color-tertiary: #2ec4b6;         /* turquesa */
  --color-quaternary: #7b68ee;       /* lavanda */
  --color-pink: #ff9ec7;
  --color-mint: #b8e6d9;

  /* Neutros */
  --color-ink: #1b2a41;
  --color-text: #2d3047;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-bg: #fff4ea;               /* melocotón crema (Opción 1) */
  color-scheme: light;               /* evita que el navegador oscurezca formularios */
  --color-surface: #ffffff;
  --color-surface-soft: #fef7e6;

  /* Tipografía */
  --font-display: 'Quicksand', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Nunito', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Tamaños */
  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --fs-4xl: clamp(2.25rem, 5vw, 4rem);

  /* Espaciado */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Sombras */
  --shadow-sm: 0 2px 6px rgba(27, 42, 65, 0.06);
  --shadow-md: 0 8px 24px rgba(27, 42, 65, 0.1);
  --shadow-lg: 0 20px 60px rgba(27, 42, 65, 0.15);
  --shadow-pop: 0 12px 32px rgba(255, 107, 107, 0.35);

  /* Transiciones */
  --t-fast: 150ms ease;
  --t-normal: 250ms ease;
  --t-slow: 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------- DOCUMENTO -------- */
html, body { background: var(--color-bg); }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p { margin-bottom: var(--space-md); }

p:last-child { margin-bottom: 0; }

strong { color: var(--color-ink); font-weight: 700; }

/* -------- UTILIDADES -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow { max-width: var(--container-narrow); }

.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section--soft { background: var(--color-surface-soft); }

.section--gradient {
  background: linear-gradient(135deg, #fff5e6 0%, #ffe9f0 50%, #e6f9f6 100%);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-2xl);
}

.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  background: rgba(255, 107, 107, 0.12);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.section-head h2 { margin-bottom: var(--space-md); }

.section-head p {
  font-size: var(--fs-md);
  color: var(--color-muted);
}

.text-center { text-align: center; }

.highlight { color: var(--color-primary); }
.highlight--turquoise { color: var(--color-tertiary); }
.highlight--purple { color: var(--color-quaternary); }
.highlight--yellow { color: #e6a91a; }

/* -------- BOTONES -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
  line-height: 1;
  transition: transform var(--t-normal), box-shadow var(--t-normal), background var(--t-normal);
  white-space: nowrap;
  text-align: center;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-pop);
}
.btn--primary:hover { background: var(--color-primary-dark); box-shadow: 0 16px 36px rgba(229, 75, 75, 0.4); }

.btn--secondary {
  background: var(--color-ink);
  color: white;
}
.btn--secondary:hover { background: #2d3a52; }

.btn--ghost {
  background: white;
  color: var(--color-ink);
  border: 2px solid var(--color-ink);
}
.btn--ghost:hover { background: var(--color-ink); color: white; }

.btn--whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover { background: #1fb858; }

.btn--lg { padding: 1.1rem 2.25rem; font-size: var(--fs-md); }
.btn--block { width: 100%; }

/* -------- HEADER & NAV -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(27, 42, 65, 0.06);
  transition: box-shadow var(--t-normal);
}

.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--space-lg);
  max-width: var(--container);
  margin: 0 auto;
  gap: var(--space-lg);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-ink);
  flex-shrink: 0;
}

.nav__brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.nav__brand-logo {
  height: 56px;
  width: auto;
  display: block;
  max-width: 100%;
  transition: transform var(--t-fast);
}

.nav__brand:hover .nav__brand-logo { transform: scale(1.04); }

.nav__brand-text { line-height: 1.05; }
.nav__brand-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .nav__brand-logo { height: 42px; }
}

/* Footer logo */
.footer-brand__logo {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: var(--space-md);
  filter: brightness(1.1);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__link {
  position: relative;
  padding: 0.55rem 0.85rem;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav__link:hover { color: var(--color-primary); background: rgba(255, 107, 107, 0.08); }
.nav__link.is-active { color: var(--color-primary); }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

.nav__cta { margin-left: var(--space-sm); }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-ink);
  color: white;
  align-items: center;
  justify-content: center;
}

.nav__toggle span {
  position: relative;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  display: block;
  transition: transform var(--t-fast);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform var(--t-fast), top var(--t-fast);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }

.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* -------- HERO -------- */
.hero {
  position: relative;
  padding: var(--space-3xl) 0 var(--space-4xl);
  overflow: hidden;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe9f0 52%, #e9f9f5 100%); /* Opción 1 · melocotón cálido */
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--color-secondary), transparent 70%);
  top: -120px;
  left: -100px;
}

.hero::after {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, var(--color-pink), transparent 70%);
  bottom: -180px;
  right: -120px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-lg);
}

.hero__eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--color-tertiary);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

.hero h1 {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-lg);
}

.hero h1 .word-pop {
  display: inline-block;
  background: linear-gradient(120deg, var(--color-primary), var(--color-quaternary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: var(--fs-md);
  color: var(--color-muted);
  margin-bottom: var(--space-xl);
  max-width: 560px;
}

.hero__cta { display: flex; gap: var(--space-md); flex-wrap: wrap; margin-bottom: var(--space-2xl); }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 540px;
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--color-ink);
  line-height: 1;
}

.hero__stat span {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  display: block;
  margin-top: 0.25rem;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
}

.hero__shape {
  position: absolute;
  inset: 8%;
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-quaternary));
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  animation: morph 14s ease-in-out infinite;
}

.hero__shape-2 {
  position: absolute;
  inset: 22%;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  border-radius: 45% 55% 60% 40% / 60% 40% 60% 40%;
  animation: morph 10s ease-in-out infinite reverse;
  opacity: 0.92;
}

.hero__emoji {
  position: absolute;
  font-size: 4rem;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
  z-index: 2;
}

.hero__emoji--top { top: 8%; right: 14%; animation: float 5s ease-in-out infinite; }
.hero__emoji--center { top: 42%; left: 38%; font-size: 5.5rem; animation: float 7s ease-in-out infinite 0.4s; z-index: 3; }
.hero__emoji--bottom { bottom: 10%; left: 8%; animation: float 6s ease-in-out infinite 0.8s; }
.hero__emoji--right { bottom: 22%; right: 4%; animation: float 5.5s ease-in-out infinite 1.2s; }
.hero__emoji--corner { top: 18%; left: 0%; font-size: 3rem; animation: float 6s ease-in-out infinite 1.6s; }

.hero__badge {
  position: absolute;
  background: white;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: var(--fs-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 4;
}

.hero__badge--top { top: 4%; left: -8%; }
.hero__badge--bottom { bottom: 6%; right: -4%; }

.hero__badge .dot {
  width: 10px; height: 10px;
  background: var(--color-tertiary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.2);
}

@keyframes morph {
  0%, 100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
  33% { border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%; }
  66% { border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(46, 196, 182, 0); }
}

/* -------- TRUST BAR -------- */
.trust {
  background: white;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.trust__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  box-shadow: var(--shadow-sm);
}

.trust__item strong {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  color: var(--color-ink);
}

.trust__item span {
  font-size: var(--fs-xs);
  color: var(--color-muted);
}

/* -------- SERVICES GRID -------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  position: relative;
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-fast);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--card-accent, var(--color-secondary));
  opacity: 0.18;
  transform: translate(40%, -40%);
  transition: transform var(--t-slow);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: translate(28%, -28%) scale(1.4); }

.service-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--card-accent, var(--color-secondary));
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
  color: white;
}

.service-card h3 { margin-bottom: 0.5rem; position: relative; z-index: 1; }

.service-card p {
  color: var(--color-muted);
  font-size: var(--fs-sm);
  position: relative; z-index: 1;
  flex-grow: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-md);
  font-weight: 700;
  color: var(--color-primary);
  font-size: var(--fs-sm);
  position: relative; z-index: 1;
  transition: gap var(--t-fast);
}
.service-card:hover .service-card__link { gap: 0.7rem; }

.service-card--coral { --card-accent: var(--color-primary); }
.service-card--turquoise { --card-accent: var(--color-tertiary); }
.service-card--purple { --card-accent: var(--color-quaternary); }
.service-card--yellow { --card-accent: var(--color-secondary); }
.service-card--pink { --card-accent: var(--color-pink); }
.service-card--ink { --card-accent: var(--color-ink); }

/* -------- BANNER (Inclusión) -------- */
.banner {
  background: linear-gradient(135deg, var(--color-quaternary), var(--color-tertiary));
  color: white;
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 201, 60, 0.25), transparent 50%);
  pointer-events: none;
}

.banner > * { position: relative; z-index: 1; }
.banner h2 { color: white; font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: var(--space-md); }
.banner p { font-size: var(--fs-md); opacity: 0.95; max-width: 720px; margin: 0 auto var(--space-xl); }

/* -------- CAMP CARD -------- */
.camps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.camp-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  display: flex;
  flex-direction: column;
}

.camp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.camp-card__header {
  padding: var(--space-xl);
  background: var(--camp-bg, linear-gradient(135deg, var(--color-secondary), var(--color-primary)));
  color: white;
  position: relative;
  overflow: hidden;
}

.camp-card__header::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 200px; height: 200px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.camp-card__emoji {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  position: relative; z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
}

.camp-card__title {
  color: white;
  font-size: var(--fs-xl);
  margin-bottom: 0.4rem;
  position: relative; z-index: 1;
}

.camp-card__dates {
  font-size: var(--fs-sm);
  font-weight: 700;
  opacity: 0.95;
  position: relative; z-index: 1;
}

.camp-card__body {
  padding: var(--space-xl);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.camp-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.camp-card__chip {
  font-size: var(--fs-xs);
  padding: 0.3rem 0.75rem;
  background: var(--color-surface-soft);
  border-radius: var(--radius-pill);
  font-weight: 700;
  color: var(--color-ink);
}

.camp-card__body p {
  color: var(--color-muted);
  font-size: var(--fs-sm);
  flex-grow: 1;
}

.camp-card__features {
  margin: var(--space-md) 0;
}

.camp-card__features li {
  font-size: var(--fs-sm);
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.camp-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-tertiary);
  font-weight: 800;
}

.camp-card--summer { --camp-bg: linear-gradient(135deg, #ffc93c, #ff6b6b); }
.camp-card--winter { --camp-bg: linear-gradient(135deg, #2ec4b6, #7b68ee); }
.camp-card--spring { --camp-bg: linear-gradient(135deg, #ff9ec7, #ffc93c); }
.camp-card--easter { --camp-bg: linear-gradient(135deg, #b8e6d9, #2ec4b6); }
.camp-card--carnival { --camp-bg: linear-gradient(135deg, #7b68ee, #ff9ec7); }
.camp-card--mini { --camp-bg: linear-gradient(135deg, #ff6b6b, #7b68ee); }

/* -------- VALUES (Quiénes somos) -------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.value-item {
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  transition: transform var(--t-normal);
}

.value-item:hover { transform: translateY(-6px); }

.value-item__icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto var(--space-md);
  background: var(--value-bg, var(--color-secondary));
  color: white;
}

.value-item h3 { margin-bottom: 0.5rem; font-size: var(--fs-lg); }
.value-item p { color: var(--color-muted); font-size: var(--fs-sm); }

/* -------- TESTIMONIALS -------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.testimonial {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  position: relative;
  border: 1px solid var(--color-border);
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 8px; left: 16px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--color-secondary);
  line-height: 1;
  opacity: 0.5;
}

.testimonial__rating {
  color: #ffc93c;
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.testimonial__text {
  font-size: var(--fs-base);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-quaternary));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: var(--fs-sm);
}

.testimonial__author strong { display: block; font-size: var(--fs-sm); }
.testimonial__author span { font-size: var(--fs-xs); color: var(--color-muted); }

/* -------- FAQ -------- */
.faq { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--t-fast);
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-item summary {
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
  color: var(--color-ink);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform var(--t-fast);
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item__body {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--color-muted);
}

/* -------- CTA SECTION -------- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary), #ff8e53);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 50%);
}

.cta-section > * { position: relative; }
.cta-section h2 { color: white; }
.cta-section p { font-size: var(--fs-md); opacity: 0.95; max-width: 600px; margin: var(--space-md) auto var(--space-xl); }

.cta-section__buttons { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }
.cta-section .btn--ghost { color: white; border-color: white; background: transparent; }
.cta-section .btn--ghost:hover { background: white; color: var(--color-primary); }

/* -------- FOOTER -------- */
.site-footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-4xl) 0 var(--space-lg);
  margin-top: var(--space-4xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand h3 { color: white; margin-bottom: var(--space-sm); font-size: var(--fs-xl); }
.footer-brand p { font-size: var(--fs-sm); margin-bottom: var(--space-md); opacity: 0.8; }

.footer-col h4 {
  color: white;
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
  font-family: var(--font-display);
}

.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: var(--fs-sm);
  opacity: 0.75;
  transition: opacity var(--t-fast), color var(--t-fast);
}
.footer-col ul li a:hover { opacity: 1; color: var(--color-secondary); }

.footer-contact li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: var(--fs-sm);
  align-items: flex-start;
}

.footer-contact li::before {
  content: var(--icon, '·');
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact .ico-pin { --icon: '📍'; }
.footer-contact .ico-tel { --icon: '📞'; }
.footer-contact .ico-mail { --icon: '✉️'; }
.footer-contact .ico-clock { --icon: '🕒'; }

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: var(--space-md);
}

.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: background var(--t-fast), transform var(--t-fast);
}

.footer-social a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  opacity: 0.65;
}

.footer-bottom a:hover { color: var(--color-secondary); opacity: 1; }

/* -------- WHATSAPP FLOATING -------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 60;
  transition: transform var(--t-normal), box-shadow var(--t-normal);
  animation: wa-bounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.55;
  animation: wa-ring 2s ease-out infinite;
}

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes wa-ring {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* -------- BREADCRUMBS -------- */
.breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-sm);
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.breadcrumbs li:not(:last-child)::after { content: '›'; margin-left: 0.5rem; opacity: 0.6; }
.breadcrumbs a:hover { color: var(--color-primary); }

/* -------- PAGE HEADER -------- */
.page-header {
  padding: var(--space-3xl) 0;
  text-align: center;
  background: var(--color-surface-soft);
  position: relative;
  overflow: hidden;
}

.page-header::before,
.page-header::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.4;
}

.page-header::before {
  width: 280px; height: 280px;
  background: var(--page-accent-1, var(--color-secondary));
  top: -80px; left: -60px;
}

.page-header::after {
  width: 320px; height: 320px;
  background: var(--page-accent-2, var(--color-pink));
  bottom: -120px; right: -80px;
}

.page-header > .container { position: relative; z-index: 1; }

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: var(--space-md);
}

.page-header p {
  font-size: var(--fs-md);
  color: var(--color-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* -------- CONTACT SECTION -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: stretch;
}

.contact-info {
  background: linear-gradient(135deg, var(--color-quaternary), var(--color-primary));
  color: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
}

.contact-info h3 { color: white; margin-bottom: var(--space-md); }
.contact-info > p { opacity: 0.92; margin-bottom: var(--space-xl); }

.contact-info ul li {
  display: flex;
  gap: 1rem;
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.contact-info ul li strong { display: block; font-size: var(--fs-sm); margin-bottom: 0.15rem; }
.contact-info ul li span, .contact-info ul li a { font-size: var(--fs-sm); opacity: 0.95; }
.contact-info ul li a:hover { text-decoration: underline; }

.contact-info__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form {
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.form-group { margin-bottom: var(--space-md); }
.form-group label { display: block; font-weight: 700; font-size: var(--fs-sm); margin-bottom: 0.4rem; color: var(--color-ink); }

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-soft);
  transition: border-color var(--t-fast), background var(--t-fast);
  font-size: var(--fs-sm);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background: white;
}

textarea.form-control { min-height: 130px; resize: vertical; }

/* -------- SPLIT (image+text) -------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.split--reverse > :first-child { order: 2; }

.split__visual {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-quaternary));
}

.split__visual--alt { background: linear-gradient(135deg, var(--color-secondary), var(--color-primary)); }

.split__visual span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(4rem, 10vw, 8rem);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.split__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 60%);
}

.split h2 { margin-bottom: var(--space-md); }
.split p { color: var(--color-muted); margin-bottom: var(--space-md); }

.split__list { margin: var(--space-md) 0 var(--space-lg); }
.split__list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 2rem;
  font-size: var(--fs-base);
}

.split__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-quaternary));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* -------- PRICE TABLE -------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.price-card {
  background: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  transition: transform var(--t-normal), border-color var(--t-normal), box-shadow var(--t-normal);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.price-card--featured {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, white, #fff5f0);
  box-shadow: var(--shadow-md);
}

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-card h3 { margin-bottom: 0.5rem; }
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: var(--space-md) 0;
}

.price-card__price strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-primary);
  line-height: 1;
}
.price-card__price span { font-size: var(--fs-sm); color: var(--color-muted); }

.price-card ul { margin: var(--space-md) 0; flex-grow: 1; }
.price-card ul li {
  padding: 0.4rem 0 0.4rem 1.6rem;
  position: relative;
  font-size: var(--fs-sm);
}
.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-tertiary);
  font-weight: 800;
}

/* -------- HEADER VARIATIONS -------- */
.page-header--camps { --page-accent-1: var(--color-secondary); --page-accent-2: var(--color-primary); }
.page-header--birthday { --page-accent-1: var(--color-pink); --page-accent-2: var(--color-secondary); }
.page-header--workshops { --page-accent-1: var(--color-tertiary); --page-accent-2: var(--color-quaternary); }
.page-header--lse { --page-accent-1: var(--color-quaternary); --page-accent-2: var(--color-pink); }
.page-header--respite { --page-accent-1: var(--color-mint); --page-accent-2: var(--color-tertiary); }
.page-header--schools { --page-accent-1: var(--color-secondary); --page-accent-2: var(--color-tertiary); }
.page-header--play { --page-accent-1: var(--color-pink); --page-accent-2: var(--color-tertiary); }

/* -------- COOKIE BANNER -------- */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 70;
  font-size: var(--fs-sm);
  display: none;
}

.cookie-banner.is-visible { display: block; animation: slide-up 0.4s ease forwards; }
.cookie-banner p { margin-bottom: var(--space-md); }
.cookie-banner__buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-banner .btn { padding: 0.6rem 1rem; font-size: var(--fs-xs); }

@keyframes slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* -------- LISTS BLOCK -------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.feature {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.feature__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.feature h4 { margin-bottom: 0.25rem; font-size: var(--fs-base); }
.feature p { color: var(--color-muted); font-size: var(--fs-sm); }

.feature--turquoise { border-color: var(--color-tertiary); }
.feature--purple { border-color: var(--color-quaternary); }
.feature--yellow { border-color: var(--color-secondary); }

/* -------- ANIMATIONS -------- */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------- RESPONSIVE -------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 420px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --space-4xl: 4rem; --space-3xl: 3rem; }

  .nav__menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: var(--space-lg);
    border-top: 1px solid var(--color-border);
    transform: translateX(100%);
    transition: transform var(--t-slow);
    align-items: stretch;
    overflow-y: auto;
  }

  .nav__menu .nav__link {
    padding: var(--space-md);
    font-size: var(--fs-md);
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }

  .nav__cta { margin: var(--space-md) 0 0; }

  .nav.is-open .nav__menu { transform: translateX(0); }

  .nav__toggle { display: flex; }

  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }

  .footer-grid { grid-template-columns: 1fr; }

  .hero__stats { grid-template-columns: repeat(3, 1fr); }
  .hero__stat strong { font-size: var(--fs-xl); }

  .banner, .cta-section, .contact-info, .contact-form { padding: var(--space-xl); }

  .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: var(--space-md); }
}

@media (max-width: 480px) {
  .nav__brand-text span { display: none; }
  .hero__stats { gap: var(--space-md); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}

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

/* -------- PRINT -------- */
@media print {
  .site-header, .whatsapp-float, .cookie-banner, .nav__cta, .site-footer,
  .sticky-mobile-cta, .exit-popup, .scroll-progress, .lang-switch { display: none; }
  body { background: white; color: black; }
  .container { max-width: 100%; padding: 0; }
}

/* ============================================================
   ENHANCEMENTS · v2
   ============================================================ */

/* -------- DARK MODE AUTO — DESACTIVADO --------
   Se retiró el modo oscuro automático: con el sistema en modo oscuro el fondo
   salía negro y los textos no se leían. La web usa siempre la paleta pastel
   melocotón (modo claro). No reactivar sin corregir el contraste de todos los textos. */

/* -------- SCROLL PROGRESS -------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-tertiary));
  z-index: 90;
  transition: width 80ms linear;
}

/* -------- STICKY MOBILE CTA -------- */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 0.6rem var(--space-md);
  display: none;
  gap: 0.5rem;
  z-index: 55;
  box-shadow: 0 -4px 16px rgba(27, 42, 65, 0.08);
}

.sticky-mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: var(--fs-sm);
}

.sticky-mobile-cta__call { background: var(--color-ink); color: white; }
.sticky-mobile-cta__wa { background: #25d366; color: white; }
.sticky-mobile-cta__form { background: var(--color-primary); color: white; }

@media (max-width: 768px) {
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 64px; }
  .whatsapp-float { bottom: 76px; }
  .cookie-banner { bottom: 76px; }
}

/* -------- EXIT POPUP / LEAD MAGNET -------- */
.exit-popup {
  position: fixed;
  inset: 0;
  background: rgba(11, 14, 22, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: var(--space-md);
  animation: fade-in 0.3s ease;
}

.exit-popup.is-visible { display: flex; }

.exit-popup__inner {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 460px;
  width: 100%;
  padding: var(--space-2xl);
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: pop-in 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.exit-popup__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-surface-soft);
  font-size: 1.2rem;
  color: var(--color-muted);
  display: grid;
  place-items: center;
  transition: background var(--t-fast), color var(--t-fast);
}
.exit-popup__close:hover { background: var(--color-primary); color: white; }

.exit-popup__icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 8px 16px rgba(255, 107, 107, 0.3));
}

.exit-popup h3 { margin-bottom: var(--space-sm); font-size: var(--fs-xl); }
.exit-popup p { color: var(--color-muted); margin-bottom: var(--space-lg); }
.exit-popup form { display: flex; flex-direction: column; gap: var(--space-sm); }
.exit-popup small { color: var(--color-muted); font-size: var(--fs-xs); margin-top: 0.5rem; }

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pop-in {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* -------- LIGHTBOX & GALLERY -------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
}

.gallery__item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  display: grid;
  place-items: center;
  font-size: 3.5rem;
  transition: transform var(--t-normal);
}

.gallery__item:nth-child(2) { background: linear-gradient(135deg, var(--color-tertiary), var(--color-quaternary)); }
.gallery__item:nth-child(3) { background: linear-gradient(135deg, var(--color-pink), var(--color-secondary)); }
.gallery__item:nth-child(4) { background: linear-gradient(135deg, var(--color-quaternary), var(--color-primary)); }
.gallery__item:nth-child(5) { background: linear-gradient(135deg, var(--color-secondary), var(--color-tertiary)); }
.gallery__item:nth-child(6) { background: linear-gradient(135deg, var(--color-primary), var(--color-pink)); }
.gallery__item:nth-child(7) { background: linear-gradient(135deg, var(--color-tertiary), var(--color-secondary)); }
.gallery__item:nth-child(8) { background: linear-gradient(135deg, var(--color-quaternary), var(--color-tertiary)); }

.gallery__item:hover { transform: scale(1.04); }

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.gallery__item::after {
  content: '🔍';
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(255, 255, 255, 0.9);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity var(--t-fast);
}

.gallery__item:hover::after { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 110;
  padding: var(--space-md);
  animation: fade-in 0.25s ease;
}

.lightbox.is-visible { display: flex; }

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12rem;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.5));
}

.lightbox__caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: var(--fs-md);
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background var(--t-fast);
  backdrop-filter: blur(10px);
}

.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--color-primary); }

/* -------- TEAM SECTION -------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.team-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform var(--t-normal), box-shadow var(--t-normal);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--avatar-bg, var(--color-primary)), var(--avatar-bg-2, var(--color-secondary)));
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.team-card h3 { font-size: var(--fs-lg); margin-bottom: 0.25rem; }
.team-card__role {
  display: block;
  font-size: var(--fs-sm);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.team-card p { color: var(--color-muted); font-size: var(--fs-sm); }

.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: var(--space-md);
}
.team-card__tag {
  padding: 0.3rem 0.7rem;
  background: var(--color-surface-soft);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-ink);
}

/* -------- PARTNERS / SCHOOLS LOGOS -------- */
.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.partner-logo {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: transform var(--t-normal), box-shadow var(--t-normal);
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.partner-logo__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-quaternary));
  margin: 0 auto var(--space-sm);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.4rem;
}

.partner-logo strong { display: block; font-size: var(--fs-sm); color: var(--color-ink); }
.partner-logo span { display: block; font-size: var(--fs-xs); color: var(--color-muted); margin-top: 0.2rem; }

/* -------- NEWSLETTER -------- */
.newsletter {
  background: linear-gradient(135deg, var(--color-quaternary), var(--color-tertiary));
  color: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255, 201, 60, 0.3), transparent 60%);
}

.newsletter > * { position: relative; }
.newsletter h2 { color: white; margin-bottom: var(--space-sm); }
.newsletter p { opacity: 0.95; max-width: 540px; margin: 0 auto var(--space-lg); }

.newsletter form {
  display: flex;
  gap: 0.5rem;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.95rem 1.2rem;
  border-radius: var(--radius-pill);
  border: none;
  font-size: var(--fs-base);
  outline: none;
  background: white;
  color: var(--color-ink);
}

.newsletter button {
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-pill);
  background: var(--color-secondary);
  color: var(--color-ink);
  font-weight: 800;
  font-family: var(--font-display);
  transition: transform var(--t-fast), background var(--t-fast);
}

.newsletter button:hover { transform: translateY(-2px); background: #ffd75a; }

.newsletter small { display: block; margin-top: var(--space-md); font-size: var(--fs-xs); opacity: 0.8; }

/* -------- CASE STUDY (success story) -------- */
.case-study {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.case-study::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
}

.case-study__quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--color-ink);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-left: var(--space-lg);
}

.case-study__quote::before {
  content: '\201C';
  position: absolute;
  left: -10px; top: -20px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: var(--color-primary);
  opacity: 0.3;
  line-height: 1;
}

.case-study__author {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.case-study__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-quaternary));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: 1.5rem;
}

.case-study__author strong { display: block; font-size: var(--fs-md); }
.case-study__author span { font-size: var(--fs-sm); color: var(--color-muted); }

.case-study__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.case-study__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--color-primary);
  line-height: 1;
}

.case-study__stat span {
  font-size: var(--fs-xs);
  color: var(--color-muted);
}

/* -------- CAPACITY CALENDAR (campamentos) -------- */
.capacity {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.capacity-item {
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.capacity__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cap-color, var(--color-tertiary));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--cap-color, var(--color-tertiary)) 25%, transparent);
  flex-shrink: 0;
  animation: pulse-cap 2s infinite;
}

.capacity-item--green { --cap-color: #2ec4b6; }
.capacity-item--yellow { --cap-color: #ffc93c; }
.capacity-item--red { --cap-color: #ff6b6b; }
.capacity-item--full { --cap-color: #6b7280; }

.capacity-item strong { display: block; font-size: var(--fs-sm); }
.capacity-item span { font-size: var(--fs-xs); color: var(--color-muted); }

@keyframes pulse-cap {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--cap-color, var(--color-tertiary)) 25%, transparent); }
  50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--cap-color, var(--color-tertiary)) 0%, transparent); }
}

/* -------- LANG SWITCH -------- */
.lang-switch {
  display: inline-flex;
  background: var(--color-surface-soft);
  border-radius: var(--radius-pill);
  padding: 3px;
  font-size: var(--fs-xs);
  font-weight: 700;
  margin-left: var(--space-sm);
}

.lang-switch a {
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  color: var(--color-muted);
  transition: background var(--t-fast), color var(--t-fast);
}

.lang-switch a.is-active {
  background: var(--color-primary);
  color: white;
}

/* -------- FONT SIZE CONTROLS -------- */
html[data-font-size="lg"] { font-size: 18px; }
html[data-font-size="xl"] { font-size: 20px; }

.a11y-toggle {
  position: fixed;
  bottom: 100px;
  left: 16px;
  background: var(--color-ink);
  color: white;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 700;
  z-index: 55;
  display: flex;
  gap: 0.3rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.a11y-toggle button {
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.15);
  transition: background var(--t-fast);
}

.a11y-toggle button:hover { background: var(--color-primary); }
.a11y-toggle button.is-active { background: var(--color-primary); }

@media (max-width: 768px) {
  .a11y-toggle { display: none; }
}

/* -------- ICON SVG STANDARD -------- */
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  fill: currentColor;
}

.icon--lg { width: 1.5em; height: 1.5em; }
.icon--xl { width: 2.5em; height: 2.5em; }

/* -------- URGENCY BANNER -------- */
.urgency {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  color: white;
  padding: 0.55rem var(--space-md);
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.urgency::before {
  content: '⚡';
  animation: shake 1.6s ease-in-out infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-12deg); }
  75% { transform: rotate(12deg); }
}

.urgency a {
  text-decoration: underline;
  font-weight: 800;
}

/* -------- FOOTER LOGO -------- */
.footer-brand__logo {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: var(--space-md);
  filter: brightness(1.1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* ============================================================
   CHAT WIDGET (Marina · WhatsApp redirect)
   ============================================================ */
.chat-launcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 65;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.chat-launcher__bubble {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: white;
  padding: 0.6rem 0.8rem 0.6rem 0.6rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform var(--t-normal), box-shadow var(--t-normal);
  max-width: 280px;
  border: 1px solid var(--color-border);
}

.chat-launcher__bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(27, 42, 65, 0.18);
}

.chat-launcher__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.35);
}

.chat-launcher__avatar::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px; height: 12px;
  background: #25d366;
  border: 2px solid white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.chat-launcher__text {
  font-size: var(--fs-sm);
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-ink);
  text-align: left;
}
.chat-launcher__text small {
  display: block;
  font-weight: 500;
  font-size: var(--fs-xs);
  color: #25d366;
  margin-top: 2px;
}

.chat-launcher__close {
  position: absolute;
  top: -8px; left: -8px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-ink);
  color: white;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.chat-launcher__bubble:hover .chat-launcher__close { opacity: 1; }

.chat-launcher.is-minimized .chat-launcher__bubble { padding: 0; border-radius: 50%; }
.chat-launcher.is-minimized .chat-launcher__text { display: none; }
.chat-launcher.is-minimized .chat-launcher__avatar { width: 60px; height: 60px; font-size: 1.3rem; }

/* Chat panel */
.chat-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: min(380px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 60px));
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(27, 42, 65, 0.25);
  display: none;
  flex-direction: column;
  z-index: 70;
  overflow: hidden;
  border: 1px solid var(--color-border);
  animation: chat-pop 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.chat-panel.is-open { display: flex; }

@keyframes chat-pop {
  0% { transform: translateY(20px) scale(0.95); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.chat-panel__header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-quaternary));
  color: white;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.chat-panel__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  color: var(--color-primary);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  position: relative;
  flex-shrink: 0;
}

.chat-panel__avatar::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 12px; height: 12px;
  background: #25d366;
  border: 2px solid white;
  border-radius: 50%;
}

.chat-panel__title {
  flex: 1;
  line-height: 1.2;
}
.chat-panel__title strong { display: block; font-size: var(--fs-base); }
.chat-panel__title small { font-size: var(--fs-xs); opacity: 0.92; }

.chat-panel__close {
  color: white;
  font-size: 1.4rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background var(--t-fast);
}
.chat-panel__close:hover { background: rgba(255, 255, 255, 0.2); }

.chat-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
  background: var(--color-surface-soft);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.chat-msg {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  max-width: 85%;
  animation: msg-in 0.4s ease;
}

@keyframes msg-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg--bot { align-self: flex-start; }
.chat-msg--user { align-self: flex-end; flex-direction: row-reverse; }

.chat-msg__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.chat-msg__bubble {
  background: white;
  padding: 0.7rem 1rem;
  border-radius: 16px 16px 16px 4px;
  font-size: var(--fs-sm);
  color: var(--color-ink);
  line-height: 1.5;
  box-shadow: 0 2px 6px rgba(27, 42, 65, 0.06);
}

.chat-msg--user .chat-msg__bubble {
  background: var(--color-primary);
  color: white;
  border-radius: 16px 16px 4px 16px;
}

.chat-msg--user .chat-msg__avatar {
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-quaternary));
}

.chat-typing {
  display: inline-flex;
  gap: 4px;
  padding: 0.6rem 1rem;
}
.chat-typing span {
  width: 7px; height: 7px;
  background: var(--color-muted);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

.chat-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 var(--space-md) var(--space-sm) calc(var(--space-md) + 32px + 0.5rem);
  animation: msg-in 0.4s ease 0.1s both;
}

.chat-reply {
  background: white;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 700;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  cursor: pointer;
}

.chat-reply:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-1px);
}

.chat-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25d366;
  color: white;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-top: 0.5rem;
  transition: background var(--t-fast);
}
.chat-action:hover { background: #1fb858; }

.chat-panel__footer {
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid var(--color-border);
  background: white;
  flex-shrink: 0;
}

.chat-form {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.chat-form input {
  flex: 1;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-surface-soft);
  font-size: var(--fs-sm);
  outline: none;
  transition: border-color var(--t-fast);
}
.chat-form input:focus { border-color: var(--color-primary); background: white; }

.chat-form button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  font-size: 1rem;
  display: grid;
  place-items: center;
  transition: background var(--t-fast), transform var(--t-fast);
  flex-shrink: 0;
}
.chat-form button:hover { background: var(--color-primary-dark); transform: rotate(-15deg); }

.chat-panel__legal {
  font-size: var(--fs-xs);
  color: var(--color-muted);
  text-align: center;
  padding: 0.4rem var(--space-md);
  background: var(--color-surface-soft);
  border-top: 1px solid var(--color-border);
}

@media (max-width: 480px) {
  .chat-panel {
    bottom: 76px;
    right: 8px;
    left: 8px;
    width: auto;
    max-height: calc(100vh - 100px);
  }
  .chat-launcher { bottom: 76px; right: 12px; }
  .chat-launcher__text { display: none; }
  .chat-launcher__bubble { padding: 0; border-radius: 50%; }
  .chat-launcher__avatar { width: 56px; height: 56px; }
}

/* ============================================================
   FORM WIZARD (multi-step inscription)
   ============================================================ */
.wizard {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin: 0 auto;
}

.wizard__progress {
  display: flex;
  gap: 0.4rem;
  margin-bottom: var(--space-xl);
}

.wizard__progress-step {
  flex: 1;
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--color-border);
  transition: background var(--t-normal);
}
.wizard__progress-step.is-active,
.wizard__progress-step.is-done { background: var(--color-primary); }
.wizard__progress-step.is-active { background: linear-gradient(90deg, var(--color-primary), var(--color-secondary)); }

.wizard__step-counter {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.wizard__step {
  display: none;
  animation: msg-in 0.4s ease;
}
.wizard__step.is-active { display: block; }

.wizard__step h2 {
  font-size: var(--fs-xl);
  margin-bottom: 0.4rem;
}

.wizard__step > p {
  color: var(--color-muted);
  margin-bottom: var(--space-lg);
}

.wizard__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.wizard__option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: var(--space-md);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
  position: relative;
}

.wizard__option:hover { border-color: var(--color-primary); background: var(--color-surface-soft); }

.wizard__option input { position: absolute; opacity: 0; }

.wizard__option input:checked ~ .wizard__option__check::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
}

.wizard__option:has(input:checked) {
  border-color: var(--color-primary);
  background: rgba(255, 107, 107, 0.06);
}

.wizard__option__check {
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 2px solid var(--color-border);
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.wizard__option:has(input:checked) .wizard__option__check {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.wizard__option__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.wizard__option__body {
  flex: 1;
  line-height: 1.3;
}

.wizard__option__body strong {
  display: block;
  font-size: var(--fs-base);
  color: var(--color-ink);
  margin-bottom: 0.15rem;
}

.wizard__option__body span {
  font-size: var(--fs-xs);
  color: var(--color-muted);
}

.wizard__field {
  margin-bottom: var(--space-md);
}

.wizard__field label {
  display: block;
  font-weight: 700;
  font-size: var(--fs-sm);
  margin-bottom: 0.4rem;
  color: var(--color-ink);
}

.wizard__field label .req { color: var(--color-primary); }

.wizard__field input,
.wizard__field textarea,
.wizard__field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-soft);
  font-size: var(--fs-sm);
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
  font-family: inherit;
}

.wizard__field input:focus,
.wizard__field textarea:focus,
.wizard__field select:focus {
  border-color: var(--color-primary);
  background: white;
}

.wizard__field textarea {
  resize: vertical;
  min-height: 100px;
}

.wizard__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 480px) {
  .wizard__field-row { grid-template-columns: 1fr; }
}

.wizard__field-help {
  font-size: var(--fs-xs);
  color: var(--color-muted);
  margin-top: 0.3rem;
}

.wizard__field-error {
  font-size: var(--fs-xs);
  color: var(--color-primary);
  margin-top: 0.3rem;
  display: none;
}
.wizard__field.has-error input,
.wizard__field.has-error textarea,
.wizard__field.has-error select { border-color: var(--color-primary); }
.wizard__field.has-error .wizard__field-error { display: block; }

.wizard__nav {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.wizard__nav .btn { min-width: 130px; }
.wizard__nav .btn[data-prev]:disabled,
.wizard__nav .btn[data-prev][hidden] { display: none; }

.wizard__summary {
  background: var(--color-surface-soft);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}
.wizard__summary h4 {
  font-size: var(--fs-sm);
  margin-bottom: 0.5rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.wizard__summary dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.4rem 1rem;
  font-size: var(--fs-sm);
}
.wizard__summary dt { color: var(--color-muted); font-weight: 600; }
.wizard__summary dd { color: var(--color-ink); font-weight: 600; }

.wizard__success {
  text-align: center;
  padding: var(--space-xl) 0;
}
.wizard__success__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-quaternary));
  color: white;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  margin: 0 auto var(--space-md);
  animation: pop-in 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.wizard__checkbox {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--color-muted);
  cursor: pointer;
  margin-bottom: var(--space-sm);
}
.wizard__checkbox input { margin-top: 0.2rem; flex-shrink: 0; }
.wizard__checkbox a { color: var(--color-primary); text-decoration: underline; }

/* hide default WhatsApp float when chat is shown */
.has-chat .whatsapp-float { display: none; }

