/* =========================================
   EXPLORA MIAMI — anunciantes.css
   Página de ventas B2B para anunciantes
   ES5 / sin frameworks / GitHub Pages
   No modifica ningún archivo existente
========================================= */

/* ===== DESIGN TOKENS ===== */
:root {
  --coral: #FF6B6B;
  --turquesa: #00BCD4;
  --mostaza: #FFB300;
  --blanco-arena: #FFFDF7;
  --azul-cielo: #E3F4FF;
  --verde-tropical: #E8F5E9;
  --azul-profundo: #071e2b;
  --ocean-ini: #071e2b;
  --ocean-mid: #0a2d3f;
  --ocean-fin: #051822;
  --turquesa-oscuro: #00434F;
  --coral-oscuro: #B83E3E;
  --tinta: #1a2a35;
  --sombra-coral: 0 12px 32px -12px rgba(255,107,107,0.35);
  --sombra-turquesa: 0 12px 32px -12px rgba(0,188,212,0.35);
  --sombra-mostaza: 0 12px 32px -12px rgba(255,179,0,0.35);
  --glass-bg: rgba(255,255,255,0.065);
  --glass-border: rgba(255,255,255,0.11);
  --ease: cubic-bezier(0.2,0,0,1);
  --dur: 240ms;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --r-sm: 12px;
  --r: 20px;
  --r-lg: 28px;
}

/* ===== IDIOMA ===== */
html.lang-en .lang-es { display: none; }
html.lang-es .lang-en { display: none; }

/* ===== BASE ===== */
html { font-size: 16px; overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background-color: var(--blanco-arena);
  color: var(--tinta);
  line-height: 1.65;
  /* overflow-x: hidden NUNCA en body — rompe position:sticky */
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

h1, h2, h3 { font-family: var(--serif); line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-weight: 400; font-style: italic; }
h2 { font-weight: 600; font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-weight: 600; }
p  { font-weight: 300; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,253,247,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,253,247,0.3);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.header.scrolled {
  box-shadow: 0 2px 24px rgba(7,30,43,0.10);
  background: rgba(255,253,247,0.95);
}
.header__contenedor {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem; height: 64px;
  display: flex; align-items: center; gap: 1.5rem;
}
.header__logo {
  text-decoration: none; display: inline-flex; align-items: baseline; gap: 0.08em;
  font-family: var(--serif); font-size: 1.35rem; flex-shrink: 0;
}
.header__logo-explora { color: var(--turquesa); font-weight: 600; }
.header__logo-miami   { color: var(--coral);    font-weight: 400; font-style: italic; }
.header__nav { margin-left: auto; }
.header__lista { list-style: none; display: flex; align-items: center; gap: 0.2rem; }
.header__enlace {
  display: inline-block; padding: 0.4rem 0.85rem;
  font-size: 0.9rem; font-weight: 500; color: var(--tinta);
  text-decoration: none; border-radius: 8px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.header__enlace:hover { color: var(--turquesa); background: rgba(0,188,212,0.08); }
.header__enlace.active { color: var(--turquesa); font-weight: 600; }
.header__enlace--cta {
  background: linear-gradient(135deg, var(--coral), var(--turquesa));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-weight: 600;
}
.header__menu-btn {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  margin-left: auto; width: 36px; height: 36px;
}
.header__menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--tinta); border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.header__menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__menu-btn.is-open span:nth-child(2) { opacity: 0; }
.header__menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== METAL BUTTON ===== */
.metal-btn-wrap {
  position: relative; display: inline-flex;
  border-radius: 8px; padding: 1.25px;
  background: linear-gradient(to bottom, #111, #A0A0A0);
  cursor: pointer; user-select: none;
}
.metal-btn-inner {
  position: absolute; inset: 1px; border-radius: 7px;
  background: rgba(0,0,0,0.3);
}
.metal-btn {
  position: relative; z-index: 10; margin: 1px;
  height: 44px; border-radius: 6px; padding: 0 1.5rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: none; cursor: pointer; overflow: hidden;
  transition: transform 90ms var(--ease);
}
.metal-btn-shine {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.metal-btn-hover-glow {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.metal-btn-wrap.is-pressed { transform: translateY(2.5px) scale(0.99); }
.metal-btn-wrap.is-hovered .metal-btn-hover-glow { opacity: 1; }

[data-variant="coral"]    { background: linear-gradient(to bottom, #5A0000, #FF9090); }
[data-variant="coral"] .metal-btn { background: var(--coral); color: #fff; }
[data-variant="coral"] .metal-btn-hover-glow { background: radial-gradient(circle at 50% 0%, rgba(255,150,150,0.4), transparent 70%); }

[data-variant="turquesa"] { background: linear-gradient(to bottom, #003840, #70D8E0); }
[data-variant="turquesa"] .metal-btn { background: var(--turquesa); color: #fff; }
[data-variant="turquesa"] .metal-btn-hover-glow { background: radial-gradient(circle at 50% 0%, rgba(0,220,240,0.4), transparent 70%); }

[data-variant="gold"]     { background: linear-gradient(to bottom, #5A3A00, #FFD070); }
[data-variant="gold"] .metal-btn { background: var(--mostaza); color: var(--tinta); }
[data-variant="gold"] .metal-btn-hover-glow { background: radial-gradient(circle at 50% 0%, rgba(255,210,80,0.4), transparent 70%); }

[data-variant="ghost"]              { background: rgba(255,255,255,0.14); }
[data-variant="ghost"] .metal-btn-inner { background: rgba(255,255,255,0.04); }
[data-variant="ghost"] .metal-btn  {
  background: rgba(255,255,255,0.08);
  color: var(--blanco-arena);
  border: 1px solid rgba(255,255,255,0.2);
}

[data-size="lg"] .metal-btn { height: 52px; padding: 0 2.2rem; font-size: 1.05rem; }
[data-size="full"]           { width: 100%; }
[data-size="full"] .metal-btn { width: 100%; justify-content: center; }

/* ===== SHINE BORDER ===== */
@keyframes shine-pulse {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
.shine-card { position: relative; }
.shine-card::after {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit; padding: 1px;
  background-image: radial-gradient(transparent, transparent,
    #FF6B6B, #00BCD4, #FFB300, transparent, transparent);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: shine-pulse 10s linear infinite;
  pointer-events: none;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  box-shadow: 0 8px 40px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.10);
}

/* ===== FADE-UP ===== */
.fade-up {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { transform: none !important; transition: opacity 0.4s ease; }
  @keyframes shine-pulse { from { background-position: 0% 0%; } to { background-position: 0% 0%; } }
}

/* ===== LAYOUT HELPERS ===== */
.an-section { padding: 6rem 1.5rem; position: relative; }
.an-container { max-width: 1100px; margin: 0 auto; }
.an-section-header { text-align: center; margin-bottom: 4rem; }
.an-eyebrow {
  display: block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--turquesa); margin-bottom: 0.75rem;
}

/* ======================================================
   SECCIÓN 1: HERO
====================================================== */

/* Aurora: @property para Chrome/Safari, static fallback para Firefox */
@property --ax { syntax: '<percentage>'; inherits: false; initial-value: 20%; }
@property --ay { syntax: '<percentage>'; inherits: false; initial-value: 25%; }
@property --bx { syntax: '<percentage>'; inherits: false; initial-value: 80%; }
@property --by { syntax: '<percentage>'; inherits: false; initial-value: 70%; }
@property --cx { syntax: '<percentage>'; inherits: false; initial-value: 55%; }
@property --cy { syntax: '<percentage>'; inherits: false; initial-value: 15%; }

@keyframes aurora-drift {
  0%   { --ax:20%; --ay:25%; --bx:80%; --by:70%; --cx:55%; --cy:15%; }
  25%  { --ax:35%; --ay:45%; --bx:65%; --by:30%; --cx:80%; --cy:60%; }
  50%  { --ax:70%; --ay:20%; --bx:25%; --by:75%; --cx:40%; --cy:80%; }
  75%  { --ax:50%; --ay:65%; --bx:45%; --by:20%; --cx:20%; --cy:35%; }
  100% { --ax:15%; --ay:80%; --bx:85%; --by:45%; --cx:65%; --cy:25%; }
}
@keyframes aurora-breathe {
  from { opacity: 0.82; }
  to   { opacity: 1; }
}

.seccion-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 9rem 1.5rem 7rem; overflow: hidden;
  /* Dark ocean base — profundidad y contraste máximos */
  background: linear-gradient(135deg, var(--ocean-ini) 0%, var(--ocean-mid) 52%, var(--ocean-fin) 100%);
}

/* Aurora: más fuerte sobre fondo oscuro */
.hero-aurora {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at var(--ax) var(--ay), rgba(0,188,212,0.22), transparent 60%),
    radial-gradient(ellipse 60% 80% at var(--bx) var(--by), rgba(255,107,107,0.16), transparent 60%),
    radial-gradient(ellipse 70% 50% at var(--cx) var(--cy), rgba(255,179,0,0.12), transparent 55%);
  animation: aurora-drift 18s ease-in-out infinite alternate,
             aurora-breathe 7s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) { .hero-aurora { animation: none; } }

/* ===== PARALLAX DEPTH LAYERS ===== */
.hp-layer {
  position: absolute; inset: 0;
  pointer-events: none; will-change: transform;
}
/* Layer 1 — ambient orbs (depth 0.2, slow) */
.hp-orb {
  position: absolute; border-radius: 50%;
  filter: blur(88px); opacity: 0.85;
}
.hp-orb--turquesa {
  width: 520px; height: 520px;
  top: -120px; left: -80px;
  background: rgba(0,188,212,0.22);
}
.hp-orb--coral {
  width: 420px; height: 420px;
  bottom: -90px; right: 8%;
  background: rgba(255,107,107,0.18);
}
.hp-orb--mostaza {
  width: 320px; height: 320px;
  top: 28%; right: -60px;
  background: rgba(255,179,0,0.13);
}

/* Layer 2 — hollow spinning rings (depth 0.5, medium) */
.hp-ring {
  position: absolute; border-radius: 50%;
  border-style: solid; background: transparent;
}
.hp-ring--1 {
  width: 300px; height: 300px;
  top: 12%; left: 7%;
  border-width: 1px;
  border-color: rgba(0,188,212,0.18);
  animation: hp-spin 28s linear infinite;
}
.hp-ring--2 {
  width: 200px; height: 200px;
  bottom: 18%; right: 11%;
  border-width: 1px;
  border-color: rgba(255,107,107,0.14);
  animation: hp-spin 20s linear infinite reverse;
}
.hp-ring--3 {
  width: 110px; height: 110px;
  top: 55%; left: 18%;
  border-width: 1px;
  border-color: rgba(255,179,0,0.14);
  animation: hp-spin 14s linear infinite;
}
@keyframes hp-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) { .hp-ring { animation: none; } }

/* Layer 3 — floating particles/dots (depth 0.9, fast) */
.hp-dot {
  position: absolute; border-radius: 50%;
  will-change: transform, opacity;
}
.hp-dot--1 { width: 5px; height: 5px; top: 24%; left: 14%; background: rgba(0,188,212,0.90); animation: hp-drift 4.2s ease-in-out infinite; }
.hp-dot--2 { width: 3px; height: 3px; top: 62%; left: 79%; background: rgba(255,253,247,0.65); animation: hp-drift 5.1s ease-in-out infinite 1.1s; }
.hp-dot--3 { width: 6px; height: 6px; top: 38%; left: 22%; background: rgba(255,107,107,0.80); animation: hp-drift 3.7s ease-in-out infinite 0.6s; }
.hp-dot--4 { width: 3px; height: 3px; top: 72%; left: 43%; background: rgba(255,179,0,0.80); animation: hp-drift 6.0s ease-in-out infinite 2.2s; }
.hp-dot--5 { width: 4px; height: 4px; top: 18%; left: 68%; background: rgba(255,253,247,0.55); animation: hp-drift 4.6s ease-in-out infinite 0.9s; }
.hp-dot--6 { width: 4px; height: 4px; top: 80%; left: 25%; background: rgba(0,188,212,0.70); animation: hp-drift 5.5s ease-in-out infinite 1.8s; }
.hp-dot--7 { width: 3px; height: 3px; top: 45%; left: 88%; background: rgba(255,107,107,0.65); animation: hp-drift 3.9s ease-in-out infinite 0.3s; }
@keyframes hp-drift {
  0%, 100% { transform: translateY(0) scale(1);    opacity: 0.65; }
  50%       { transform: translateY(-14px) scale(1.4); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .hp-dot { animation: none !important; } }

.hero-contenido {
  position: relative; z-index: 10;
  text-align: center; max-width: 900px; margin: 0 auto;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 1.25rem;
  background: rgba(0,188,212,0.12); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0,188,212,0.30); border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; color: rgba(0,240,255,0.92);
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.75rem;
}
.hero-pill::before { content: '◆'; font-size: 0.45rem; color: var(--turquesa); }

.hero-titulo {
  font-size: clamp(2.8rem, 7vw, 5.5rem); color: var(--blanco-arena);
  margin-bottom: 1.5rem;
}
.hero-subtitulo {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,253,247,0.62);
  max-width: 560px; margin: 0 auto 2.75rem; line-height: 1.75;
}
.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem;
}
/* Botón ghost adaptado para fondo oscuro */
.seccion-hero [data-variant="ghost"]              { background: rgba(255,255,255,0.06); }
.seccion-hero [data-variant="ghost"] .metal-btn-inner { background: rgba(0,0,0,0.18); }
.seccion-hero [data-variant="ghost"] .metal-btn   {
  background: rgba(255,255,255,0.07); color: var(--blanco-arena);
  border: 1.5px solid rgba(255,255,255,0.22);
}
.hero-stats {
  display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap;
}
.hero-stat {
  text-align: center; position: relative;
  padding: 0 2rem;
}
.hero-stat + .hero-stat::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  height: 2rem; width: 1px;
  background: rgba(255,253,247,0.15);
}
.hero-stat__numero {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3rem); color: var(--blanco-arena); line-height: 1;
}
.hero-stat__label {
  font-size: 0.78rem; font-weight: 300; color: rgba(255,253,247,0.45); margin-top: 0.3rem;
}

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,253,247,0.28); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-hint__line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(0, 188, 212, 0.45), transparent);
  animation: scroll-drop 1.9s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .scroll-hint__line { animation: none; opacity: 0.4; } }

/* ======================================================
   HERO: SHUTTER TEXT REVEAL
   Porta el componente HeroText React → vanilla ES5
====================================================== */

/* Grid de fondo sutil — claro sobre fondo oscuro */
.hero-grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(to right,  rgba(255,253,247,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,253,247,0.04) 1px, transparent 1px);
  background-size:
    clamp(28px, 5vw, 60px) clamp(28px, 5vw, 60px);
}

/* Corner accents — más visibles sobre oscuro */
.hero-corner {
  position: absolute; width: 44px; height: 44px; z-index: 2;
  border: 1px solid rgba(0, 188, 212, 0.38);
}
.hero-corner--tl { top: 5.5rem;  left: 1.75rem;  border-right: none; border-bottom: none; }
.hero-corner--br { bottom: 4rem; right: 1.75rem;  border-left: none;  border-top: none;   }

/* Contenido del hero: z-index por encima del grid */
.hero-contenido { z-index: 10; }

/* ── 2-column split layout ── */
.hero-2col {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  /* override the default centered single-column */
  text-align: left;
}

/* Left column */
.hero-left {
  flex: 0 0 50%;
  max-width: 50%;
}
.hero-left .hero-pill       { margin-left: 0; margin-right: 0; }
.hero-left .hero-subtitulo  { margin-left: 0; margin-right: 0; }
.hero-left .hero-ctas       { justify-content: flex-start; }
.hero-left .hero-stats      { justify-content: flex-start; gap: 0; }
.hero-left .hero-replay     { justify-content: flex-start; }
/* Shutter title: left-align word wrapping */
.hero-left .hero-shutter    { justify-content: flex-start; text-align: left; }

/* Right column — card scene */
.hero-right {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  height: 440px;
}

/* ── Photo cards ── */
.hero-img-card {
  position: absolute;
  width: 250px;
  height: 360px;
  top: 50%; left: 50%;
  margin-left: -125px; /* center: -width/2 */
  margin-top:  -180px; /* center: -height/2 */
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 4px 16px rgba(0,0,0,0.3);
  will-change: transform;
  cursor: pointer;
}
.hero-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.hero-img-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(7,30,43,0.55));
  pointer-events: none;
}

