/* ============================================================
   SUNLIGHTEN ESPAÑA · SISTEMA DE DISEÑO
   Sunmarket Wellness, S.L.U. — Distribuidor autorizado
   v1.0 · abril 2026
   ============================================================ */

/* ===== FUENTES ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400&display=swap');

/* ============================================================
   TOKENS · Variables del sistema
   ============================================================ */
:root {
  /* COLOR · Paleta Sunmarket-Sunlighten */
  --c-deep-darker: #060f13;
  --c-deep: #0b1e24;
  --c-teal-deep: #153a44;
  --c-teal: #1a4a55;
  --c-teal-mid: #2c7a82;
  --c-teal-light: #43bfba;       /* acento Sunmarket */
  --c-cream: #f5f1e8;
  --c-beige: #e8dfd0;
  --c-paper: #fafaf7;
  --c-paper-warm: #f4f0e7;
  --c-ink: #1a2528;
  --c-ink-soft: #4a5c61;
  --c-ink-mute: #8aabb2;
  --c-line: #d4d0c4;
  --c-line-soft: #ece7db;
  --c-gold: #c9a961;
  --c-orange: #d68a3c;            /* acento Sunmarket */
  --c-success: #2d6a4f;
  --c-danger: #b45151;

  /* TIPOGRAFÍA */
  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-ui: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* TAMAÑOS */
  --fs-xs: 0.75rem;       /* 12 */
  --fs-sm: 0.875rem;      /* 14 */
  --fs-base: 1rem;        /* 16 */
  --fs-md: 1.0625rem;     /* 17 */
  --fs-lg: 1.15rem;       /* 18 */
  --fs-xl: 1.4rem;        /* 22 */
  --fs-2xl: 1.8rem;       /* 29 */
  --fs-3xl: clamp(2rem, 4vw, 3.2rem);
  --fs-4xl: clamp(2.5rem, 5.5vw, 4.5rem);

  /* ESPACIADO */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 80px;
  --sp-10: 120px;
  --sp-11: 160px;

  /* RADIOS */
  --r-none: 0;
  --r-sm: 2px;
  --r-md: 6px;
  --r-lg: 14px;
  --r-pill: 100px;

  /* SOMBRAS */
  --shadow-sm: 0 4px 12px rgba(11,30,36,0.06);
  --shadow-md: 0 12px 32px rgba(11,30,36,0.10);
  --shadow-lg: 0 24px 60px rgba(11,30,36,0.14);
  --shadow-hero: 0 30px 80px rgba(0,0,0,0.4);

  /* TRANSICIONES */
  --t-fast: 0.2s ease;
  --t-base: 0.3s ease;
  --t-slow: 0.5s ease;

  /* CONTENEDORES */
  --max-w: 1280px;
  --max-w-narrow: 880px;
  --max-w-wide: 1440px;
  --pad-x: 32px;
}

/* ============================================================
   RESET BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
sup { font-size: 0.55em; vertical-align: super; }

/* ============================================================
   TIPOGRAFÍA · Jerarquía display
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--c-ink);
}
h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.3rem; }
p { margin-bottom: var(--sp-4); }
strong, b { font-weight: 500; color: var(--c-ink); }

.kicker {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-teal-light);
  display: inline-block;
  margin-bottom: var(--sp-5);
}
.kicker--gold { color: var(--c-gold); }
.kicker--orange { color: var(--c-orange); }

.lead {
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: var(--c-ink-soft);
  font-weight: 300;
}

.eyebrow {
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-ink-mute);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.container--narrow { max-width: var(--max-w-narrow); }
.container--wide { max-width: var(--max-w-wide); }

.section { padding: var(--sp-10) 0; }
.section--sm { padding: var(--sp-8) 0; }
.section--lg { padding: var(--sp-11) 0; }

.section--cream { background: var(--c-cream); }
.section--paper { background: var(--c-paper); }
.section--paper-warm { background: var(--c-paper-warm); }
.section--dark { background: var(--c-deep); color: var(--c-cream); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--c-cream); }
.section--dark .lead { color: rgba(245,241,232,0.78); }
.section--dark a { color: var(--c-cream); }
.section--gradient {
  background: linear-gradient(145deg, var(--c-deep-darker) 0%, var(--c-deep) 35%, var(--c-teal) 100%);
  color: var(--c-cream);
}
.section--gradient h1, .section--gradient h2, .section--gradient h3 { color: var(--c-cream); }

.section__head { text-align: center; max-width: 720px; margin: 0 auto var(--sp-9); }
.section__head h2 { margin-bottom: var(--sp-5); }
.section__head--left { text-align: left; margin-left: 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(11,30,36,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__inner {
  display: flex; justify-content: space-between; align-items: center;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
}
.nav__brand {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-cream);
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 1.1;
}
.nav__brand small {
  display: block;
  font-family: var(--f-ui);
  font-size: 9px;
  letter-spacing: 0.3em;
  opacity: 0.6;
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.25em;
}
.nav__menu { display: flex; gap: 36px; align-items: center; }
.nav__menu a {
  color: var(--c-cream);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.85;
  transition: opacity var(--t-fast);
}
.nav__menu a:hover, .nav__menu a.is-active { opacity: 1; }
.nav__cta {
  background: transparent;
  border: 1px solid rgba(245,241,232,0.4);
  color: var(--c-cream);
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: all var(--t-base);
}
.nav__cta:hover { background: var(--c-teal-light); border-color: var(--c-teal-light); }

@media (max-width: 900px) {
  .nav__menu { display: none; }
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-none);
  cursor: pointer;
  transition: all var(--t-base);
  border: 1px solid;
  text-align: center;
  line-height: 1.2;
}
.btn--primary { background: var(--c-cream); color: var(--c-deep); border-color: var(--c-cream); }
.btn--primary:hover { background: transparent; color: var(--c-cream); }
.btn--accent { background: var(--c-teal-light); color: var(--c-deep); border-color: var(--c-teal-light); }
.btn--accent:hover { background: transparent; color: var(--c-teal-light); }
.btn--ghost { background: transparent; color: var(--c-cream); border-color: rgba(245,241,232,0.5); }
.btn--ghost:hover { background: var(--c-cream); color: var(--c-deep); border-color: var(--c-cream); }
.btn--dark { background: var(--c-deep); color: var(--c-cream); border-color: var(--c-deep); }
.btn--dark:hover { background: transparent; color: var(--c-deep); }
.btn--outline { background: transparent; color: var(--c-deep); border-color: var(--c-deep); }
.btn--outline:hover { background: var(--c-deep); color: var(--c-cream); }
.btn--lg { padding: 20px 44px; font-size: 13px; }
.btn--sm { padding: 12px 26px; font-size: 11px; }

.btn-group { display: flex; gap: var(--sp-5); flex-wrap: wrap; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--c-deep-darker) 0%, var(--c-deep) 35%, var(--c-teal) 100%);
  display: flex; align-items: center;
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  color: var(--c-cream);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(67,191,186,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero--compact { min-height: 70vh; padding: 160px 0 100px; }
.hero--page { min-height: 50vh; padding: 160px 0 80px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__copy h1 { color: var(--c-cream); margin-bottom: 28px; }
.hero__copy h1 em {
  font-style: italic;
  color: var(--c-teal-light);
  font-weight: 300;
}
.hero__copy .lead {
  color: rgba(245,241,232,0.78);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero__image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a3338 0%, #2c5057 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
}
.hero__image[data-placeholder]::after {
  content: attr(data-placeholder);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,241,232,0.4);
  font-size: 12px; letter-spacing: 0.1em;
  text-align: center; padding: 20px;
}
.hero--centered .hero__grid { grid-template-columns: 1fr; text-align: center; max-width: 880px; margin: 0 auto; }
.hero--centered .hero__copy .lead { margin-left: auto; margin-right: auto; }
.hero--centered .btn-group { justify-content: center; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 50px; }
  .hero__image { aspect-ratio: 5/4; }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(245,241,232,0.6);
  margin-bottom: var(--sp-7);
}
.breadcrumb a { color: rgba(245,241,232,0.8); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--c-teal-light); }
.breadcrumb__sep { margin: 0 12px; opacity: 0.4; }

.breadcrumb--light { color: var(--c-ink-soft); }
.breadcrumb--light a { color: var(--c-deep); }

/* ============================================================
   PILLARS · 4 columnas con bordes
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.pillar {
  padding: 50px 30px;
  border-right: 1px solid var(--c-line);
}
.pillar:last-child { border-right: none; }
.pillar__num {
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--c-teal-light);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
  display: block;
}
.pillar h3 { font-size: 1.4rem; margin-bottom: 14px; }
.pillar p { font-size: 0.95rem; color: var(--c-ink-soft); line-height: 1.65; margin: 0; }

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 1px solid var(--c-line); }
}
@media (max-width: 600px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--c-line); }
  .pillar:last-child { border-bottom: none; }
}

/* ============================================================
   RANGE CARDS · Cards de gama
   ============================================================ */