/* Back card: rotated left, slides in from right */
.hero-img-card--back {
  transform: rotate(-6deg) translate(80px, 20px);
  transition: transform 0.38s var(--ease), box-shadow 0.38s var(--ease);
  animation: hc-in-back 0.9s cubic-bezier(0.16,1,0.3,1) 0.45s both;
  z-index: 1;
}
/* Front card: rotated right, slides in slightly after */
.hero-img-card--front {
  transform: rotate(6deg) translate(-65px, -20px);
  transition: transform 0.38s var(--ease), box-shadow 0.38s var(--ease);
  animation: hc-in-front 0.9s cubic-bezier(0.16,1,0.3,1) 0.68s both;
  z-index: 2;
}

@keyframes hc-in-back {
  from { opacity: 0; transform: rotate(-6deg) translate(220px, 20px); }
  to   { opacity: 1; transform: rotate(-6deg) translate(80px, 20px); }
}
@keyframes hc-in-front {
  from { opacity: 0; transform: rotate(6deg) translate(100px, -20px); }
  to   { opacity: 1; transform: rotate(6deg) translate(-65px, -20px); }
}

/* Hover: soften rotation, lift card */
/* !important needed to override animation fill-mode on hover — documented override */
.hero-img-card--back:hover {
  transform: rotate(-2deg) translate(80px, 6px) scale(1.02) !important;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 4px 16px rgba(0,188,212,0.2);
  z-index: 10;
}
.hero-img-card--front:hover {
  transform: rotate(2deg) translate(-65px, -34px) scale(1.02) !important;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 4px 16px rgba(255,107,107,0.2);
  z-index: 10;
}

/* Responsive — mobile: stack vertically, center text */
@media (max-width: 900px) {
  .hero-2col {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  .hero-left {
    flex: 0 0 100%; max-width: 100%;
  }
  .hero-left .hero-pill,
  .hero-left .hero-subtitulo  { margin-left: auto; margin-right: auto; }
  .hero-left .hero-ctas,
  .hero-left .hero-stats,
  .hero-left .hero-replay     { justify-content: center; }
  .hero-left .hero-shutter    { justify-content: center; text-align: center; }
  .hero-right {
    /* flex-basis absoluto — evita que 100% resuelva a 0 en contenedor columna sin altura fija */
    flex: 0 0 auto;
    width: 100%; max-width: 100%;
    height: 280px;
    min-height: 280px; /* salvaguarda adicional */
  }
  .hero-img-card { width: 175px; height: 245px; margin-left: -87px; margin-top: -122px; }
}

/* Reduced motion: skip entry animation, show cards immediately */
@media (prefers-reduced-motion: reduce) {
  .hero-img-card {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Oculto mientras JS construye la estructura */
.hero-shutter--pending { opacity: 0; }

/* Wrapper: flex para que las palabras mantengan su ancho natural */
.hero-shutter {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.1em 0.3em;
  margin-bottom: 1.5rem;
  /* sin transition-delay de fade-up — la animación la maneja JS */
}

/* Una palabra */
.sw {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
}

/* Texto principal — empieza invisible, JS lo anima */
.sw__main {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  will-change: opacity, filter;
}
.hero-shutter.is-animating .sw__main {
  animation: sw-blur-in 0.8s ease forwards;
  animation-delay: calc(var(--sw-d, 0s) + 0.3s);
}

/* Slices (capas de color que barren el carácter) */
.sw__slice {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 10;
  opacity: 0;
  /* font heredado del padre — garantiza overlay perfecto */
  font-family: inherit; font-size: inherit; font-weight: inherit;
  font-style: inherit; line-height: inherit; letter-spacing: inherit;
  display: inline-block; white-space: nowrap;
  will-change: transform, opacity;
}

/* Top (0–35%): turquesa, sweep izq → der */
.sw__slice--top {
  color: var(--turquesa);
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
/* Mid (35–65%): blanco semi, sweep der → izq */
.sw__slice--mid {
  color: rgba(255,255,255,0.88);
  clip-path: polygon(0 35%, 100% 35%, 100% 65%, 0 65%);
}
/* Bot (65–100%): coral, sweep izq → der */
.sw__slice--bot {
  color: var(--coral);
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

.hero-shutter.is-animating .sw__slice--top {
  animation: sw-sweep-lr 0.7s ease-in-out forwards;
  animation-delay: var(--sw-d, 0s);
}
.hero-shutter.is-animating .sw__slice--mid {
  animation: sw-sweep-rl 0.7s ease-in-out forwards;
  animation-delay: calc(var(--sw-d, 0s) + 0.1s);
}
.hero-shutter.is-animating .sw__slice--bot {
  animation: sw-sweep-lr 0.7s ease-in-out forwards;
  animation-delay: calc(var(--sw-d, 0s) + 0.2s);
}

/* Keyframes */
@keyframes sw-blur-in {
  from { opacity: 0; filter: blur(10px); }
  to   { opacity: 1; filter: blur(0px);  }
}
@keyframes sw-sweep-lr {
  0%   { transform: translateX(-110%); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(110%);  opacity: 0; }
}
@keyframes sw-sweep-rl {
  0%   { transform: translateX(110%);  opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(-110%); opacity: 0; }
}

/* Reduced motion: solo fade, sin slice sweep */
@media (prefers-reduced-motion: reduce) {
  .hero-shutter.is-animating .sw__main {
    animation: sw-simple-fade 0.6s ease forwards;
    animation-delay: var(--sw-d, 0s);
    filter: none !important;
  }
  .hero-shutter.is-animating .sw__slice { display: none !important; }
  @keyframes sw-simple-fade { from { opacity: 0; } to { opacity: 1; } }
}

/* Replay button */
.hero-replay { display: flex; justify-content: center; margin-top: 2.25rem; }
.hero-replay-btn {
  background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 0.5rem 0.8rem; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease),
              background 0.2s var(--ease);
}
.hero-replay-btn:hover {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}
.hero-replay-icon {
  display: inline-block;
  transition: transform 0.4s var(--ease);
  font-style: normal;
}
.hero-replay-btn:hover .hero-replay-icon { transform: rotate(180deg); }

/* ======================================================
   SECCIÓN 3: QUÉ INCLUYE
====================================================== */
.seccion-incluye {
  background: var(--blanco-arena);
  padding: 6rem 1.5rem;
}
.incluye-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto;
}

/* Mockup */
.mockup-col { display: flex; flex-direction: column; align-items: center; }
.mockup-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--turquesa); background: rgba(0,188,212,0.1);
  border: 1px solid rgba(0,188,212,0.2); border-radius: 50px;
  padding: 0.35rem 1rem; margin-bottom: 1.75rem;
}
.mockup-scene { perspective: 1200px; }

@keyframes mockup-float {
  0%, 100% { transform: rotateY(-15deg) rotateX(5deg) scale(0.92) translateY(0); }
  50%       { transform: rotateY(-15deg) rotateX(5deg) scale(0.92) translateY(-14px); }
}
@keyframes mockup-glow {
  0%, 100% { box-shadow: 28px 28px 55px rgba(0,0,0,0.30), -4px -4px 18px rgba(0,188,212,0.12); }
  50%       { box-shadow: 28px 28px 55px rgba(0,0,0,0.28), -4px -4px 18px rgba(0,188,212,0.28),
                          0 0 32px 6px rgba(0,188,212,0.18), 0 0 0 2px rgba(0,188,212,0.22); }
}

.mockup-card {
  width: 300px;
  transform-style: preserve-3d;
  border-radius: var(--r); overflow: hidden; background: #fff;
  animation: mockup-float 4s ease-in-out infinite, mockup-glow 4s ease-in-out infinite;
}
.mockup-scene:hover .mockup-card {
  animation-play-state: paused;
  transform: rotateY(-5deg) rotateX(2deg) scale(0.96);
  transition: transform 0.55s var(--ease);
  box-shadow: 28px 28px 55px rgba(0,0,0,0.30), 0 0 32px 8px rgba(0,188,212,0.25);
}
@media (prefers-reduced-motion: reduce) {
  .mockup-card {
    animation: none !important;
    transform: scale(0.94) rotateY(-15deg) rotateX(5deg);
    box-shadow: 28px 28px 55px rgba(0,0,0,0.30);
  }
  .mockup-scene:hover .mockup-card {
    transform: scale(0.96) rotateY(-5deg) rotateX(2deg);
    transition: none;
  }
}
.mockup-img-cont { position: relative; height: 180px; }
.mockup-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mockup-badge {
  position: absolute; top: 0.65rem; left: 0.65rem;
  background: rgba(7,30,43,0.78); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; padding: 0.2rem 0.45rem;
  font-size: 0.68rem; font-weight: 600; color: #fff;
}
.mockup-info { padding: 1.2rem 1.25rem 1.5rem; }
.mockup-nombre {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1.25rem; color: var(--tinta); margin-bottom: 0.4rem;
}
.mockup-desc {
  font-size: 0.8rem; color: rgba(26,42,53,0.62); font-weight: 300;
  line-height: 1.5; margin-bottom: 0.85rem;
}
.mockup-meta { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.mockup-meta-item {
  font-size: 0.7rem; color: rgba(26,42,53,0.5);
  display: flex; align-items: center; gap: 0.3rem;
}

/* Features */
.features-col {}
.features-col > h2 { margin-bottom: 0.75rem; }
.features-lead {
  font-size: 1rem; color: rgba(26,42,53,0.62); font-weight: 300; margin-bottom: 2rem;
}
.features-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.feature-item {
  display: flex; gap: 0.9rem; align-items: flex-start;
  cursor: default;
}
.feature-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
  background: rgba(0,188,212,0.1); border: 1px solid rgba(0,188,212,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: background 0.22s, border-color 0.22s, transform 0.15s;
}

/* Efecto vibración al hover sobre el ítem */
@keyframes featureShake {
  0%   { transform: rotate(0deg) scale(1); }
  10%  { transform: rotate(-8deg) scale(1.12); }
  24%  { transform: rotate(6deg) scale(1.15); }
  38%  { transform: rotate(-5deg) scale(1.1); }
  52%  { transform: rotate(3deg) scale(1.06); }
  66%  { transform: rotate(-2deg) scale(1.03); }
  80%  { transform: rotate(1deg) scale(1.01); }
  100% { transform: rotate(0deg) scale(1); }
}

.feature-item:hover .feature-icon {
  background: rgba(0,188,212,0.2);
  border-color: rgba(0,188,212,0.45);
  animation: featureShake 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@media (prefers-reduced-motion: reduce) {
  .feature-item:hover .feature-icon { animation: none; transform: none; }
}

.feature-text { font-size: 0.93rem; color: var(--tinta); line-height: 1.45; padding-top: 0.55rem; }
.feature-text strong { font-weight: 600; }

/* ======================================================
   SECCIÓN 4: PRECIOS — fondo blanco-arena, toggle, cards
   Porta React PricingSection4 → vanilla ES5
====================================================== */
.seccion-precios {
  background: var(--blanco-arena);
  padding: 7rem 1.5rem; position: relative; overflow: hidden;
}
/* Luces de ambiente sutiles (no dominan) */
.seccion-precios::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(70% 50% at 5% 90%, rgba(0,188,212,0.07), transparent 65%),
    radial-gradient(60% 40% at 95% 10%, rgba(255,107,107,0.05), transparent 65%);
}

/* ── Encabezado: título izq · toggle der ── */
.precios-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; position: relative;
}
.precios-header__text { flex: 1; min-width: 240px; }
.precios-titulo { color: var(--tinta); text-align: left; margin-bottom: 0.65rem; }
.precios-sub    { color: rgba(26,42,53,0.52); font-weight: 300; font-size: 0.97rem; }

/* ── Toggle pill (mensual / anual) ── */
.pricing-toggle {
  position: relative; display: inline-flex; align-items: center;
  background: rgba(26,42,53,0.07); border-radius: 50px;
  padding: 4px; flex-shrink: 0; align-self: center;
}
/* Slider blanco animado debajo del botón activo */
.pricing-toggle__slider {
  position: absolute; top: 4px; left: 4px;
  height: calc(100% - 8px); border-radius: 50px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.11), 0 1px 3px rgba(0,0,0,0.07);
  transition: transform 0.3s var(--ease), width 0.3s var(--ease);
  will-change: transform, width;
}
.pricing-toggle__btn {
  position: relative; z-index: 1;
  padding: 0.5rem 1.35rem; border: none; background: none; cursor: pointer;
  border-radius: 50px; font-family: var(--sans);
  font-size: 0.88rem; font-weight: 500; color: rgba(26,42,53,0.5);
  display: inline-flex; align-items: center; gap: 0.45rem;
  transition: color 0.25s var(--ease); white-space: nowrap;
}
.pricing-toggle__btn.is-active { color: var(--tinta); }
.pricing-toggle__badge {
  display: inline-flex; align-items: center;
  background: rgba(0,188,212,0.1); border: 1px solid rgba(0,188,212,0.22);
  color: var(--turquesa-oscuro); border-radius: 50px;
  font-size: 0.66rem; font-weight: 700; padding: 0.12rem 0.5rem; line-height: 1.4;
}