.range-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.range-grid--3 { grid-template-columns: repeat(3, 1fr); }
.range-card {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.range-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.range-card__image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-teal) 100%);
  position: relative;
}
.range-card__image[data-placeholder]::after {
  content: attr(data-placeholder);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,241,232,0.3);
  font-size: 11px; letter-spacing: 0.15em;
  text-align: center; padding: 10px;
}
.range-card__body { padding: 40px; flex: 1; display: flex; flex-direction: column; }
.range-card__body h3 { margin-bottom: 8px; }
.range-card .kicker { margin-bottom: 18px; font-size: 10px; }
.range-card__body p { font-size: 0.95rem; color: var(--c-ink-soft); margin-bottom: 24px; flex: 1; }
.range-card__link {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-deep);
  border-bottom: 1px solid var(--c-deep);
  padding-bottom: 6px;
  align-self: flex-start;
  font-weight: 600;
  transition: gap var(--t-base);
  display: inline-flex; gap: 8px;
}
.range-card__link:hover { gap: 14px; }

@media (max-width: 900px) { .range-grid, .range-grid--3 { grid-template-columns: 1fr; } }

/* ============================================================
   BENEFICIOS GRID 8 (numerados)
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(245,241,232,0.15);
  margin-top: var(--sp-8);
}
.benefit-cell {
  padding: 40px 28px;
  border-right: 1px solid rgba(245,241,232,0.15);
  border-bottom: 1px solid rgba(245,241,232,0.15);
  transition: background var(--t-base);
  text-decoration: none;
  color: inherit;
  display: block;
}
.benefit-cell:nth-child(4n) { border-right: none; }
.benefit-cell:hover { background: rgba(255,255,255,0.03); }
.benefit-cell__num {
  font-family: var(--f-display);
  font-size: 0.85rem;
  color: var(--c-teal-light);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  display: block;
}
.benefit-cell h3 { font-size: 1.3rem; color: var(--c-cream); margin-bottom: 12px; }
.benefit-cell p { font-size: 0.88rem; color: rgba(245,241,232,0.65); line-height: 1.55; margin: 0; }

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefit-cell:nth-child(4n) { border-right: 1px solid rgba(245,241,232,0.15); }
  .benefit-cell:nth-child(2n) { border-right: none; }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-cell { border-right: none !important; }
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.endorsements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 70px;
}
.endorsement__quote {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-ink);
  margin-bottom: 28px;
  position: relative;
  padding-left: 30px;
}
.endorsement__quote::before {
  content: '"';
  position: absolute; left: 0; top: -10px;
  font-size: 3rem; color: var(--c-teal-light);
  line-height: 1; font-family: var(--f-display);
}
.endorsement__author {
  font-family: var(--f-ui);
  font-size: 13px;
  color: var(--c-ink);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-style: normal;
}
.endorsement__author small {
  display: block;
  color: var(--c-ink-soft);
  font-weight: 400;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.05em;
}
@media (max-width: 800px) { .endorsements { grid-template-columns: 1fr; gap: 50px; } }

/* ============================================================
   PRENSA
   ============================================================ */
.press { text-align: center; padding: 80px 0 0; border-top: 1px solid var(--c-line); margin-top: 80px; }
.press__label {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-bottom: 30px;
}
.press__media {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 50px;
}
.press__media span {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--c-ink-soft);
  letter-spacing: 0.05em;
  font-style: italic;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: linear-gradient(145deg, var(--c-deep-darker), var(--c-teal-deep) 50%, var(--c-teal) 100%);
  color: var(--c-cream);
  padding: 140px 0;
  text-align: center;
}
.cta-final h2 { color: var(--c-cream); margin-bottom: 24px; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-final .lead { color: rgba(245,241,232,0.75); max-width: 620px; margin: 0 auto 40px; }
.cta-final__buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PROCESS STEPS (proceso de fabricación, etc.)
   ============================================================ */
.process { display: grid; gap: 30px; counter-reset: step; }
.process__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--c-line);
}
.process__step:last-child { border-bottom: none; }
.process__num {
  font-family: var(--f-display);
  font-size: 3rem;
  color: var(--c-teal-light);
  line-height: 1;
  font-weight: 300;
}
.process__step h3 { margin-bottom: 12px; }
.process__step p { color: var(--c-ink-soft); margin: 0; }
@media (max-width: 600px) {
  .process__step { grid-template-columns: 1fr; gap: 12px; }
  .process__num { font-size: 2.2rem; }
}

/* ============================================================
   STAT BLOCKS · datos destacados
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
}
.stats--dark { background: rgba(255,255,255,0.04); border: 1px solid rgba(245,241,232,0.1); }
.stat {
  padding: 50px 30px;
  text-align: center;
  border-right: 1px solid var(--c-line);
}
.stats--dark .stat { border-right: 1px solid rgba(245,241,232,0.1); }
.stat:last-child { border-right: none; }
.stat__value {
  font-family: var(--f-display);
  font-size: 3.5rem;
  color: var(--c-deep);
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 300;
}
.stats--dark .stat__value { color: var(--c-teal-light); }
.stat__label {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
}
.stats--dark .stat__label { color: rgba(245,241,232,0.65); }
@media (max-width: 700px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
}

/* ============================================================
   SPECS TABLE · ficha técnica producto
   ============================================================ */
.specs {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--c-line);
}
.specs tr { border-bottom: 1px solid var(--c-line); }
.specs th, .specs td {
  padding: 18px 24px;
  text-align: left;
  font-size: 14px;
  vertical-align: top;
}
.specs th {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-ink-soft);
  width: 220px;
}
.specs td { color: var(--c-ink); }

/* ============================================================
   COMPARISON TABLE · comparativa colecciones
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 18px 16px;
  text-align: center;
  border-bottom: 1px solid var(--c-line);
}
.compare-table thead th {
  background: var(--c-deep);
  color: var(--c-cream);
  font-family: var(--f-ui);
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 13px;
}
.compare-table thead th:first-child { background: var(--c-deep-darker); }
.compare-table tbody th {
  text-align: left;
  font-weight: 500;
  background: var(--c-cream);
  color: var(--c-ink);
  font-family: var(--f-ui);
  font-size: 13px;
}
.compare-table .yes { color: var(--c-success); font-size: 18px; font-weight: 700; }
.compare-table .no { color: var(--c-line); font-size: 18px; }
.compare-table .partial { color: var(--c-orange); font-size: 12px; font-weight: 600; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { border-top: 1px solid var(--c-line); }
.faq__item {
  border-bottom: 1px solid var(--c-line);
}
.faq__question {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--c-ink);
  background: none; border: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.faq__question:hover { color: var(--c-teal); }
.faq__icon {
  font-family: var(--f-ui);
  font-size: 24px;
  color: var(--c-teal-light);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--t-base);
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__answer {
  padding: 0 0 28px;
  color: var(--c-ink-soft);
  max-width: 720px;
}
.faq__answer p { margin-bottom: var(--sp-3); }
.faq__answer p:last-child { margin-bottom: 0; }

/* ============================================================
   FORM
   ============================================================ */