/* ── Contenedor de cards (sutil background tipo React neutral-100→200) ── */
.precios-grid-wrap {
  background: linear-gradient(180deg, rgba(26,42,53,0.045) 0%, rgba(26,42,53,0.07) 100%);
  border: 1px solid rgba(26,42,53,0.08);
  border-radius: var(--r-lg); padding: 2rem 2rem 1.5rem;
  max-width: 860px; margin: 0 auto; position: relative;
}
.precios-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; position: relative; align-items: start;
}

/* ── Card base ── */
.precio-card {
  border-radius: var(--r-lg); padding: 2.25rem 2rem;
  position: relative; display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.precio-card.tilting { transition: none; }

/* Card LIGHT — Plan Básico */
.precio-card--light {
  background: #fff;
  border: 1px solid rgba(26,42,53,0.09);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
}
.precio-card--light:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,188,212,0.11), 0 4px 12px rgba(0,0,0,0.06);
}

/* Card DARK — Plan Premium (featured) */
.precio-card--dark {
  background: linear-gradient(150deg, var(--ocean-ini) 0%, var(--ocean-mid) 55%, var(--ocean-fin) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 24px 64px rgba(7,30,43,0.38), 0 8px 24px rgba(0,0,0,0.22);
  transform: scale(1.04) translateY(-6px);
  z-index: 2;
}
.precio-card--dark::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(65% 55% at 80% 15%, rgba(255,179,0,0.12), transparent 70%),
              radial-gradient(55% 65% at 15% 85%, rgba(0,188,212,0.10), transparent 70%);
}
.precio-card--dark:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 32px 80px rgba(7,30,43,0.44), 0 10px 28px rgba(0,0,0,0.26);
}
@media (prefers-reduced-motion: reduce) {
  .precio-card--dark,
  .precio-card--dark:hover { transform: none !important; }
}

/* Badge */
.precio-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.28rem 0.78rem; border-radius: 50px; margin-bottom: 1.4rem;
}
.precio-badge--popular { background: rgba(0,188,212,0.12); color: var(--turquesa); border: 1px solid rgba(0,188,212,0.25); }
.precio-badge--premium { background: var(--mostaza); color: var(--tinta); }

/* Número de precio */
.precio-numero {
  display: flex; align-items: baseline; gap: 0.08rem; margin-bottom: 0.45rem;
}
.precio-symbol {
  font-family: var(--serif); font-style: italic; font-size: 1.7rem;
  font-weight: 400; line-height: 1; margin-right: 0.05em;
}
.precio-card--light .precio-symbol { color: var(--tinta); }
.precio-card--dark  .precio-symbol { color: #fff; }

.precio-valor {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(3rem, 6vw, 4rem); line-height: 1;
  transition: opacity 0.12s ease;
}
.precio-valor.is-switching { opacity: 0; }
.precio-card--light .precio-valor { color: var(--tinta); }
.precio-card--dark  .precio-valor { color: #fff; }

.precio-periodo {
  font-size: 0.9rem; font-weight: 300;
  align-self: flex-end; margin-bottom: 0.3rem; margin-left: 0.1rem;
}
.precio-card--light .precio-periodo { color: rgba(26,42,53,0.42); }
.precio-card--dark  .precio-periodo { color: rgba(255,255,255,0.42); }

/* Nombre y descripción */
.precio-nombre {
  font-family: var(--serif); font-weight: 600; font-size: 1.25rem; margin-bottom: 0.35rem;
}
.precio-card--light .precio-nombre { color: var(--tinta); }
.precio-card--dark  .precio-nombre { color: #fff; }

.precio-desc { font-size: 0.83rem; font-weight: 300; margin-bottom: 0; line-height: 1.6; }
.precio-card--light .precio-desc { color: rgba(26,42,53,0.52); }
.precio-card--dark  .precio-desc { color: rgba(255,255,255,0.46); }

/* Bloque "Incluye" */
.precio-includes {
  margin: 1.4rem 0 1.75rem; padding-top: 1.2rem; flex: 1;
}
.precio-card--light .precio-includes { border-top: 1px solid rgba(26,42,53,0.09); }
.precio-card--dark  .precio-includes { border-top: 1px solid rgba(255,255,255,0.10); }

.precio-includes__title {
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.85rem;
}
.precio-card--light .precio-includes__title { color: rgba(26,42,53,0.48); }
.precio-card--dark  .precio-includes__title { color: rgba(255,255,255,0.48); }

/* Lista de features con bullet circular */
.precio-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.precio-feature {
  display: flex; gap: 0.65rem; align-items: center;
  font-size: 0.875rem; font-weight: 400; line-height: 1.35;
}
.precio-card--light .precio-feature { color: rgba(26,42,53,0.72); }
.precio-card--dark  .precio-feature { color: rgba(255,255,255,0.80); }

/* Icono circular tipo React CheckCheck */
.precio-feature__check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800; line-height: 1;
}
.precio-card--light .precio-feature__check {
  background: rgba(0,188,212,0.09); border: 1px solid rgba(0,188,212,0.24);
  color: var(--turquesa);
}
.precio-card--dark .precio-feature__check {
  background: rgba(255,255,255,0.11); border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.90);
}

/* Nota plan anual */
.precio-anual-nota {
  text-align: center; margin-top: 1.25rem;
  font-size: 0.76rem; color: rgba(26,42,53,0.42);
  font-weight: 300; font-style: italic;
}

/* Nota legal debajo del wrapper */
.precio-nota {
  text-align: center; margin-top: 2rem;
  font-size: 0.76rem; color: rgba(26,42,53,0.38); font-weight: 300;
  font-style: italic; max-width: 580px; margin-left: auto; margin-right: auto;
  position: relative;
}

/* ======================================================
   SECCIÓN 5: CÓMO FUNCIONA — Animated Folder Steps
   Inspirado en AnimatedFolder (React) → portado a vanilla ES5 + CSS
====================================================== */

.seccion-como {
  background: var(--blanco-arena);
  padding: 6rem 1.5rem 7rem;
}

/* ─── Grid: 3 folders + 2 connectors ─── */
/* NOTA: clase renombrada como-grid para evitar conflicto con footer .cf-grid */
.como-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  max-width: 736px;
  margin: 0 auto;
  align-items: center;
}

/* Connector line between folders */
.cf-connector {
  display: flex; align-items: center; justify-content: center;
  width: 42px; padding-top: 2rem;
}
.cf-connector__line {
  width: 100%; height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(0,188,212,0.40) 0, rgba(0,188,212,0.40) 6px,
    transparent 6px, transparent 12px
  );
}