.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__field label {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  font-weight: 600;
}
.form__field input, .form__field textarea, .form__field select {
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  background: var(--c-paper);
  font-family: var(--f-sans);
  font-size: 15px;
  color: var(--c-ink);
  transition: border-color var(--t-fast);
}
.form__field input:focus, .form__field textarea:focus, .form__field select:focus {
  outline: none;
  border-color: var(--c-teal);
}
.form__field textarea { min-height: 120px; resize: vertical; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

/* ============================================================
   ALERTS · advertencias y disclaimers
   ============================================================ */
.alert {
  padding: 24px 28px;
  border-left: 4px solid;
  background: var(--c-cream);
  margin: var(--sp-6) 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.alert--warn { border-left-color: var(--c-orange); background: #fef8f0; }
.alert--danger { border-left-color: var(--c-danger); background: #fdf3f3; }
.alert--info { border-left-color: var(--c-teal-light); background: #f0faf9; }
.alert h4 {
  font-family: var(--f-ui);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--c-ink);
  font-weight: 700;
}

/* ============================================================
   DISCLAIMER STRIP
   ============================================================ */
.disclaimer {
  background: var(--c-beige);
  padding: 30px 0;
  font-size: 12px;
  color: var(--c-ink-soft);
  text-align: center;
  font-style: italic;
  line-height: 1.6;
}
.disclaimer p { margin: 0; max-width: 900px; margin: 0 auto; padding: 0 var(--pad-x); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-deep-darker);
  color: rgba(245,241,232,0.55);
  padding: 80px 0 30px;
  font-size: 14px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer__brand {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--c-cream);
  margin-bottom: 14px;
}
.footer__col h4 {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-cream);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { transition: color var(--t-fast); }
.footer__col a:hover { color: var(--c-cream); }
.footer__bottom {
  border-top: 1px solid rgba(245,241,232,0.1);
  padding-top: 30px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(245,241,232,0.4);
}
.footer__legal { font-size: 11px; margin-bottom: 14px; }
@media (max-width: 800px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__top { grid-template-columns: 1fr; } }

/* ============================================================
   UTILIDADES
   ============================================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: var(--sp-5); }
.mb-8 { margin-bottom: var(--sp-8); }
.mt-8 { margin-top: var(--sp-8); }
.real-img-wrapper {
  background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-teal) 100%);
  position: relative;
  aspect-ratio: 16/10;
}
.real-img-wrapper[data-placeholder]::after {
  content: attr(data-placeholder);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,241,232,0.4);
  font-size: 11px; letter-spacing: 0.15em;
  text-align: center; padding: 12px;
}

/* ============================================================
   COMPONENTES ADICIONALES · v1.1
   ============================================================ */

/* ===== MENÚ MÓVIL (hamburger + drawer) ===== */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--c-cream);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  position: relative;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-cream);
  margin: 5px auto;
  transition: all var(--t-base);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 85%; max-width: 380px;
  height: 100vh;
  background: var(--c-deep);
  padding: 100px 32px 40px;
  transition: right var(--t-base);
  z-index: 99;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
}
.nav__drawer.is-open { right: 0; }
.nav__drawer ul { display: flex; flex-direction: column; gap: 0; }
.nav__drawer li { border-bottom: 1px solid rgba(245,241,232,0.1); }
.nav__drawer a {
  display: block;
  padding: 18px 0;
  color: var(--c-cream);
  font-family: var(--f-display);
  font-size: 1.4rem;
}
.nav__drawer .nav__cta {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: var(--c-teal-light);
  color: var(--c-deep);
  border-radius: 0;
}
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,15,19,0.7);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-base);
  z-index: 98;
}
.nav__overlay.is-open { opacity: 1; visibility: visible; }

@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__menu { display: none; }
}