/* ─── Folder: perspective container ─── */
.cf-folder {
  position: relative;
  perspective: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 144px 1rem 1.4rem;  /* top padding = room for card to fly into */
  border-radius: var(--r-lg);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.4s var(--ease);
  outline: none;
}
.cf-folder:focus-visible {
  box-shadow: 0 0 0 3px var(--turquesa);
}

/* Radial glow on hover (step-coloured) */
.cf-folder::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--r-lg);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none; z-index: 0;
}
.cf-folder[data-step="1"]::after { background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(0,188,212,0.12), transparent); }
.cf-folder[data-step="2"]::after { background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(255,179,0,0.12), transparent); }
.cf-folder[data-step="3"]::after { background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(255,107,107,0.12), transparent); }
.cf-folder:hover::after,
.cf-folder.is-open::after { opacity: 1; }

/* ─── Content card (flies upward on hover) ─── */
.cf-folder__card {
  position: absolute;
  width: 134px;
  top: 10px; left: 50%;
  transform: translateX(-50%) translateY(84px) scale(0.42);
  opacity: 0;
  pointer-events: none;
  transition: transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity    400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 40;
  background: #fff;
  border-radius: var(--r);
  padding: 1.2rem 0.8rem 1rem;
  text-align: center;
  box-shadow:
    0 24px 56px -8px rgba(0,0,0,0.16),
    0 8px 24px -4px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
}
.cf-folder:hover .cf-folder__card,
.cf-folder.is-open .cf-folder__card {
  transform: translateX(-50%) translateY(0) scale(1);
  opacity: 1; pointer-events: auto;
}

/* ─── 3D scene (the folder body) ─── */
.cf-folder__scene {
  position: relative;
  width: 160px; height: 128px;
  flex-shrink: 0; z-index: 10;
}

/* Back panel — tilts backward on hover */
.cf-folder__back {
  position: absolute;
  width: 144px; height: 104px;
  left: 8px; top: 12px;
  border-radius: 10px;
  transform-origin: bottom center;
  transform: rotateX(0deg);
  transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.cf-folder:hover .cf-folder__back,
.cf-folder.is-open .cf-folder__back { transform: rotateX(-15deg); }

/* Tab (the protruding label at top-left) */
.cf-folder__tab {
  position: absolute;
  width: 45px; height: 13px;
  border-radius: 5px 5px 0 0;
  left: 8px; top: 0px;
  transform-origin: bottom center;
  transform: rotateX(0deg);
  transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9;
}
.cf-folder:hover .cf-folder__tab,
.cf-folder.is-open .cf-folder__tab { transform: rotateX(-25deg) translateY(-2px); }

/* Front panel — tilts toward viewer on hover (folder opens) */
.cf-folder__front {
  position: absolute;
  width: 144px; height: 104px;
  left: 8px; top: 15px;
  border-radius: 10px;
  transform-origin: bottom center;
  transform: rotateX(0deg);
  transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 30;
  box-shadow: 0 6px 24px rgba(0,0,0,0.20);
}
.cf-folder:hover .cf-folder__front,
.cf-folder.is-open .cf-folder__front { transform: rotateX(25deg) translateY(6px); }

/* Shine on front */
.cf-folder__shine {
  position: absolute;
  width: 144px; height: 104px;
  left: 8px; top: 15px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.30) 0%, transparent 50%);
  transform-origin: bottom center;
  transform: rotateX(0deg);
  transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none; z-index: 31;
}
.cf-folder:hover .cf-folder__shine,
.cf-folder.is-open .cf-folder__shine { transform: rotateX(25deg) translateY(6px); }

/* ─── Folder colors per step ─── */
.cf-folder[data-step="1"] .cf-folder__back  { background: #004d5a; }
.cf-folder[data-step="1"] .cf-folder__tab   { background: #006878; }
.cf-folder[data-step="1"] .cf-folder__front { background: var(--turquesa); }

.cf-folder[data-step="2"] .cf-folder__back  { background: #7c4d00; }
.cf-folder[data-step="2"] .cf-folder__tab   { background: #a56800; }
.cf-folder[data-step="2"] .cf-folder__front { background: var(--mostaza); }

.cf-folder[data-step="3"] .cf-folder__back  { background: #7a1515; }
.cf-folder[data-step="3"] .cf-folder__tab   { background: #9e2020; }
.cf-folder[data-step="3"] .cf-folder__front { background: var(--coral); }

/* ─── Card content ─── */
.cf-card__number {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-size: 1.76rem; font-weight: 400; line-height: 1;
  margin-bottom: 0.32rem;
}
.cf-folder[data-step="1"] .cf-card__number { color: var(--turquesa); }
.cf-folder[data-step="2"] .cf-card__number { color: var(--mostaza); }
.cf-folder[data-step="3"] .cf-card__number { color: var(--coral); }

.cf-card__icon {
  font-size: 1.6rem; display: block;
  margin-bottom: 0.56rem; line-height: 1;
}
.cf-card__title {
  font-family: var(--serif); font-style: italic;
  font-size: 0.8rem; font-weight: 600;
  color: var(--tinta); margin-bottom: 0.4rem; line-height: 1.25;
}
.cf-card__desc {
  font-size: 0.62rem; font-weight: 300;
  color: rgba(26,42,53,0.65); line-height: 1.55;
}

/* ─── Label + hint below folder ─── */
.cf-folder__label {
  margin-top: 1rem; text-align: center; z-index: 5;
}
.cf-folder__step-num {
  display: block; font-size: 0.54rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(26,42,53,0.38); margin-bottom: 0.2rem;
}
.cf-folder__step-title {
  display: block; font-family: var(--serif); font-style: italic;
  font-size: 0.84rem; font-weight: 400; color: var(--tinta);
}
.cf-folder__hint {
  font-size: 0.58rem; color: rgba(26,42,53,0.32);
  margin-top: 0.28rem; z-index: 5;
  transition: opacity 0.3s var(--ease);
}
.cf-folder:hover .cf-folder__hint,
.cf-folder.is-open .cf-folder__hint { opacity: 0; }

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  .cf-folder__back, .cf-folder__tab,
  .cf-folder__card, .cf-folder__front, .cf-folder__shine {
    transition: none !important;
  }
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .como-grid {
    grid-template-columns: 1fr;
    max-width: 224px;
  }
  .cf-connector {
    transform: rotate(90deg);
    height: 48px; width: 100%;
    padding-top: 0;
  }
  .cf-folder { padding-top: 128px; }
}

/* ======================================================
   SECCIÓN 6: PARA QUIÉN — AboutUs 3-col grid layout
   Inspirado en AboutUsSection (React) → vanilla ES5 + CSS
====================================================== */

.seccion-para-quien {
  background: var(--blanco-arena);
  padding: 6rem 1.5rem 7rem;
  position: relative;
  overflow: hidden;
}

/* ─── Decorative blobs (scroll-parallax via JS) ─── */
.pq-blob {
  position: absolute; border-radius: 50%;
  filter: blur(72px); pointer-events: none;
  will-change: transform;
}
.pq-blob--1 { width: 280px; height: 280px; top: 60px; left: 40px; background: rgba(0,188,212,0.06); }
.pq-blob--2 { width: 340px; height: 340px; bottom: 60px; right: 40px; background: rgba(255,107,107,0.05); }

/* ─── Floating dots (CSS-only bob) ─── */
.pq-dot {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.pq-dot--1 {
  width: 14px; height: 14px; top: 40%; left: 20%;
  background: rgba(0,188,212,0.28);
  animation: pq-bob 3s ease-in-out infinite;
}
.pq-dot--2 {
  width: 20px; height: 20px; bottom: 28%; right: 20%;
  background: rgba(255,107,107,0.22);
  animation: pq-bob 4s ease-in-out infinite 1s;
}
@keyframes pq-bob {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(-16px); opacity: 1; }
}

/* ─── Container ─── */
.pq-wrap { position: relative; z-index: 2; }

/* ─── Header ─── */
.pq-header {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  margin-bottom: 0.5rem;
}
.pq-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.76rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--turquesa); margin-bottom: 0.85rem;
}
.pq-title {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem); color: var(--tinta);
  letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 1rem;
}
/* Animated underline — width triggered by JS when in view */
.pq-underline {
  height: 3px; border-radius: 2px;
  background: var(--turquesa);
  width: 0;
  transition: width 1s var(--ease);
}
.pq-underline.pq-underline--on { width: 96px; }

/* ─── Main 3-column grid ─── */
.pq-grid {
  display: grid;
  grid-template-columns: 1fr 260px 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 3rem auto 0;
  align-items: center;
}

/* ─── Service columns ─── */
.pq-col { display: flex; flex-direction: column; gap: 2.75rem; }

/* ─── Service item ─── */
.pq-service {
  display: flex; flex-direction: column;
  transition: transform 0.22s var(--ease);
}
.pq-service:hover { transform: translateY(-5px); }

.pq-service__head {
  display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.55rem;
}
.pq-service__icon-wrap {
  position: relative; flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(0,188,212,0.09); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.28s var(--ease);
}
.pq-service:hover .pq-service__icon-wrap { background: rgba(0,188,212,0.18); }
.pq-service__emoji { font-size: 1.5rem; line-height: 1; }
.pq-service__badge {
  position: absolute; top: -4px; right: -4px;
  font-size: 0.6rem; color: rgba(0,188,212,0.5); line-height: 1;
  transition: color 0.28s var(--ease);
}
.pq-service:hover .pq-service__badge { color: var(--turquesa); }
.pq-service__title {
  font-family: var(--serif); font-style: italic; font-size: 1.08rem;
  font-weight: 600; color: var(--tinta); line-height: 1.2;
  transition: color 0.25s var(--ease);
}
.pq-service:hover .pq-service__title { color: var(--turquesa); }
.pq-service__desc {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(26,42,53,0.62); line-height: 1.6;
  padding-left: calc(48px + 0.85rem);
}
.pq-service__more {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.72rem; font-weight: 500; color: var(--turquesa);
  padding-left: calc(48px + 0.85rem); margin-top: 0.3rem;
  opacity: 0; transition: opacity 0.25s var(--ease);
}
.pq-service:hover .pq-service__more { opacity: 1; }

/* ─── Center image ─── */
.pq-center { display: flex; justify-content: center; align-items: center; }
.pq-img-scene { position: relative; width: 100%; max-width: 250px; }

.pq-img-border {
  position: absolute; inset: 0;
  border: 3px solid rgba(0,188,212,0.32); border-radius: var(--r);
  transform: translate(-10px, -10px); z-index: 0;
}
.pq-img-wrap {
  position: relative; border-radius: var(--r); overflow: hidden; z-index: 2;
  box-shadow: 0 20px 48px rgba(0,0,0,0.16), 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s var(--ease);
}
.pq-img-wrap:hover { transform: scale(1.025); }
.pq-img { width: 100%; display: block; object-fit: cover; aspect-ratio: 3/4; }
.pq-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,30,43,0.55), transparent 50%);
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 1rem;
}
.pq-img-cta {
  background: rgba(255,255,255,0.92); color: var(--tinta);
  padding: 0.42rem 1.1rem; border-radius: 999px;
  font-size: 0.78rem; font-weight: 500; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.3rem;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.pq-img-cta:hover { background: #fff; transform: scale(1.04); }

.pq-img-circle {
  position: absolute; border-radius: 50%; z-index: 1; pointer-events: none;
}
.pq-img-circle--1 { width: 56px; height: 56px; background: rgba(0,188,212,0.10); top: -14px; right: -28px; }
.pq-img-circle--2 { width: 72px; height: 72px; background: rgba(255,107,107,0.10); bottom: -20px; left: -36px; }

/* ─── CTA banner ─── */
.pq-cta {
  margin-top: 4.5rem;
  background: var(--azul-profundo); color: var(--blanco-arena);
  border-radius: var(--r-lg); padding: 2.25rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; max-width: 1100px; margin-left: auto; margin-right: auto;
}
.pq-cta__title {
  font-family: var(--serif); font-style: italic; font-size: 1.3rem;
  font-weight: 400; color: var(--blanco-arena); margin-bottom: 0.35rem;
}
.pq-cta__sub { font-size: 0.85rem; font-weight: 300; color: rgba(255,253,247,0.70); }

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  .pq-dot { animation: none !important; }
  .pq-underline { transition: none !important; }
}

/* ─── Tablet ─── */
@media (max-width: 900px) {
  .pq-grid { grid-template-columns: 1fr 220px 1fr; gap: 2rem; }
}

/* ─── Mobile ─── */
@media (max-width: 680px) {
  .pq-grid { grid-template-columns: 1fr; gap: 0; }
  .pq-center { order: -1; margin-bottom: 2.5rem; }
  .pq-col { gap: 2rem; margin-bottom: 2rem; }
  .pq-img-scene { max-width: 220px; }
  .pq-img { aspect-ratio: 4/3; }
  .pq-service__desc, .pq-service__more { padding-left: 0; }
  .pq-cta { flex-direction: column; text-align: center; padding: 1.75rem 1.5rem; }
}

/* ======================================================
   SECCIÓN 8: FAQ — card-style + clip-path spring reveal
====================================================== */
.seccion-faq { background: var(--blanco-arena); padding: 5rem 1.5rem 6rem; }

/* Lista: gap entre cards, sin separadores de línea */
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}

/* Card por ítem — hereda --blanco-arena como base y sube a blanco puro */
.faq-item {
  border-radius: 14px; overflow: hidden;
  border: 2px solid rgba(26,42,53,0.07);
  background: #fff;
  transition: border-color 0.25s var(--ease),
              box-shadow  0.25s var(--ease),
              background  0.25s var(--ease);
}
/* Estado activo: borde turquesa + sombra suave */
.faq-item.is-open {
  border-color: rgba(0,188,212,0.30);
  background: rgba(0,188,212,0.025);
  box-shadow: 0 4px 22px rgba(0,188,212,0.09);
}

/* Header del ítem */
.faq-trigger {
  width: 100%; padding: 1.3rem 1.5rem;
  background: transparent; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left;
  transition: background 0.18s var(--ease);
}
.faq-trigger:hover { background: rgba(0,188,212,0.04); }
.faq-item.is-open .faq-trigger { background: transparent; }

.faq-pregunta { font-weight: 600; font-size: 0.98rem; color: var(--tinta); line-height: 1.4; }

/* Chevron — gira 180° y sube la opacidad */
.faq-chevron {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(0,188,212,0.10);
  transition: transform 0.32s var(--ease), background 0.2s;
  color: var(--turquesa); font-size: 0.72rem; font-style: normal;
}
.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  background: rgba(0,188,212,0.22);
}

/* Wrapper de la respuesta — altura animada por JS (medida real, no max-height fijo) */
.faq-respuesta-wrap {
  height: 0; overflow: hidden;
  /* cubic-bezier sin rebote, similar al spring(bounce:0) de Motion */
  transition: height 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

/* Contenido — clip-path wipe de arriba hacia abajo */
.faq-respuesta {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.91rem; font-weight: 300; color: rgba(26,42,53,0.72); line-height: 1.78;
  /* Estado inicial: recortado en la parte superior (0% de altura visible) */
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: clip-path 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}
/* Estado abierto: contenido completamente visible */
.faq-item.is-open .faq-respuesta {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

/* Accesibilidad: sin clip-path si el usuario prefiere movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  .faq-respuesta { clip-path: none !important; transition: none; }
  .faq-respuesta-wrap { transition: none; }
  .faq-chevron { transition: none; }
}

/* ======================================================
   SECCIÓN 9: CONTACTO
====================================================== */
.seccion-cta {
  background: linear-gradient(160deg, var(--ocean-ini) 0%, var(--ocean-mid) 50%, var(--ocean-fin) 100%);
  padding: 7rem 1.5rem; position: relative; overflow: hidden;
}
.seccion-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(55% 55% at 10% 80%, rgba(0,188,212,0.13), transparent 65%),
    radial-gradient(45% 45% at 90% 20%, rgba(255,107,107,0.09), transparent 65%);
}
.cta-encabezado { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.cta-titulo { color: #fff; margin-bottom: 0.85rem; }
.cta-sub { color: rgba(255,255,255,0.62); font-weight: 300; max-width: 540px; margin: 0 auto; }

.form-empresas-wrap { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.form-empresas {
  background: var(--glass-bg);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg); padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.10);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grupo { margin-bottom: 1.2rem; }
.form-grupo label {
  display: block; font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.68); margin-bottom: 0.4rem;
}
.form-grupo input,
.form-grupo select,
.form-grupo textarea {
  width: 100%; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-sm); padding: 0.75rem 1rem;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 300;
  color: #fff; outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  -webkit-appearance: none; appearance: none;
}
.form-grupo select option { background: var(--ocean-mid); color: #fff; }
.form-grupo input::placeholder,
.form-grupo textarea::placeholder { color: rgba(255,255,255,0.32); }
.form-grupo input:focus,
.form-grupo select:focus,
.form-grupo textarea:focus {
  border-color: rgba(0,188,212,0.5);
  box-shadow: 0 0 0 3px rgba(0,188,212,0.1);
}
.form-grupo.has-error input,
.form-grupo.has-error select,
.form-grupo.has-error textarea { border-color: rgba(255,107,107,0.5); }
.form-grupo textarea { min-height: 100px; resize: vertical; }
.form-error-msg { display: none; font-size: 0.73rem; color: var(--coral); margin-top: 0.3rem; }
.form-grupo.has-error .form-error-msg { display: block; }
.form-legal {
  font-size: 0.72rem; color: rgba(255,255,255,0.3); font-weight: 300;
  margin-top: 1rem; text-align: center; line-height: 1.5;
}

.form-exito { text-align: center; padding: 2.5rem 1rem; }
.form-exito__check {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--turquesa), var(--turquesa-oscuro));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff; margin: 0 auto 1.5rem;
}
.form-exito__titulo { font-family: var(--serif); color: #fff; font-size: 1.6rem; margin-bottom: 0.6rem; }
.form-exito__texto  { color: rgba(255,255,255,0.65); font-weight: 300; }

/* ===== FOOTER ===== */
.an-footer {
  background: var(--ocean-fin); padding: 3rem 1.5rem;
  text-align: center; border-top: 1px solid rgba(255,255,255,0.05);
}
.an-footer__logo {
  text-decoration: none; display: inline-flex; align-items: baseline; gap: 0.08em;
  font-family: var(--serif); font-size: 1.35rem; margin-bottom: 1.25rem;
}
.an-footer__logo-explora { color: var(--turquesa); font-weight: 600; }
.an-footer__logo-miami   { color: var(--coral);    font-weight: 400; font-style: italic; }
.an-footer__links {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.25rem;
}
.an-footer__link {
  font-size: 0.83rem; color: rgba(255,255,255,0.42);
  text-decoration: none; transition: color var(--dur) var(--ease);
}
.an-footer__link:hover { color: rgba(255,255,255,0.8); }
.an-footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.22); font-weight: 300; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .incluye-grid  { grid-template-columns: 1fr; }
  .mockup-col    { margin-bottom: 2rem; }
  .mockup-card   { width: 280px; transform: rotateY(0) rotateX(0) scale(0.96) !important; }
  .precios-header { flex-direction: column; }
  .precios-grid-wrap { padding: 1rem; }
  .precios-grid  { grid-template-columns: 1fr; max-width: 420px; }
  /* Sin escala en la card dark dentro de columna única */
  .precio-card--dark,
  .precio-card--dark:hover { transform: translateY(-2px) !important; }
  .para-quien-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-container { grid-template-columns: 1fr; gap: 0; }
  .step-connector  { display: none; }
  .header__menu-btn { display: flex; }
  .header__nav {
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(255,253,247,0.97); backdrop-filter: blur(18px);
    padding: 1.25rem 1.5rem;
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.25s;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .header__nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .header__lista { flex-direction: column; gap: 0.25rem; }
  .header__enlace { width: 100%; padding: 0.75rem 1rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .para-quien-grid { grid-template-columns: 1fr; }
  .hero-ctas      { flex-direction: column; align-items: center; }
  .hero-stats     { gap: 1.75rem; }
  .form-empresas  { padding: 1.75rem 1.25rem; }
  .an-section     { padding: 4rem 1.25rem; }
}

/* =====================================================
   FLOATING PILL NAV — fn-* classes
   Porta React AnimatedNavFramer → vanilla ES5 / CSS puro
   Funciona en anunciantes.html — usa las vars de anunciantes.css
===================================================== */
.fn-wrap {
  position: fixed; top: 1.25rem; left: 50%; transform: translateX(-50%);
  z-index: 200;
}
.fn {
  position: relative; display: inline-flex; align-items: center;
  height: 48px; border-radius: 50px;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0, 188, 212, 0.18);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
  overflow: hidden; white-space: nowrap; cursor: default;
  transition: width 0.45s var(--ease), box-shadow 0.3s ease;
  will-change: width;
}
.fn.is-collapsed {
  cursor: pointer;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.14);
}
.fn.is-collapsed:hover { box-shadow: 0 6px 28px rgba(0, 188, 212, 0.22); }

/* Logo */
.fn__logo {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 0.06em;
  padding: 0 0.65rem 0 1.25rem;
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  text-decoration: none;
  opacity: 1; transform: translateX(0) rotate(0deg);
  transition: opacity 0.22s ease, transform 0.3s var(--ease);
  will-change: opacity, transform;
}
.fn__logo-explora { color: var(--turquesa); font-weight: 600; font-style: normal; }
.fn__logo-miami   { color: var(--coral);    font-weight: 400; font-style: italic; }
.fn.is-collapsed .fn__logo {
  opacity: 0; transform: translateX(-18px) rotate(-12deg); pointer-events: none;
}

/* Divider */
.fn__divider {
  flex-shrink: 0; width: 1px; height: 22px;
  background: rgba(26, 42, 53, 0.13); margin: 0 0.2rem;
  opacity: 1; transition: opacity 0.22s ease;
}
.fn.is-collapsed .fn__divider { opacity: 0; }

/* Nav links */
.fn__links {
  display: flex; align-items: center; gap: 0; list-style: none;
  padding: 0 0.35rem 0 0.15rem;
  opacity: 1; transition: opacity 0.22s ease;
}
.fn.is-collapsed .fn__links { opacity: 0; pointer-events: none; }
.fn__link {
  display: inline-block; padding: 0.38rem 0.68rem;
  font-size: 0.84rem; font-weight: 500; color: var(--tinta);
  text-decoration: none; border-radius: 50px; white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease;
}
.fn__link:hover { color: var(--turquesa); background: rgba(0, 188, 212, 0.09); }
.fn__link--active { color: var(--turquesa); font-weight: 600; }
.fn__link--cta {
  background: linear-gradient(135deg, var(--coral), var(--turquesa));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; font-weight: 700;
}
.fn__link--back { color: rgba(26, 42, 53, 0.52); font-size: 0.8rem; }
.fn__link--back::before { content: '← '; }

/* Language button (omitido en anunciantes — incluido para extensibilidad) */
.fn__lang {
  flex-shrink: 0; margin: 0 0.75rem 0 0.1rem;
  background: var(--turquesa); color: #fff;
  border: none; border-radius: 50px;
  padding: 0.24rem 0.82rem;
  font-family: var(--sans); font-size: 0.76rem; font-weight: 700;
  cursor: pointer; letter-spacing: 0.04em;
  opacity: 1;
  transition: opacity 0.22s ease, background 0.2s ease, transform 0.2s ease;
}
.fn__lang:hover { background: var(--turquesa-oscuro); transform: scale(1.06); }
.fn.is-collapsed .fn__lang { opacity: 0; pointer-events: none; }

/* Collapsed hamburger (rellena el círculo de 48px) */
.fn__collapse-icon {
  position: absolute; inset: 0; background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 0; opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
}
.fn.is-collapsed .fn__collapse-icon { opacity: 1; pointer-events: auto; }
.fn__collapse-icon span {
  display: block; width: 20px; height: 2px;
  background: var(--tinta); border-radius: 2px;
}

/* Dropdown (móvil y collapsed) */
.fn__dropdown {
  position: absolute; top: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px) scale(0.97);
  min-width: 220px; border-radius: 18px;
  background: rgba(255, 253, 247, 0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 188, 212, 0.14);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 0.5rem; list-style: none;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}