/* ===== STICKY CTA WHATSAPP ===== */
.sticky-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  background: #25D366;
  color: white;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 90;
  transition: all var(--t-base);
  text-decoration: none;
}
.sticky-cta:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}
.sticky-cta svg { width: 30px; height: 30px; fill: white; }
.sticky-cta__label {
  position: absolute;
  right: 70px;
  background: var(--c-deep);
  color: var(--c-cream);
  padding: 8px 14px;
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-fast);
  pointer-events: none;
}
.sticky-cta:hover .sticky-cta__label { opacity: 1; visibility: visible; }
@media (max-width: 600px) {
  .sticky-cta { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .sticky-cta__label { display: none; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px;
  max-width: 460px;
  background: var(--c-deep);
  color: var(--c-cream);
  padding: 28px 32px;
  z-index: 95;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--c-teal-light);
  font-size: 14px;
  line-height: 1.6;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner h4 {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-teal-light);
  margin-bottom: 12px;
  font-weight: 700;
}
.cookie-banner p { color: rgba(245,241,232,0.85); margin-bottom: 20px; }
.cookie-banner a { color: var(--c-teal-light); border-bottom: 1px solid; }
.cookie-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-banner button {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--t-base);
  border: 1px solid;
}
.cookie-banner__accept {
  background: var(--c-teal-light);
  color: var(--c-deep);
  border-color: var(--c-teal-light);
}
.cookie-banner__accept:hover { background: transparent; color: var(--c-teal-light); }
.cookie-banner__reject {
  background: transparent;
  color: var(--c-cream);
  border-color: rgba(245,241,232,0.4);
}
.cookie-banner__reject:hover { border-color: var(--c-cream); }
.cookie-banner__settings {
  background: transparent;
  color: rgba(245,241,232,0.75);
  border-color: transparent;
  text-decoration: underline;
  padding: 12px 0;
}
@media (max-width: 600px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; padding: 22px; }
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--c-deep);
  color: var(--c-cream);
  padding: 80px 0;
  text-align: center;
}
.newsletter__inner { max-width: 620px; margin: 0 auto; padding: 0 var(--pad-x); }
.newsletter h2 { color: var(--c-cream); font-size: 2.2rem; margin-bottom: 16px; }
.newsletter p { color: rgba(245,241,232,0.7); margin-bottom: 32px; }
.newsletter__form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.newsletter__form input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(245,241,232,0.3);
  background: rgba(255,255,255,0.05);
  color: var(--c-cream);
  font-family: var(--f-sans);
  font-size: 15px;
  border-right: none;
}
.newsletter__form input::placeholder { color: rgba(245,241,232,0.5); }
.newsletter__form input:focus { outline: none; border-color: var(--c-teal-light); }
.newsletter__form button {
  padding: 16px 28px;
  background: var(--c-teal-light);
  color: var(--c-deep);
  border: 1px solid var(--c-teal-light);
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t-base);
}
.newsletter__form button:hover { background: var(--c-cream); border-color: var(--c-cream); }
.newsletter__legal {
  font-size: 11px;
  color: rgba(245,241,232,0.5);
  margin-top: 18px;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .newsletter__form { flex-direction: column; gap: 12px; }
  .newsletter__form input, .newsletter__form button { width: 100%; border: 1px solid rgba(245,241,232,0.3); }
}

/* ===== TABS ===== */
.tabs__nav {
  display: flex;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 40px;
  gap: 0;
  flex-wrap: wrap;
}
.tabs__btn {
  padding: 18px 28px;
  background: none;
  border: none;
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--t-fast);
}
.tabs__btn:hover { color: var(--c-deep); }
.tabs__btn.is-active {
  color: var(--c-deep);
  border-bottom-color: var(--c-teal-light);
}
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; }

/* ===== GALERÍA CON LIGHTBOX ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery--main-aside { grid-template-columns: 2fr 1fr; }
.gallery--main-aside > :first-child { grid-row: span 2; }
.gallery__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: var(--c-line);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.gallery__item:hover img { transform: scale(1.05); }
@media (max-width: 700px) { .gallery, .gallery--main-aside { grid-template-columns: 1fr 1fr; } }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(6,15,19,0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; }
.lightbox__close {
  position: absolute;
  top: 30px; right: 30px;
  background: none; border: none;
  color: var(--c-cream);
  font-size: 32px;
  cursor: pointer;
  width: 40px; height: 40px;
}

/* ===== PÁGINA 404 ===== */
.error-page {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--c-deep-darker) 0%, var(--c-deep) 35%, var(--c-teal) 100%);
  color: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  text-align: center;
}
.error-page__inner { max-width: 600px; }
.error-page__code {
  font-family: var(--f-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--c-teal-light);
  font-weight: 300;
  margin-bottom: 20px;
}
.error-page h1 { color: var(--c-cream); margin-bottom: 20px; }
.error-page p { color: rgba(245,241,232,0.78); margin-bottom: 40px; }
.error-page__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== STYLE GUIDE PAGE ===== */
.sg-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--c-line);
}
.sg-section h2 {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-teal-light);
  margin-bottom: 30px;
  font-weight: 700;
}
.sg-grid { display: grid; gap: 30px; }
.sg-grid--2 { grid-template-columns: 1fr 1fr; }
.sg-grid--3 { grid-template-columns: repeat(3, 1fr); }
.sg-grid--4 { grid-template-columns: repeat(4, 1fr); }
.sg-card {
  border: 1px solid var(--c-line);
  padding: 30px;
  background: var(--c-paper);
}
.sg-color {
  height: 120px;
  display: flex; align-items: flex-end;
  padding: 14px;
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.sg-color__name { color: white; mix-blend-mode: difference; }
.sg-type-sample { padding: 30px; border: 1px solid var(--c-line); margin-bottom: 16px; }
.sg-type-sample__label {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-bottom: 12px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .sg-grid--2, .sg-grid--3, .sg-grid--4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .sg-grid--2, .sg-grid--3, .sg-grid--4 { grid-template-columns: 1fr; }
}

/* ===== RICH PROSE (páginas legales y editoriales) ===== */
.prose {
  max-width: 720px;
}
.prose h2 {
  font-size: 1.8rem;
  margin-top: 50px;
  margin-bottom: 20px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 14px;
}
.prose p { margin-bottom: 18px; line-height: 1.75; }
.prose ul, .prose ol {
  padding-left: 24px;
  margin-bottom: 24px;
  list-style: disc;
}
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 10px; color: var(--c-ink-soft); line-height: 1.65; }
.prose strong { color: var(--c-ink); }
.prose a { color: var(--c-teal); border-bottom: 1px solid var(--c-teal-light); }
.prose a:hover { color: var(--c-teal-light); }