.fn__dropdown.is-open {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.fn__dd-link {
  display: block; padding: 0.68rem 1rem;
  font-size: 0.9rem; font-weight: 500; color: var(--tinta);
  text-decoration: none; border-radius: 12px;
  transition: background 0.15s ease, color 0.15s ease;
}
.fn__dd-link:hover { background: rgba(0, 188, 212, 0.09); color: var(--turquesa); }
.fn__dd-link--active { color: var(--turquesa); font-weight: 600; }
.fn__dd-link--cta { color: var(--coral); font-weight: 700; }
.fn__dd-link--back { color: rgba(26, 42, 53, 0.50); font-size: 0.84rem; }
.fn__dd-link--back::before { content: '← '; }
.fn__dd-sep { height: 1px; background: rgba(0, 188, 212, 0.10); margin: 0.35rem 0.5rem; }

/* Móvil: siempre colapsado → dropdown */
@media (max-width: 768px) {
  .fn { width: 48px !important; cursor: pointer; }
  .fn__logo,
  .fn__divider,
  .fn__links,
  .fn__lang { display: none !important; }
  .fn__collapse-icon { opacity: 1 !important; pointer-events: auto !important; }
}

@media (prefers-reduced-motion: reduce) {
  .fn { transition: none !important; }
  .fn__logo, .fn__dropdown { transition: none !important; }
}

/* ===================================================================
   SECCIÓN CONTACTO — Rediseño moderno con formulario interactivo
   Fondo: --blanco-arena (mismo que secciones pares de la página)
   Floating labels + animación de foco + shake de error
================================================================= */

/* ── Sección ── */
.seccion-contacto {
  background: var(--blanco-arena);
}

.contacto-encabezado {
  text-align: center;
  margin-bottom: 3.5rem;
}
.contacto-titulo {
  color: var(--tinta);
  margin-bottom: 0.85rem;
}
.contacto-sub {
  color: rgba(26,42,53,0.55);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Layout dos columnas ── */
.contacto-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Aside: lista de beneficios ── */
.contacto-aside {
  position: sticky;
  top: 6rem;
}

.contacto-benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contacto-benefit__icon {
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,188,212,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contacto-benefit__body strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tinta);
  margin-bottom: 0.2rem;
}
.contacto-benefit__body p {
  font-size: 0.82rem;
  color: rgba(26,42,53,0.52);
  font-weight: 300;
  margin: 0;
  line-height: 1.5;
}

.contacto-aside__divider {
  height: 1px;
  background: rgba(0,188,212,0.18);
  margin: 1.75rem 0;
}
.contacto-aside__nota {
  font-size: 0.82rem;
  color: rgba(26,42,53,0.52);
  font-weight: 300;
  line-height: 1.6;
}
.contacto-aside__email {
  color: var(--turquesa);
  font-weight: 600;
  text-decoration: none;
}
.contacto-aside__email:hover { text-decoration: underline; }

/* ── Columna del formulario ── */
.contacto-form-col {
  /* Borde gradiente coral→turquesa */
  background:
    linear-gradient(145deg, #fff, #fffdf7) padding-box,
    linear-gradient(163deg, #FF6B6B 0%, #00BCD4 100%) border-box;
  border: 2px solid transparent;
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}

/* ── Secciones dentro del formulario (1 / 2) ── */
.fm-seccion {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,188,212,0.12);
}
.fm-seccion--last {
  border-bottom: none;
  margin-bottom: 1.5rem;
}

.fm-seccion__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.fm-seccion__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--turquesa);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,188,212,0.35);
}
.fm-seccion__num--2 {
  background: var(--mostaza);
  color: var(--tinta);
  box-shadow: 0 2px 8px rgba(255,179,0,0.35);
}
.fm-seccion__titulo {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(26,42,53,0.45);
}

/* ── Campo con floating label ── */
@keyframes fc-shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-5px); }
  75%       { transform: translateX(5px); }
}

.form-campo {
  position: relative;
  margin-bottom: 1.25rem;
}

/* Inputs y textarea */
.form-campo input,
.form-campo select,
.form-campo textarea {
  width: 100%;
  padding: 1.45rem 1rem 0.5rem;
  background: #fff;
  border: 1.5px solid rgba(26,42,53,0.16);
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--tinta);
  outline: none;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

/* Focus state */
.form-campo input:focus,
.form-campo select:focus,
.form-campo textarea:focus {
  border-color: var(--turquesa);
  box-shadow: 0 0 0 3px rgba(0,188,212,0.12);
}

/* Error state */
.form-campo.has-error input,
.form-campo.has-error select,
.form-campo.has-error textarea {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,107,107,0.10);
  animation: fc-shake 0.35s ease;
}

/* ── Floating label ── */
.fc-label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.88rem;
  color: rgba(26,42,53,0.42);
  pointer-events: none;
  transition:
    top 0.2s var(--ease),
    font-size 0.2s var(--ease),
    color 0.2s var(--ease),
    transform 0.2s var(--ease);
  white-space: nowrap;
}

/* Float: input/textarea con contenido o con foco */
.form-campo input:focus ~ .fc-label,
.form-campo input:not(:placeholder-shown) ~ .fc-label,
.form-campo textarea:focus ~ .fc-label,
.form-campo textarea:not(:placeholder-shown) ~ .fc-label {
  top: 0.45rem;
  transform: none;
  font-size: 0.67rem;
  color: var(--turquesa);
  font-weight: 600;
}

/* Error: label cambia a coral */
.form-campo.has-error input ~ .fc-label,
.form-campo.has-error select ~ .fc-label,
.form-campo.has-error textarea ~ .fc-label {
  color: var(--coral);
}

/* Float: select (clase .has-value añadida por JS) */
.form-campo select:focus ~ .fc-label,
.form-campo select.has-value ~ .fc-label {
  top: 0.45rem;
  transform: none;
  font-size: 0.67rem;
  color: var(--turquesa);
  font-weight: 600;
}

/* Asterisco en required */
.fc-req {
  font-style: normal;
  color: var(--coral);
  margin-left: 1px;
}

/* ── Select custom ── */
.form-campo--select select {
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-campo--select select option { color: var(--tinta); }
.fc-chevron {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(26,42,53,0.4);
  pointer-events: none;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
  display: flex;
  align-items: center;
}
.form-campo--select select:focus ~ .fc-chevron {
  color: var(--turquesa);
  transform: translateY(-50%) rotate(180deg);
}

/* ── Textarea ── */
.form-campo--textarea .fc-label {
  top: 1.1rem;
  transform: none;
}
.form-campo textarea:focus ~ .fc-label,
.form-campo textarea:not(:placeholder-shown) ~ .fc-label {
  top: 0.45rem;
}
.form-campo textarea {
  min-height: 110px;
  resize: vertical;
  padding-top: 1.5rem;
}

/* ── Error message ── */
.form-campo .form-error-msg {
  display: none;
  font-size: 0.72rem;
  color: var(--coral);
  font-weight: 500;
  margin-top: 0.35rem;
}
.form-campo.has-error .form-error-msg { display: block; }

/* ── Legal ── */
.seccion-contacto .form-legal {
  font-size: 0.72rem;
  color: rgba(26,42,53,0.38);
  font-weight: 300;
  margin-top: 1rem;
  text-align: center;
  line-height: 1.55;
}

/* ── Éxito: colores para fondo claro ── */
.contacto-form-col .form-exito {
  text-align: center;
  padding: 3rem 1rem;
}
.contacto-form-col .form-exito__titulo {
  color: var(--tinta);
}
.contacto-form-col .form-exito__texto {
  color: rgba(26,42,53,0.55);
  font-weight: 300;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .contacto-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contacto-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    align-items: start;
  }
  .contacto-aside__divider { display: none; }
  .contacto-aside__nota { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .contacto-aside { grid-template-columns: 1fr; }
  .contacto-form-col { padding: 1.75rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .form-campo.has-error input,
  .form-campo.has-error select,
  .form-campo.has-error textarea { animation: none; }
  .fc-label { transition: none; }
}

/* ===================================================================
   HERO — FONDO BLANCO ARENA
   Override del fondo oscuro original. Solo colores: todo lo demás
   (tipografía, tamaños, layout, animaciones) permanece intacto.
================================================================= */
.seccion-hero {
  background: var(--blanco-arena) !important;
}

/* Parallax orbs: más suaves sobre fondo claro */
.hp-orb--turquesa { opacity: 0.55 !important; }
.hp-orb--coral    { opacity: 0.45 !important; }
.hp-orb--mostaza  { opacity: 0.38 !important; }

/* Texto que era blanco → tinta oscura */
.hero-titulo      { color: var(--tinta) !important; }
.hero-subtitulo   { color: rgba(26, 42, 53, 0.62) !important; }
.hero-stat__numero { color: var(--tinta) !important; }
.hero-stat__label  { color: rgba(26, 42, 53, 0.52) !important; }
.hero-stat + .hero-stat::before { background: rgba(26, 42, 53, 0.14) !important; }

/* Pill — texto turquesa oscuro para contraste en fondo claro */
.hero-pill {
  color: var(--turquesa-oscuro) !important;
  background: rgba(0, 188, 212, 0.10) !important;
}

/* Scroll hint — visible en fondo claro */
.scroll-hint { color: rgba(26, 42, 53, 0.38) !important; }

/* Botón Ghost adaptado para fondo claro */
.seccion-hero [data-variant="ghost"] {
  background: rgba(26, 42, 53, 0.06) !important;
}
.seccion-hero [data-variant="ghost"] .metal-btn-inner {
  background: rgba(26, 42, 53, 0.05) !important;
}
.seccion-hero [data-variant="ghost"] .metal-btn {
  background: rgba(26, 42, 53, 0.07) !important;
  color: var(--tinta) !important;
  border: 1.5px solid rgba(26, 42, 53, 0.2) !important;
}

/* Aurora más suave sobre blanco-arena */
.hero-aurora {
  opacity: 0.55 !important;
}

/* ── Mobile: hero no cortado ── */
@media (max-width: 600px) {
  .seccion-hero {
    min-height: auto !important;
    /* padding-bottom 7rem da holgura suficiente para las tarjetas rotadas */
    padding: 6rem 1.25rem 7rem !important;
    /* overflow visible en móvil: las tarjetas no quedan cortadas en ningún dispositivo */
    overflow: visible !important;
  }
  /* Tarjetas fotográficas: reduce translate para evitar clipping */
  .hero-img-card--back  {
    transform: rotate(-4deg) translate(50px, 16px) !important;
  }
  .hero-img-card--front {
    transform: rotate(4deg) translate(-45px, -16px) !important;
  }
  .hero-img-card--back:hover {
    transform: rotate(-1deg) translate(50px, 4px) scale(1.02) !important;
  }
  .hero-img-card--front:hover {
    transform: rotate(1deg) translate(-45px, -28px) scale(1.02) !important;
  }
  /* Animaciones de entrada ajustadas al nuevo translate */
  @keyframes hc-in-back-sm {
    from { opacity: 0; transform: rotate(-4deg) translate(160px, 16px); }
    to   { opacity: 1; transform: rotate(-4deg) translate(50px, 16px); }
  }
  @keyframes hc-in-front-sm {
    from { opacity: 0; transform: rotate(4deg) translate(120px, -16px); }
    to   { opacity: 1; transform: rotate(4deg) translate(-45px, -16px); }
  }
  .hero-img-card--back  { animation-name: hc-in-back-sm !important; }
  .hero-img-card--front { animation-name: hc-in-front-sm !important; }
}

/* ── Mobile: floating nav — el dropdown se posiciona bien ── */
/* (el HTML fue restructurado: dropdown ahora es hijo de .fn-wrap, no de .fn) */
/* .fn-wrap es position:fixed → .fn__dropdown se posiciona relativo a él */

/* ===================================================================
   LANG TOGGLE — botón de idioma en el dropdown móvil
   (Ambas páginas: index.html y anunciantes.html)
================================================================= */
.fn__dd-lang-btn {
  display: flex; align-items: center; gap: 0.6rem;
  width: 100%; padding: 0.68rem 1rem;
  background: rgba(0,188,212,0.07);
  border: 1px solid rgba(0,188,212,0.18);
  border-radius: 12px; cursor: pointer;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  color: var(--turquesa-oscuro);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.fn__dd-lang-btn:hover { background: rgba(0,188,212,0.14); }
.fn__dd-lang-icon { font-size: 1rem; line-height: 1; }
.fn__dd-lang-label { line-height: 1; }

/* ===================================================================
   PRECIOS — Carrusel horizontal
   Reemplaza el grid estático por un scroll-carousel con botones de nav
================================================================= */
.precios-carousel {
  position: relative; display: flex; align-items: center;
  gap: 0.75rem; max-width: 940px; margin: 0 auto;
}

/* Contenedor scroll — display:block (no flex) para que el inner flex row pueda crecer */
.precios-carousel .precios-grid-wrap {
  flex: 1 1 0; min-width: 0;
  overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 2rem 1.5rem 1.75rem;
  background: linear-gradient(180deg, rgba(26,42,53,0.045) 0%, rgba(26,42,53,0.07) 100%);
  border: 1px solid rgba(26,42,53,0.08);
  border-radius: var(--r-lg);
}
.precios-carousel .precios-grid-wrap::-webkit-scrollbar { display: none; }

/* El grid es una fila flex que puede crecer más que su padre (sin shrink) */
.precios-carousel .precios-grid {
  display: flex; flex-wrap: nowrap;
  gap: 1.5rem; align-items: start;
}

/* Cada card: ancho fijo, sin encoger */
.precios-carousel .precio-card {
  flex: 0 0 clamp(300px, 42vw, 390px);
  scroll-snap-align: center;
  min-width: 0;
}

/* Botones prev / next del carrusel */
.precios-car-btn {
  flex-shrink: 0; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blanco-arena); border: 1.5px solid rgba(26,42,53,0.14);
  border-radius: 50%; cursor: pointer; color: var(--tinta);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease),
              transform 0.15s var(--ease), box-shadow 0.18s var(--ease);
}
.precios-car-btn:hover {
  background: var(--turquesa); color: #fff;
  border-color: var(--turquesa);
  box-shadow: 0 4px 18px rgba(0,188,212,0.30);
  transform: scale(1.08);
}
.precios-car-btn:active { transform: scale(0.95); }
.precios-car-btn:disabled { opacity: 0.32; cursor: default; transform: none; }

@media (max-width: 640px) {
  .precios-car-btn { width: 36px; height: 36px; }
  .precios-carousel .precio-card {
    flex: 0 0 clamp(280px, 82vw, 340px);
  }
  .precios-carousel .precios-grid-wrap {
    padding: 1.5rem 1rem 1.25rem;
  }
}

/* ===================================================================
   PQ-IMG — MetalButton sobre la imagen central de "Para quién"
================================================================= */
.pq-img-metal-btn {
  transform: scale(0.88);
  transition: transform 0.25s var(--ease);
}
.pq-img-metal-btn .metal-btn {
  height: 40px; padding: 0 1.2rem;
  font-size: 0.82rem;
}
.pq-img-overlay:hover .pq-img-metal-btn { transform: scale(0.92); }

/* ===================================================================
   HERO — padding-bottom ampliado para que las fotos no sangren
   hacia la sección siguiente en móvil
================================================================= */
@media (max-width: 768px) {
  .seccion-hero {
    padding-bottom: 7rem !important;
    overflow: visible !important;
  }
  .hero-right {
    max-height: 320px;
    overflow: visible;
  }
}

/* ============================================================
   PRECIOS — glass-light sobre canvas WebGL animado
   Sin hover translateY. Tipografía extralight sans.
   Checks todos turquesa. CTA ripple buttons.
   ============================================================ */

/* ── Canvas WebGL — fondo animado ── */
#preciosCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ── 1. Sección — fondo claro ── */
.seccion-precios {
  padding: 3.8rem 1.5rem 4.7rem;
  background: var(--blanco-arena, #FFFDF7);
  position: relative;
  overflow: hidden;
}

/* Sin ::before ambient lights */
.seccion-precios::before { display: none; }

/* ── 2. Contenedor y encabezado ── */
.seccion-precios__contenedor {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
}

.seccion-precios__encabezado { text-align: center; margin-bottom: 1.5rem; }

.seccion-precios__eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--turquesa); margin-bottom: 0.9rem;
}

.seccion-precios__titulo {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem); line-height: 1.15;
  color: var(--tinta); margin-bottom: 0.4rem;
}

.seccion-precios__sub {
  font-size: 0.78rem; font-weight: 300; line-height: 1.6;
  color: var(--texto-medio); max-width: 520px; margin: 0 auto;
}

/* ── 3. Toggle mensual/anual ── */
.precios-toggle {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-bottom: 1.7rem;
}

.precios-toggle__btn {
  padding: 0.55rem 1.4rem; border-radius: 999px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--texto-medio);
  background: transparent;
  border: 1px solid rgba(26,42,53,0.15);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.2,0,0,1);
  display: flex; align-items: center; gap: 0.5rem;
}

.precios-toggle__btn--activo {
  background: rgba(0,188,212,0.08);
  color: var(--tinta);
  border-color: rgba(0,188,212,0.30);
}

.precios-toggle__badge {
  background: var(--turquesa); color: var(--azul-profundo);
  font-size: 0.7rem; font-weight: 700;
  padding: 0.15rem 0.5rem; border-radius: 999px;
}

/* ── 4. Grid ── */
.seccion-precios .precios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  align-items: center;
}

@media (max-width: 900px) {
  .seccion-precios .precios-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

/* ── 5. pc-wrap — sin perspectiva ── */
.pc-wrap {
  perspective: none;
  display: flex;
  flex-direction: column;
}

/* ── 6. Card base — glass-light compacta, sin hover translateY ── */
.seccion-precios .precio-card {
  background: linear-gradient(135deg,
    rgba(255,255,255,0.72),
    rgba(255,255,255,0.48));
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0.85rem;
  padding: 1.2rem 1.2rem 1.35rem;
  position: relative;
  overflow: hidden;
  transform-style: flat;
  transform: none;
  transition: box-shadow 0.28s cubic-bezier(0.2,0,0,1);
  color: var(--tinta);
  box-shadow:
    0 2px 8px rgba(26,42,53,0.06),
    0 8px 32px rgba(26,42,53,0.06);
  display: flex;
  flex-direction: column;
}

/* Sin shine border */
.seccion-precios .precio-card::after { display: none; }
.seccion-precios .precio-card::before { display: none; }

/* Sin hover translateY — cards estáticas */
.seccion-precios .precio-card:hover { transform: none; }

/* ── 7. Nombre del plan — extralight sans compacto ── */
.precio-card__nombre {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 200;
  font-size: clamp(0.9rem, 1.3vw, 1.06rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: none;
  margin-bottom: 0.2rem;
  color: var(--tinta);
}

/* Todos los tiers usan el mismo color de nombre */
.precio-card--esencial   .precio-card__nombre { color: var(--tinta); }
.precio-card--profesional .precio-card__nombre { color: var(--tinta); }
.precio-card--elite       .precio-card__nombre { color: var(--tinta); }

/* ── 8. Precio extralight sans ── */
.precio-card__precio {
  display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0;
}

.precio-card__monto {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 200;
  font-size: clamp(1.4rem, 2.0vw, 1.7rem);
  letter-spacing: -0.03em;
  color: var(--tinta);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.precio-card__periodo {
  font-size: 0.68rem; font-weight: 300;
  color: var(--texto-medio);
}

.precio-card__tagline {
  font-size: 0.66rem; font-weight: 300; font-style: normal;
  color: var(--texto-suave); line-height: 1.4; margin-top: 0.25rem;
}

/* ── 9. Divisor degradado — tonos oscuros ── */
.precio-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(26,42,53,0.10) 20%,
    rgba(26,42,53,0.18) 50%,
    rgba(26,42,53,0.10) 80%,
    transparent 100%);
  margin: 0.64rem 0 0.55rem;
  flex-shrink: 0;
}

/* ── 10. Lista de features ── */
.precio-card__lista {
  list-style: none;
  margin-bottom: 1rem;
  display: flex; flex-direction: column; gap: 0.3rem;
  flex: 1;
}

.precio-card__lista li {
  display: flex; align-items: center; gap: 0.36rem;
  font-size: 0.67rem; font-weight: 300;
  color: var(--texto-medio); line-height: 1.4;
}

/* ── 11. SVG check icon — todos turquesa, sin animación ── */
.precio-check {
  flex-shrink: 0;
  width: 11px; height: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  background: none;
  border-radius: 0;
  color: var(--turquesa);
}

.precio-check svg { width: 11px; height: 11px; }

/* Todos turquesa */
.precio-check--turquesa,
.precio-check--mostaza,
.precio-check--coral { color: var(--turquesa); }

/* Sin checkPulse ni hover animation */
.precio-card__lista li:hover .precio-check { animation: none; }

/* ── 12. Badge ── */
.precio-card__badge {
  position: absolute;
  top: -1px; right: 1rem; left: auto;
  transform: none;
  padding: 0.17rem 0.6rem;
  border-radius: 0 0 7px 7px;
  font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap;
}

.precio-card__badge--popular {
  background: var(--mostaza); color: var(--tinta);
}

.precio-card__badge--elite {
  background: var(--coral); color: #fff;
}

/* ── 13. Destacada — ring cyan estático, scale 1.03, hover sin cambio ── */
@media (min-width: 900px) {
  .precio-card--destacada {
    background: linear-gradient(135deg,
      rgba(255,255,255,0.88),
      rgba(255,255,255,0.64));
    border-color: rgba(0,188,212,0.22);
    box-shadow:
      0 2px 8px rgba(26,42,53,0.08),
      0 12px 40px rgba(26,42,53,0.08),
      0 0 0 2px rgba(0,188,212,0.15);
    transform: scale(1.03);
    z-index: 2;
  }
  /* Hover no cambia el scale — card estática */
  .precio-card--destacada:hover {
    transform: scale(1.03);
  }
}

/* ── 14. Header y contenido ── */
.seccion-precios .precio-card__header,
.seccion-precios .precio-card__lista,
.seccion-precios .precio-card__cta,
.seccion-precios .precio-card__badge {
  position: relative;
  transform: none;
  transform-style: flat;
}

.precio-card__header {
  margin-bottom: 0;
  padding-top: 0.2rem;
}

/* ── 15. CTA — MetalButton oficial ancho completo ── */
.precio-card__cta { margin-top: auto; }
.precio-card__cta .metal-btn-wrap { width: 100%; }
.precio-card__cta .metal-btn { width: 100%; justify-content: center; }

/* ── 16. Nota de transparencia ── */
.precios-nota {
  text-align: center; margin-top: 2.5rem;
  font-size: 0.82rem; font-weight: 300;
  color: var(--texto-medio); line-height: 1.65;
}

.precios-nota__anual {
  color: var(--texto-suave);
  font-style: italic;
}

/* ── 17. Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .seccion-precios .precio-card { transition: none; }
  .precio-card--destacada { transform: scale(1.03) !important; }
}

/* ── 18. Mobile — sin scale en destacada ── */
@media (max-width: 900px) {
  .pc-wrap { perspective: none; }
  .seccion-precios { padding: 2.6rem 1rem 3rem; }
  .seccion-precios .precio-card--destacada { transform: none; }
  .seccion-precios .precio-card--destacada:hover { transform: none; }
}

/* ===================================================================
   BUG FIX 1 — fn-wrap: no debe aparecer en desktop
   En anunciantes.html el .header cubre la navegación desktop.
   El .fn-wrap es solo para móvil.
================================================================= */
@media (min-width: 768px) {
  .fn-wrap { display: none !important; }
}

/* ===================================================================
   BUG FIX 2 — Shutter hero: título aparece 4 veces
   .sw__main necesita z-index positivo para no quedar bajo los slices
   .sw__slice cambia a display:flex para alinearse correctamente
   sobre el texto sin crear flujo adicional visible
================================================================= */
.sw__main {
  position: relative;
  z-index: 1;
}
.sw__slice {
  display: flex;
  align-items: center;
}

/* ===================================================================
   BUG FIX 3 — Hero móvil: altura fija no se adapta (rango 601-767px)
   Los breakpoints <600px ya tienen fix anterior.
   Aquí cubrimos el rango intermedio y los teléfonos muy pequeños.
================================================================= */
@media (max-width: 767px) {
  #hero-anunciantes {
    min-height: auto !important;
    padding-top: 7rem !important;
  }
  .hero-titulo {
    font-size: clamp(1.9rem, 7vw, 2.6rem) !important;
    line-height: 1.15 !important;
  }
}