/* ============================================================
   ACCESIBILIDAD · v1.2
   ============================================================ */

/* Skip link para usuarios de teclado y screen readers */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--c-deep);
  color: var(--c-cream);
  padding: 12px 24px;
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 2px solid var(--c-teal-light);
  z-index: 200;
  transition: top var(--t-fast);
}
.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--c-teal-light);
  outline-offset: 2px;
}

/* Focus visible mejorado en todos los elementos interactivos */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--c-teal-light);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* Print styles · evita imprimir CTAs flotantes y cookie banner */
@media print {
  .sticky-cta,
  .cookie-banner,
  .nav,
  .nav__drawer,
  .nav__overlay,
  footer .footer__col,
  .cta-final {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
  .container {
    max-width: 100% !important;
  }
}

/* ============================================================
   COMPONENTES ADICIONALES · v1.2
   ============================================================ */

/* Article card (para blog posts) */
.article-card {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  transition: all var(--t-base);
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.article-card:hover {
  border-color: var(--c-teal-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.article-card__image {
  aspect-ratio: 16/10;
  background: var(--c-line);
  position: relative;
  overflow: hidden;
}
.article-card__image::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--c-ink-soft);
}
.article-card__body { padding: 28px 26px; }
.article-card__date {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-bottom: 12px;
  display: block;
}
.article-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--c-ink);
}
.article-card p {
  font-size: 0.92rem;
  color: var(--c-ink-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}
.article-card__readmore {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-teal);
}

/* Team card */
.team-card {
  text-align: center;
}
.team-card__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--c-line);
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}
.team-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.team-card__role {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 14px;
  font-weight: 600;
}
.team-card p {
  font-size: 0.92rem;
  color: var(--c-ink-soft);
  line-height: 1.65;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 50px;
  margin-top: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--c-line);
}
.timeline__item {
  position: relative;
  padding-bottom: 40px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: -42px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--c-teal-light);
  border: 3px solid var(--c-paper);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--c-teal-light);
}
.timeline__year {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--c-teal);
  margin-bottom: 8px;
  display: block;
}
.timeline__title {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--c-ink);
  margin-bottom: 8px;
}

/* Pricing/feature highlight */
.feature-highlight {
  background: linear-gradient(145deg, var(--c-deep-darker), var(--c-deep) 50%, var(--c-teal) 100%);
  color: var(--c-cream);
  padding: 60px 50px;
  border-radius: 4px;
  text-align: center;
}
.feature-highlight h2 {
  color: var(--c-cream);
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.feature-highlight .lead {
  color: rgba(245,241,232,0.85);
  margin-bottom: 30px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonial card grande con foto */
.testimonial-large {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: center;
}
.testimonial-large__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--c-line);
}
.testimonial-large blockquote {
  font-family: var(--f-display);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--c-ink);
  margin: 0 0 20px;
}
.testimonial-large cite {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-teal);
  font-style: normal;
  font-weight: 700;
}
.testimonial-large cite small {
  display: block;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--c-ink-soft);
  font-weight: 500;
  margin-top: 4px;
  font-size: 13px;
}
@media (max-width: 700px) {
  .testimonial-large {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .testimonial-large__photo {
    margin: 0 auto;
  }
}