@media (max-width: 390px) {
  #hero-anunciantes {
    padding: 6rem 1rem 4rem !important;
  }
  .hero-titulo {
    font-size: clamp(1.7rem, 8vw, 2.2rem) !important;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .metal-btn-wrap,
  .hero-ctas .metal-btn {
    width: 100%;
    justify-content: center;
  }
  .hero-aurora { opacity: 0.40 !important; }
}


/* ============================================
   SECCIÓN RESEÑAS REALES — bg neutro con detalles de marca
   ============================================ */
.resenas-section {
  padding: 5rem 1.5rem 6rem;
  background: var(--blanco-arena);
}
.resenas-container {
  max-width: 1080px;
  margin: 0 auto;
}
.resenas-header {
  text-align: center;
  margin-bottom: 3rem;
}
.resenas-eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--turquesa);
  margin-bottom: 0.65rem;
}
.resenas-titulo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.2;
  color: var(--tinta);
  margin-bottom: 0.75rem;
}
.resenas-sub {
  font-family: var(--sans);
  font-size: 1rem;
  color: rgba(26,42,53,0.65);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid de reseñas existentes */
.resenas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.resena-card {
  background: #fff;
  border: 1px solid rgba(0, 188, 212, 0.12);
  border-radius: 14px;
  padding: 1.5rem 1.4rem 1.4rem;
  box-shadow: 0 1px 0 rgba(0,188,212,0.04), 0 6px 24px -12px rgba(26,42,53,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.resena-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(0,188,212,0.06), 0 12px 30px -12px rgba(26,42,53,0.12);
}
.resena-rating {
  display: flex;
  gap: 0.1rem;
  color: var(--mostaza);
  font-size: 0.95rem;
}
.resena-rating .star-empty { color: rgba(0,0,0,0.12); }
.resena-texto {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--tinta);
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.resena-autor {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: rgba(26,42,53,0.65);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(26,42,53,0.08);
}
.resena-autor strong {
  font-weight: 600;
  color: var(--tinta);
}
.resena-fecha {
  display: block;
  font-size: 0.72rem;
  color: rgba(26,42,53,0.45);
  margin-top: 0.2rem;
}

/* Estado vacío */
.resenas-empty {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px dashed rgba(0, 188, 212, 0.3);
  border-radius: 14px;
  margin-bottom: 3rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: rgba(26,42,53,0.65);
  font-style: italic;
}

/* Formulario */
.resenas-form-card {
  /* Borde gradiente coral→turquesa */
  background:
    linear-gradient(145deg, #fff, #fffdf7) padding-box,
    linear-gradient(163deg, #FF6B6B 0%, #00BCD4 100%) border-box;
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 2.2rem clamp(1.25rem, 3vw, 2.2rem);
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 1px 0 rgba(0,188,212,0.05), 0 12px 40px -16px rgba(26,42,53,0.1);
}
.resenas-form-titulo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--tinta);
  margin-bottom: 1.5rem;
  text-align: center;
}
.resenas-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.resenas-field { display: flex; flex-direction: column; gap: 0.4rem; }
.resenas-field label {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--tinta);
  letter-spacing: 0.02em;
}
.resenas-field input,
.resenas-field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(26,42,53,0.15);
  border-radius: 10px;
  background: var(--blanco-arena);
  color: var(--tinta);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.resenas-field input:focus,
.resenas-field textarea:focus {
  outline: none;
  border-color: var(--turquesa);
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.15);
}
.resenas-help {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(26,42,53,0.5);
  margin: 0;
}

/* Estrellas — radio group */
.resenas-stars {
  display: flex;
  gap: 0.15rem;
  font-size: 1.6rem;
}
.resenas-star {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.15rem 0.2rem;
  color: rgba(26,42,53,0.18);
  transition: color 0.15s ease, transform 0.15s ease;
  line-height: 1;
}
.resenas-star:hover,
.resenas-star.active {
  color: var(--mostaza);
}
.resenas-star:hover { transform: scale(1.1); }
.resenas-star:focus-visible {
  outline: 2px solid var(--turquesa);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Botón enviar */
.resenas-submit {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--coral), var(--turquesa));
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s;
  margin-top: 0.5rem;
}
.resenas-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(0, 188, 212, 0.4);
}
.resenas-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.resenas-legal {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(26,42,53,0.5);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* Mensaje de éxito */
.resenas-exito {
  text-align: center;
  padding: 1.25rem;
  background: rgba(0, 188, 212, 0.08);
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 12px;
  color: var(--turquesa-oscuro);
  font-family: var(--sans);
  font-weight: 500;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 640px) {
  .resenas-section { padding: 3.5rem 1rem 4.5rem; }
  .resenas-form-card { padding: 1.75rem 1.25rem; }
  .resenas-stars { font-size: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  .resena-card,
  .resenas-submit,
  .resenas-star { transition: none !important; }
}

/* ======================================================
   SECCIÓN ORBITAL — Valores para empresas
   Línea de tiempo orbital radial 3D (reemplaza stats)
====================================================== */
.orbital-section {
  padding: 5rem 1.5rem 5.5rem;
  background: var(--blanco-arena);
  position: relative;
  overflow: hidden;
}
.orbital-section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.orbital-section__eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turquesa);
  margin: 0 0 0.85rem;
}
.orbital-section__titulo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.15;
  color: var(--tinta);
  margin: 0 0 1rem;
}
.orbital-section__sub {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(26, 42, 53, 0.65);
  max-width: 520px;
  margin: 0 auto;
}

.orbital-stage {
  position: relative;
  width: 100%;
  height: 600px;
  max-width: 800px;
  margin: 0 auto;
}

/* Núcleo central */
.orbital-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--coral), var(--turquesa), var(--mostaza), var(--coral));
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  animation: orbital-core-pulse 3s ease-in-out infinite;
  box-shadow: 0 8px 28px -6px rgba(0,188,212,0.35);
}
.orbital-core::before,
.orbital-core::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--turquesa);
  opacity: 0;
  animation: orbital-ping 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orbital-core::before { width: 84px; height: 84px; }
.orbital-core::after  { width: 104px; height: 104px; animation-delay: 0.8s; border-color: var(--coral); }
.orbital-core__inner {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 2;
}

@keyframes orbital-core-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.06); }
}
@keyframes orbital-ping {
  0%        { transform: translate(-50%, -50%) scale(0.7); opacity: 0.7; }
  80%, 100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

/* Anillo orbital — elipse que coincide con la trayectoria de los nodos.
   Dimensiones: width = 2*RADIUS, height = width * Y_SCALE */
.orbital-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  /* desktop: RADIUS=200 → width=400px, height=400*0.42=168px */
  width: 400px; height: 168px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 188, 212, 0.28);
  pointer-events: none;
}

/* Nodo (button reset incluido) */
.orbital-node {
  position: absolute;
  top: 50%; left: 50%;
  width: 44px; height: 44px;
  margin: -22px 0 0 -22px;
  /* Sin transition en transform/opacity: rAF es quien anima — CSS transition
     y rAF en la misma propiedad se interfieren causando el efecto tembloroso */
  transition: none;
  will-change: transform, opacity;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
}
.orbital-node:focus-visible {
  outline: 2px solid var(--turquesa);
  outline-offset: 4px;
  border-radius: 50%;
}
.orbital-node__dot {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(0, 188, 212, 0.4);
  color: var(--tinta);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px -6px rgba(26, 42, 53, 0.18);
  transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1),
              background 0.35s ease, border-color 0.35s ease,
              box-shadow 0.35s ease, color 0.35s ease;
}
.orbital-node:hover .orbital-node__dot {
  transform: scale(1.12);
  border-color: var(--turquesa);
}
.orbital-node--expanded .orbital-node__dot {
  background: linear-gradient(135deg, var(--coral), var(--turquesa));
  color: #ffffff;
  border-color: #ffffff;
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.18),
              0 12px 30px -10px rgba(26, 42, 53, 0.3);
}
.orbital-node--related .orbital-node__dot {
  border-color: var(--mostaza);
  animation: orbital-related-pulse 1.4s ease-in-out infinite;
}
@keyframes orbital-related-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(255, 179, 0, 0); }
}

.orbital-node__label {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tinta);
  white-space: nowrap;
  opacity: 0.65;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.orbital-node--expanded .orbital-node__label {
  opacity: 1;
  transform: translateX(-50%) scale(1.1);
}

/* Card expandida */
.orbital-card {
  position: absolute;
  top: calc(100% + 36px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: #ffffff;
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
  box-shadow: 0 20px 50px -20px rgba(26, 42, 53, 0.25);
  z-index: 200;
  animation: orbital-card-in 0.35s cubic-bezier(0.2, 0, 0, 1);
  text-align: left;
}
.orbital-card::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 188, 212, 0.2);
  border-left: 1px solid rgba(0, 188, 212, 0.2);
}
@keyframes orbital-card-in {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.orbital-card__head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 0.5rem; margin-bottom: 0.5rem;
}
.orbital-card__badge {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}
.orbital-card__badge--completed   { background: var(--turquesa-oscuro, #00434F); color: #ffffff; }
.orbital-card__badge--in-progress { background: var(--mostaza); color: var(--tinta); }
.orbital-card__badge--pending     { background: rgba(255, 107, 107, 0.12); color: var(--coral-oscuro, #B83E3E); }
.orbital-card__date {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: rgba(26, 42, 53, 0.5);
}
.orbital-card__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--tinta);
  margin: 0.2rem 0 0.6rem;
  line-height: 1.25;
}
.orbital-card__content {
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(26, 42, 53, 0.78);
  margin: 0 0 0.85rem;
}
.orbital-card__divider {
  height: 1px;
  background: rgba(26, 42, 53, 0.08);
  margin: 0.7rem 0;
}
.orbital-card__energy {
  display: flex; justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.72rem;
  color: rgba(26, 42, 53, 0.65);
  margin-bottom: 0.3rem;
}
.orbital-card__bar {
  width: 100%; height: 4px;
  background: rgba(26, 42, 53, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.orbital-card__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--turquesa));
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.2, 0, 0, 1);
}
.orbital-card__related-title {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 42, 53, 0.6);
  margin: 0.6rem 0 0.4rem;
}
.orbital-card__related {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
}
.orbital-card__related-btn {
  font-family: var(--sans);
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(0, 188, 212, 0.3);
  background: transparent;
  color: var(--tinta);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.orbital-card__related-btn:hover {
  background: rgba(0, 188, 212, 0.08);
  border-color: var(--turquesa);
}

/* Responsive */
@media (max-width: 768px) {
  .orbital-stage { height: 480px; }
  /* RADIUS_MOBILE=130 → width=260, height=260*0.62=161 */
  .orbital-ring  { width: 260px; height: 161px; }
  .orbital-card  { width: 240px; top: calc(100% + 28px); }
}
@media (max-width: 480px) {
  .orbital-stage { height: 420px; }
  /* RADIUS_SMALL=100 → width=200, height=200*0.62=124 */
  .orbital-ring  { width: 200px; height: 124px; }
  .orbital-node  { width: 38px; height: 38px; margin: -19px 0 0 -19px; }
  .orbital-node__dot   { font-size: 1rem; }
  .orbital-node__label { font-size: 0.62rem; }
  .orbital-card  { width: 220px; padding: 0.9rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .orbital-core,
  .orbital-core::before,
  .orbital-core::after,
  .orbital-node,
  .orbital-node--related .orbital-node__dot { animation: none !important; }
  .orbital-node { transition: none !important; }
}
