/* =========================================================================
   Hazme la web — Stylesheet v2 (full rebuild)
   Layout: full-width visual con texto encima.
   Estilo: vibrante, glass, glow, gradientes animados.
   Paleta: deep blue / coral / sand / mint / violet (heredada).
   ========================================================================= */

/* ----- 1. TOKENS ---------------------------------------------------------- */
:root{
  /* Colores base (mantenidos del original) */
  --bg-1: #050714;
  --bg-2: #0a0f24;
  --bg-3: #0b1230;
  --text: #fff8ef;
  --muted: rgba(255, 248, 239, .68);
  --muted-2: rgba(255, 248, 239, .42);
  --line: rgba(255, 255, 255, .12);
  --line-2: rgba(255, 255, 255, .06);
  --card-bg: rgba(255, 255, 255, .045);
  --card-bg-2: rgba(255, 255, 255, .09);

  --coral: #ff766f;
  --sand: #ffd28a;
  --mint: #6ff4d2;
  --violet: #a78bfa;
  --blue: #7dd3fc;
  --deep-blue: #2563eb;

  /* Mezclas para gradientes */
  --grad-warm: linear-gradient(135deg, var(--coral), var(--sand));
  --grad-cool: linear-gradient(135deg, var(--blue), var(--violet));
  --grad-full: linear-gradient(120deg, var(--blue) 0%, var(--violet) 30%, var(--sand) 60%, var(--coral) 100%);

  --shadow-card: 0 24px 70px rgba(0, 0, 0, .34);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, .22);

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 28px;
  --r-xl: 36px;

  --container: 1280px;
  --container-narrow: 1080px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ----- 2. RESET ----------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg-1);
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; }

/* ----- 3. FONDO GLOBAL ANIMADO ------------------------------------------- */
.bg-canvas{
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse at 10% -10%, rgba(37, 99, 235, .35), transparent 45%),
    radial-gradient(ellipse at 90% 10%, rgba(167, 139, 250, .25), transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 118, 111, .15), transparent 55%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 40%, var(--bg-1) 100%);
}
.bg-grid{
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}
.bg-orb{
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
  z-index: -1;
  will-change: transform;
}
.bg-orb-1{
  width: 560px; height: 560px;
  top: -180px; left: -200px;
  background: radial-gradient(circle, rgba(37, 99, 235, .55), transparent 70%);
  animation: orbDrift1 22s ease-in-out infinite;
}
.bg-orb-2{
  width: 480px; height: 480px;
  top: 30%; right: -180px;
  background: radial-gradient(circle, rgba(167, 139, 250, .45), transparent 70%);
  animation: orbDrift2 28s ease-in-out infinite;
}
.bg-orb-3{
  width: 420px; height: 420px;
  bottom: -150px; left: 40%;
  background: radial-gradient(circle, rgba(255, 210, 138, .25), transparent 70%);
  animation: orbDrift3 26s ease-in-out infinite;
}
@keyframes orbDrift1{
  0%, 100%{ transform: translate(0, 0); }
  50%{ transform: translate(120px, 80px); }
}
@keyframes orbDrift2{
  0%, 100%{ transform: translate(0, 0); }
  50%{ transform: translate(-100px, 60px); }
}
@keyframes orbDrift3{
  0%, 100%{ transform: translate(0, 0) scale(1); }
  50%{ transform: translate(80px, -50px) scale(1.1); }
}

/* Barra de progreso de scroll */
.scroll-progress{
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--grad-full);
  z-index: 999;
  box-shadow: 0 0 18px rgba(255, 210, 138, .5);
  transition: width .08s linear;
}

/* ----- 4. HEADER ---------------------------------------------------------- */
.site-header{
  position: sticky;
  top: 16px;
  z-index: 50;
  width: min(var(--container), calc(100% - 32px));
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 14px 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 13, 28, .68);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
  transition: padding .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled{
  padding: 8px 14px 8px 16px;
  background: rgba(8, 11, 24, .85);
}
.brand{
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.brand-logo{
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.nav{
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a{
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav a:hover{
  color: var(--text);
  background: rgba(255, 255, 255, .06);
}
.nav-cta{
  color: #fff !important;
  background: var(--grad-warm);
  position: relative;
  overflow: hidden;
  font-weight: 800 !important;
  box-shadow: 0 10px 28px rgba(255, 118, 111, .28);
}
.nav-cta::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.4) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}
.nav-cta:hover::before{ transform: translateX(120%); }

/* Mobile menu toggle */
.nav-toggle{
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span{
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after{
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease);
}
.nav-toggle span::before{ top: -6px; }
.nav-toggle span::after{ top: 6px; }

/* ----- 4B. TOP BAR DE CONTACTO ------------------------------------------- */
.topbar{
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(8, 11, 24, .85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(255, 210, 138, .15);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .3);
}
/* Línea sutil de gradiente animado en el borde inferior */
.topbar::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(125, 211, 252, .4) 20%,
    rgba(167, 139, 250, .5) 40%,
    rgba(255, 210, 138, .6) 60%,
    rgba(255, 118, 111, .5) 80%,
    transparent 100%);
  background-size: 200% 100%;
  animation: topbarLineFlow 8s ease-in-out infinite;
}
@keyframes topbarLineFlow{
  0%, 100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}

.topbar-inner{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 48px;
}

.topbar-item{
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.01em;
  text-decoration: none;
  position: relative;
  transition: color .25s var(--ease), background .25s ease;
  white-space: nowrap;
  min-width: 0;
}
.topbar-item:hover{
  color: var(--sand);
  background: rgba(255, 210, 138, .06);
}
.topbar-item:hover .topbar-icon{
  color: var(--sand);
  border-color: rgba(255, 210, 138, .4);
  background: rgba(255, 210, 138, .12);
  transform: scale(1.08);
}

/* Icono dentro de un círculo */
.topbar-icon{
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .04);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: color .25s var(--ease), border-color .25s ease, background .25s ease, transform .25s var(--ease);
}
.topbar-icon svg{
  width: 14px;
  height: 14px;
  display: block;
}

.topbar-label{
  font-weight: 900;
  text-transform: uppercase;
  font-size: 10.5px;
  letter-spacing: .14em;
  color: var(--muted);
  margin-right: 2px;
}
.topbar-value{
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -.01em;
  color: var(--text);
}

/* Separadores verticales sutiles */
.topbar-divider-left::before{
  content: "";
  position: absolute;
  left: 0;
  top: 28%;
  bottom: 28%;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(255, 255, 255, .12) 50%,
    transparent 100%);
}

/* Compensar el header — más espacio para que la topbar respire */
.site-header{
  top: 10px;
}

/* TABLET — escondemos label, mantenemos icono + valor */
@media (max-width: 980px){
  .topbar-label{ display: none; }
  .topbar-item{ gap: 8px; font-size: 13px; padding: 11px 14px; }
  .topbar-value{ font-size: 13px; }
}

/* MÓVIL — todo más compacto */
@media (max-width: 680px){
  .topbar-inner{
    width: calc(100% - 8px);
    min-height: 42px;
  }
  .topbar-item{
    padding: 9px 6px;
    font-size: 12px;
    gap: 7px;
  }
  .topbar-icon{
    width: 24px;
    height: 24px;
  }
  .topbar-icon svg{
    width: 12px;
    height: 12px;
  }
  .topbar-value{
    font-size: 12px;
  }
}

/* MÓVIL ULTRA-PEQUEÑO — solo número en llamada/WhatsApp */
@media (max-width: 420px){
  .topbar-item{
    padding: 9px 4px;
    gap: 6px;
  }
  .topbar-value{
    font-size: 11px;
    letter-spacing: -.02em;
  }
  #topbar-formulario .topbar-value{
    font-size: 11px;
  }
}

/* Ajuste del progress bar para que vaya encima de todo */
.scroll-progress{
  top: 0;
  z-index: 70;
}

/* ----- 5. CONTAINER UTILITIES -------------------------------------------- */
.container{
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.container-narrow{
  width: min(var(--container-narrow), calc(100% - 48px));
  margin-inline: auto;
}

/* ----- 6. HERO (FULL-WIDTH CON TEXTO ENCIMA) ----------------------------- */
.hero{
  position: relative;
  min-height: calc(100vh - 90px);
  padding: clamp(60px, 10vw, 120px) 0 clamp(80px, 12vw, 160px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* Capas decorativas detrás del texto del hero */
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-bg-glow{
  position: absolute;
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(125, 211, 252, .25), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(167, 139, 250, .22), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 210, 138, .12), transparent 60%);
  filter: blur(30px);
  animation: heroGlowPulse 10s ease-in-out infinite;
}
@keyframes heroGlowPulse{
  0%, 100%{ transform: translate(-50%, -50%) scale(1); opacity: .9; }
  50%{ transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

/* Cards flotantes alrededor del texto del hero
   Están al frente para que el título grande no las tape. */
.hero-floats{
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-float{
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  padding: 16px 20px;
  background: rgba(10, 14, 28, .72);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .42);
  opacity: 0;
  animation:
    floatIn .9s var(--ease) forwards,
    floatLoop 7s ease-in-out infinite;
  will-change: transform;
  /* Las dos animaciones se ejecutan a la vez. floatIn pone opacity:1 con forwards;
     floatLoop solo mueve translate y respeta la opacidad final. */
}
.hero-float strong{
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
  color: var(--text);
  white-space: nowrap;
}
.hero-float span{
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.hero-float-icon{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--grad-cool);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.hero-float-icon::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.3) 60%);
}

/* Posiciones — más separadas del centro para no competir con el título */
.hero-float--1{
  top: 14%;
  left: 4%;
  animation-delay: 0.9s, 2s;
  --fx: 6px; --fy: -10px;
}
.hero-float--1 .hero-float-icon{ background: var(--grad-warm); }

.hero-float--2{
  top: 20%;
  right: 4%;
  animation-delay: 1.1s, 2.3s;
  --fx: -8px; --fy: -12px;
  animation-duration: .9s, 8s;
}

.hero-float--3{
  bottom: 22%;
  left: 5%;
  animation-delay: 1.3s, 2.6s;
  --fx: 8px; --fy: -10px;
  animation-duration: .9s, 7.5s;
}
.hero-float--3 .hero-float-icon{
  background: linear-gradient(135deg, var(--mint), var(--blue));
}

.hero-float--4{
  bottom: 24%;
  right: 4%;
  animation-delay: 1.5s, 2.9s;
  --fx: -6px; --fy: -14px;
  animation-duration: .9s, 6.5s;
}
.hero-float--4 .hero-float-icon{
  background: linear-gradient(135deg, var(--sand), var(--coral));
}

@keyframes floatIn{
  0%{ opacity: 0; transform: translate(0, 22px); }
  100%{ opacity: 1; transform: translate(0, 0); }
}
@keyframes floatLoop{
  0%, 100%{ transform: translate(0, 0); }
  50%{ transform: translate(var(--fx, 0), var(--fy, -10px)); }
}

/* Mockup translúcido grande al fondo */
.hero-mockup{
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1100px, 95%);
  transform: translate(-50%, -50%) perspective(1800px) rotateX(0deg);
  z-index: -2;
  opacity: .35;
  filter: blur(.5px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  overflow: hidden;
  will-change: transform;
}
.hero-mockup-top{
  display: flex;
  gap: 8px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-mockup-top span{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}
.hero-mockup-body{
  padding: 36px 44px;
  display: grid;
  gap: 22px;
}
.hero-mockup-bar{
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.hero-mockup-bar.short{ width: 40%; }
.hero-mockup-bar.medium{ width: 70%; }
.hero-mockup-bar.accent{
  background: var(--grad-cool);
  width: 25%;
}
.hero-mockup-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 12px;
}
.hero-mockup-card{
  height: 140px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,210,138,.18), transparent 50%),
    linear-gradient(145deg, rgba(125,211,252,.12), rgba(167,139,250,.08));
  border: 1px solid rgba(255,255,255,.06);
}
.hero-mockup-card:nth-child(2){
  background:
    radial-gradient(circle at 80% 30%, rgba(167,139,250,.2), transparent 50%),
    linear-gradient(145deg, rgba(255,118,111,.12), rgba(255,210,138,.08));
}
.hero-mockup-card:nth-child(3){
  background:
    radial-gradient(circle at 50% 80%, rgba(111,244,210,.18), transparent 50%),
    linear-gradient(145deg, rgba(37,99,235,.15), rgba(125,211,252,.08));
}

/* TEXTO DEL HERO — centrado, FULL ancho disponible */
.hero-content{
  position: relative;
  z-index: 2;
  width: min(var(--container-narrow), calc(100% - 48px));
  text-align: center;
  margin: 0 auto;
}
.hero-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  border-radius: 999px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-eyebrow .dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
  position: relative;
}
.hero-eyebrow .dot::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--sand);
  animation: dotPulse 2s ease-out infinite;
}
@keyframes dotPulse{
  0%{ transform: scale(1); opacity: .7; }
  100%{ transform: scale(2.6); opacity: 0; }
}

.hero-title{
  margin: 0 0 24px;
  font-size: clamp(48px, 8vw, 124px);
  line-height: .92;
  letter-spacing: -.05em;
  font-weight: 900;
  text-wrap: balance;
}
.hero-title .accent{
  display: inline-block;
  background: linear-gradient(120deg,
    var(--blue) 0%,
    var(--violet) 30%,
    var(--sand) 55%,
    var(--coral) 80%,
    var(--blue) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradientFlow 8s ease-in-out infinite;
}
@keyframes gradientFlow{
  0%, 100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}

.hero-lead{
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--muted);
  text-wrap: balance;
}

.hero-actions{
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.hero-tag{
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease, color .25s ease;
}
.hero-tag:hover{
  transform: translateY(-3px);
  border-color: rgba(255, 210, 138, .4);
  background: rgba(255, 210, 138, .08);
  color: var(--text);
}

/* Indicador de scroll */
.hero-scroll{
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: scrollFade 3s ease-in-out infinite;
}
.hero-scroll-line{
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--muted-2), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--sand), transparent);
  transform: translateY(-100%);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollFade{
  0%, 100%{ opacity: .8; }
  50%{ opacity: 1; }
}
@keyframes scrollPulse{
  0%{ transform: translateY(-100%); }
  100%{ transform: translateY(100%); }
}

/* ----- 7. BOTONES -------------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn:hover{
  transform: translateY(-3px);
}
.btn-primary{
  border: 0;
  color: #0a0d1c;
  background: var(--grad-full);
  background-size: 200% 100%;
  box-shadow:
    0 16px 40px rgba(125, 211, 252, .25),
    0 0 0 1px rgba(255, 210, 138, .25) inset;
  animation: btnGradient 8s ease-in-out infinite;
}
@keyframes btnGradient{
  0%, 100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}
.btn-primary::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.5) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
  z-index: 1;
}
.btn-primary:hover::before{ transform: translateX(120%); }
.btn-primary:hover{
  box-shadow:
    0 22px 56px rgba(125, 211, 252, .4),
    0 0 30px rgba(255, 210, 138, .3),
    0 0 0 1px rgba(255, 210, 138, .4) inset;
}
.btn-secondary{
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
}
.btn-secondary:hover{
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .25);
}
.btn-ghost{
  background: transparent;
  color: var(--muted);
}
.btn-ghost:hover{
  color: var(--text);
  background: rgba(255,255,255,.05);
}

/* ----- 8. SECCIONES GENERALES -------------------------------------------- */
.section{
  position: relative;
  padding: clamp(70px, 10vw, 130px) 0;
}
.section-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 80px);
}
.eyebrow{
  display: inline-block;
  color: var(--sand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section h2{
  margin: 0 0 18px;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 900;
  text-wrap: balance;
}
.section h2 .accent{
  background: var(--grad-full);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradientFlow 8s ease-in-out infinite;
}
.section-head p{
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
}

/* ----- 9. SERVICIOS / BENTO ---------------------------------------------- */
.bento{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento-card{
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--card-bg-2), var(--card-bg));
  border-radius: var(--r-lg);
  padding: 28px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
  isolation: isolate;
}
.bento-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,210,138,.12), transparent 40%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 0;
}
.bento-card:hover{
  transform: translateY(-6px);
  border-color: rgba(255, 210, 138, .35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}
.bento-card:hover::before{ opacity: 1; }
.bento-card > *{ position: relative; z-index: 1; }

.bento-card.wide{
  grid-column: span 1;
  grid-row: span 2;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 210, 138, .18), transparent 45%),
    linear-gradient(145deg, var(--card-bg-2), var(--card-bg));
}
.bento-card .icon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 118, 111, .25), rgba(255, 210, 138, .18));
  color: var(--sand);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 210, 138, .2);
}
.bento-card h3{
  margin: 0 0 10px;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: -.02em;
  font-weight: 800;
}
.bento-card p{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ----- 10. NEGOCIOS / CHIPS ---------------------------------------------- */
.business-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.business-grid h2{ text-align: left; }
.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.chips span{
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease, color .25s ease;
}
.chips span:hover{
  transform: translateY(-3px);
  border-color: rgba(167, 139, 250, .4);
  background: rgba(167, 139, 250, .08);
  color: var(--text);
}

/* ----- 11. PLANES -------------------------------------------------------- */
.price-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card{
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--card-bg-2), var(--card-bg));
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
  overflow: hidden;
  isolation: isolate;
}
.price-card:hover{
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
}
.price-card.featured{
  border-color: rgba(255, 210, 138, .35);
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 210, 138, .18), transparent 45%),
    linear-gradient(145deg, rgba(255, 118, 111, .1), var(--card-bg));
  transform: scale(1.02);
  box-shadow: 0 28px 70px rgba(255, 118, 111, .12);
}
.price-card.featured:hover{
  transform: scale(1.02) translateY(-6px);
}
.price-card.featured::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,210,138,.5), rgba(255,118,111,.2), rgba(167,139,250,.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .9;
}
.price-card .badge{
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--grad-warm);
  color: #0a0d1c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.price-card h3{
  margin: 0;
  font-size: 22px;
  letter-spacing: -.02em;
  font-weight: 800;
}
.price{
  margin: 14px 0 6px;
  font-size: 52px;
  letter-spacing: -.05em;
  font-weight: 900;
  line-height: 1;
}
.price small{
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0;
}
.price-card > p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.price-card ul{
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
.price-card li{
  position: relative;
  padding: 10px 0 10px 30px;
  color: var(--muted);
  font-size: 14.5px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  line-height: 1.45;
}
.price-card li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M2.5 6.3L4.8 8.5L9.5 3.5' stroke='%230a0d1c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 11px 11px no-repeat,
    linear-gradient(135deg, #6ff4d2, #7dd3fc);
}
.info-tip{
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 210, 138, .15);
  color: var(--sand);
  font-size: 11px;
  font-weight: 900;
  cursor: help;
  margin-left: 6px;
  position: relative;
  outline: none;
}
.info-tip::after{
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: max-content;
  max-width: 220px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(8, 11, 24, .95);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
}
.info-tip:hover::after,
.info-tip:focus::after{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.plan-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.plan-actions .btn{
  flex: 1;
  min-width: 0;
  padding: 12px 18px;
  font-size: 14px;
}
.plan-conditions-note{
  margin: 20px 0 0 !important;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-style: italic;
  color: var(--muted-2) !important;
  font-size: 12px;
  line-height: 1.45;
}
.plan-conditions-note a{
  color: var(--sand) !important;
  font-weight: 700;
  text-decoration: none;
}
.plan-conditions-note a:hover{
  text-decoration: underline;
}

/* ----- 12. PROCESO ------------------------------------------------------- */
.process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.process-step{
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--card-bg-2), var(--card-bg));
  border-radius: var(--r-lg);
  padding: 28px 24px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .35s var(--ease), border-color .35s ease;
  overflow: hidden;
}
.process-step::before{
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--grad-full);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.process-step:hover{
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .2);
}
.process-step:hover::before{ transform: scaleX(1); }
.process-step b{
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--sand);
  margin-bottom: 18px;
}
.process-step h3{
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -.02em;
  font-weight: 800;
}
.process-step p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ----- 12B. RESEÑAS ------------------------------------------------------ */
.reviews-summary{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews-stars{
  display: inline-flex;
  gap: 2px;
}
.reviews-stars svg{
  width: 20px;
  height: 20px;
  fill: #ffd28a;
  filter: drop-shadow(0 0 8px rgba(255, 210, 138, .4));
}
.reviews-summary strong{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--text);
}
.reviews-summary > span{
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.reviews-carousel{
  position: relative;
  margin-bottom: 24px;
}
.reviews-track{
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 20px;
  margin: 0 -4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar{ display: none; }
.reviews-track .review-card{
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  min-width: 0;
}
.reviews-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(10, 14, 28, .85);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .2s var(--ease), background .2s ease, border-color .2s ease, opacity .2s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .3);
}
.reviews-nav:hover{
  background: rgba(255, 210, 138, .15);
  border-color: rgba(255, 210, 138, .5);
  transform: translateY(-50%) scale(1.08);
}
.reviews-nav:disabled{
  opacity: .35;
  cursor: not-allowed;
}
.reviews-nav-prev{ left: -22px; }
.reviews-nav-next{ right: -22px; }

.reviews-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.reviews-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, width .25s ease;
}
.reviews-dot:hover{ background: rgba(255, 255, 255, .35); }
.reviews-dot.is-active{
  width: 24px;
  border-radius: 999px;
  background: var(--grad-warm);
}

.review-card{
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--card-bg-2), var(--card-bg));
  border-radius: var(--r-lg);
  padding: 26px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  isolation: isolate;
}
.review-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 210, 138, .1), transparent 40%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 0;
}
.review-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255, 210, 138, .3);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .28);
}
.review-card:hover::before{ opacity: 1; }
.review-card > *{ position: relative; z-index: 1; }

.review-header{
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0a0d1c;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}
.review-meta{
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.review-meta strong{
  font-size: 14.5px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.01em;
}
.review-meta span{
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
}
.review-google{
  flex-shrink: 0;
  opacity: .9;
}
.review-stars{
  display: inline-flex;
  gap: 2px;
}
.review-stars svg{
  width: 16px;
  height: 16px;
  fill: #ffd28a;
}
.review-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.reviews-cta{
  text-align: center;
}
.reviews-cta .btn{
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1100px){
  .reviews-track .review-card{ flex-basis: calc((100% - 18px) / 2); }
  .reviews-nav-prev{ left: -10px; }
  .reviews-nav-next{ right: -10px; }
}
@media (max-width: 680px){
  .reviews-track .review-card{ flex-basis: 86%; }
  .reviews-nav{ display: none; }
}

/* ----- 13. CONTACTO ------------------------------------------------------ */
.contact-section{
  scroll-margin-top: 110px;
}
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info h2{ text-align: left; }
.contact-info{ padding-top: 8px; }
.contact-info > p{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.contact-perks{
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.contact-perk{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}
.contact-perk-dot{
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M2.5 6.3L4.8 8.5L9.5 3.5' stroke='%230a0d1c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 13px 13px no-repeat,
    linear-gradient(135deg, var(--mint), var(--blue));
}
.contact-form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--card-bg-2), var(--card-bg));
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
}
.contact-form label{
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -.01em;
}
.contact-form label span{
  color: var(--muted-2);
  font-weight: 600;
}
.contact-form label .label-text{
  display: block;
  color: var(--muted);
  font-weight: 700;
}
.contact-form label .label-text .optional{
  font-weight: 500;
  font-size: 12px;
  margin-left: 4px;
  color: var(--muted-2);
}
.contact-form .field-name{ grid-column: 1 / -1; }
.contact-form .field-email{ grid-column: 1 / 2; }
.contact-form .field-phone{ grid-column: 2 / 3; }
.contact-form label:not(.field-email):not(.field-phone):not(.field-name):not(.privacy-check){
  grid-column: 1 / -1;
}
.contact-form input,
.contact-form select{
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .28);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-form select{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.6) 50%),
    linear-gradient(135deg, rgba(255,255,255,.6) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.contact-form input::placeholder{ color: var(--muted-2); }
.contact-form input:hover,
.contact-form select:hover{
  border-color: rgba(255, 255, 255, .22);
}
.contact-form input:focus,
.contact-form select:focus{
  border-color: rgba(125, 211, 252, .6);
  background: rgba(10, 14, 28, .5);
  box-shadow: 0 0 0 4px rgba(125, 211, 252, .12);
}
.privacy-check{
  grid-column: 1 / -1;
  display: grid !important;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--muted-2) !important;
  line-height: 1.5;
}
.privacy-check input{
  appearance: none;
  width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  margin: 1px 0 0 !important;
  padding: 0 !important;
  border-radius: 6px !important;
  border: 1px solid rgba(255, 255, 255, .25) !important;
  background: rgba(255, 255, 255, .04) !important;
  display: grid !important;
  place-items: center;
  cursor: pointer;
}
.privacy-check input:checked{
  background: var(--grad-cool) !important;
  border-color: transparent !important;
}
.privacy-check input:checked::after{
  content: "✓";
  color: #0a0d1c;
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
}
.privacy-check a{
  color: var(--sand) !important;
  font-weight: 800;
}
.privacy-check a:hover{ text-decoration: underline; }
.contact-form button{
  grid-column: 1 / -1;
  width: 100%;
  min-height: 56px;
}
.contact-form-note{
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted-2);
  font-size: 12px;
  margin: -4px 0 0;
}
.hp-field{
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ----- 13B. FAQ ---------------------------------------------------------- */
.faq-list{
  display: grid;
  gap: 14px;
}
.faq-item{
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--card-bg-2), var(--card-bg));
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color .3s ease, background .3s ease, transform .3s var(--ease), box-shadow .35s ease;
  overflow: hidden;
  isolation: isolate;
}
/* Línea decorativa a la izquierda que se ilumina al abrirse */
.faq-item::before{
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad-full);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .45s var(--ease);
  z-index: 1;
}
.faq-item:hover{
  border-color: rgba(255, 255, 255, .22);
}
.faq-item[open]{
  border-color: rgba(255, 210, 138, .35);
  background:
    radial-gradient(circle at 0% 0%, rgba(125, 211, 252, .1), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(255, 210, 138, .1), transparent 40%),
    linear-gradient(145deg, var(--card-bg-2), var(--card-bg));
  box-shadow:
    0 18px 50px rgba(0, 0, 0, .28),
    0 0 0 1px rgba(255, 210, 138, .15);
}
.faq-item[open]::before{ transform: scaleY(1); }

.faq-item summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.01em;
  transition: color .25s ease;
  user-select: none;
}
/* Ocultar marcador nativo completamente */
.faq-item summary::-webkit-details-marker{
  display: none !important;
}
.faq-item summary::marker{
  content: "" !important;
  display: none !important;
}
.faq-item summary > span:first-child{
  flex: 1;
  min-width: 0;
  line-height: 1.4;
}
.faq-item summary:hover > span:first-child{
  background: var(--grad-full);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradientFlow 6s ease-in-out infinite;
}
.faq-item[open] summary > span:first-child{
  background: var(--grad-full);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradientFlow 8s ease-in-out infinite;
}

/* Icono + que rota a × con gradiente */
.faq-icon{
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  display: grid;
  place-items: center;
  position: relative;
  transition: transform .4s var(--ease), background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.faq-icon::before,
.faq-icon::after{
  content: "";
  position: absolute;
  background: var(--text);
  border-radius: 2px;
  transition: transform .4s var(--ease), background .35s ease;
}
.faq-icon::before{
  width: 14px;
  height: 2px;
}
.faq-icon::after{
  width: 2px;
  height: 14px;
}
.faq-item summary:hover .faq-icon{
  border-color: rgba(255, 210, 138, .4);
  background: rgba(255, 210, 138, .08);
}
.faq-item[open] .faq-icon{
  background: var(--grad-warm);
  border-color: transparent;
  transform: rotate(180deg);
  box-shadow: 0 8px 22px rgba(255, 118, 111, .35);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after{
  background: #0a0d1c;
}
.faq-item[open] .faq-icon::after{
  transform: scaleY(0);
}

/* Cuerpo de la respuesta — JUSTIFICADO y con buen ritmo */
.faq-body{
  padding: 6px 26px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  animation: faqOpen .5s var(--ease);
  transform-origin: top center;
  position: relative;
}
.faq-body::before{
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--grad-full);
  background-size: 200% 100%;
  border-radius: 2px;
  margin-bottom: 16px;
  animation: gradientFlow 8s ease-in-out infinite;
}
.faq-item:not([open]) .faq-body{
  display: none;
}
.faq-body p{
  margin: 0 0 14px;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.faq-body p:last-child{ margin-bottom: 0; }
.faq-body ul{
  margin: 10px 0 14px;
  padding: 0;
  list-style: none;
  text-align: left;
}
.faq-body ul li{
  padding: 10px 0 10px 26px;
  position: relative;
  line-height: 1.55;
  text-align: left;
}
.faq-body ul li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M2.5 6.3L4.8 8.5L9.5 3.5' stroke='%230a0d1c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 8px 8px no-repeat,
    linear-gradient(135deg, var(--mint), var(--blue));
}
.faq-body strong{
  color: var(--text);
  font-weight: 700;
  background: linear-gradient(120deg, rgba(255, 210, 138, .18), rgba(255, 118, 111, .08));
  padding: 1px 4px;
  border-radius: 4px;
}
.faq-body em{
  color: var(--sand);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -.01em;
}
.faq-body a{
  color: var(--sand);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 210, 138, .4);
  text-underline-offset: 3px;
  transition: text-decoration-color .25s ease, color .25s ease;
}
.faq-body a:hover{
  color: var(--coral);
  text-decoration-color: var(--coral);
}

@keyframes faqOpen{
  0%{
    opacity: 0;
    transform: translateY(-10px) scaleY(.94);
  }
  100%{
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@media (max-width: 680px){
  .faq-item summary{ padding: 18px 20px; gap: 14px; font-size: 15px; }
  .faq-body{
    padding: 4px 20px 20px;
    font-size: 14.5px;
    text-align: left;  /* En móviles el justify queda feo, mejor left */
  }
  .faq-body p{ text-align: left; }
  .faq-icon{ width: 32px; height: 32px; }
  .faq-icon::before{ width: 12px; }
  .faq-icon::after{ height: 12px; }
}

/* ----- 14. FOOTER -------------------------------------------------------- */
.footer{
  border-top: 1px solid var(--line-2);
  margin-top: 60px;
  padding: 50px 0 70px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand img{
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 380px;
}
.footer-links{
  display: flex;
  gap: 16px 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.footer-links a,
.footer-links button{
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  transition: color .2s ease;
}
.footer-links a:hover,
.footer-links button:hover{
  color: var(--sand);
}

/* ----- 15. FLOATING CONTACT BUTTON --------------------------------------- */
.float-contact{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--grad-warm);
  color: #0a0d1c;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 18px 40px rgba(255, 118, 111, .35);
  transition: transform .25s var(--ease), box-shadow .35s ease;
}
.float-contact:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(255, 118, 111, .45);
}

/* Floating WhatsApp */
.float-whatsapp{
  position: fixed;
  right: 178px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px 13px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .38);
  transition: transform .25s var(--ease), box-shadow .35s ease;
  animation: waPulse 2.6s ease-out infinite;
}
.float-whatsapp svg{
  flex-shrink: 0;
}
.float-whatsapp:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(37, 211, 102, .5);
  animation-play-state: paused;
}
@keyframes waPulse{
  0%{ box-shadow: 0 18px 40px rgba(37, 211, 102, .38), 0 0 0 0 rgba(37, 211, 102, .55); }
  70%{ box-shadow: 0 18px 40px rgba(37, 211, 102, .38), 0 0 0 16px rgba(37, 211, 102, 0); }
  100%{ box-shadow: 0 18px 40px rgba(37, 211, 102, .38), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ----- 16. COOKIES ------------------------------------------------------- */
.cookie-banner{
  position: fixed;
  left: 20px; right: 20px;
  bottom: 20px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10, 14, 28, .92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: var(--shadow-card);
}
.cookie-banner.is-visible{ display: flex; }
.cookie-banner h3{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
}
.cookie-banner p{
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  max-width: 560px;
}
.cookie-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions button{
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}
.cookie-actions .accept{
  background: var(--grad-warm);
  color: #0a0d1c;
  border: 0;
}
.cookie-preferences{
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  flex-basis: 100%;
}
.cookie-preferences.is-open{ display: block; }
.cookie-preferences label{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--muted);
  font-size: 14px;
}
.cookie-floating-button{
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 40;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 14, 28, .85);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.cookie-floating-button.is-visible{
  opacity: 1;
  pointer-events: auto;
}
.cookie-footer-link{
  display: none;
}

/* ----- 17. REVEAL (scroll-triggered) ------------------------------------- */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.delay-1{ transition-delay: .08s; }
.delay-2{ transition-delay: .16s; }
.delay-3{ transition-delay: .24s; }
.delay-4{ transition-delay: .32s; }

/* ----- 18. RESPONSIVE ---------------------------------------------------- */
@media (max-width: 1100px){
  .bento{
    grid-template-columns: 1fr 1fr;
  }
  .bento-card.wide{ grid-column: 1 / -1; grid-row: span 1; }
  .business-grid{ grid-template-columns: 1fr; }
  .business-grid h2{ text-align: center; }
  .business-grid .chips{ justify-content: center; }
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-info h2{ text-align: center; }
  .contact-info{ text-align: center; }
  .contact-info > p{ text-align: center; }
  .contact-perks{ max-width: 420px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 900px){
  .nav a:not(.nav-cta){ display: none; }
  .hero-float--1,
  .hero-float--3{ display: none; }
  .hero-float--2{ top: 8%; right: 5%; }
  .hero-float--4{ bottom: 12%; right: 5%; }
  .price-grid{ grid-template-columns: 1fr; }
  .price-card.featured{ transform: none; }
  .price-card.featured:hover{ transform: translateY(-6px); }
  .process-grid{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-links{ justify-content: flex-start; }
}
@media (max-width: 680px){
  .site-header{
    padding: 8px 8px 8px 14px;
    width: calc(100% - 20px);
  }
  .brand-logo{ height: 38px; max-width: 150px; }
  .container,
  .container-narrow{ width: calc(100% - 24px); }
  .hero{ padding-top: 80px; }
  .hero-floats{ display: none; }
  .hero-mockup{ display: none; }
  .hero-title{ font-size: clamp(40px, 11vw, 56px); }
  .hero-content{ width: calc(100% - 24px); }
  .bento{ grid-template-columns: 1fr; }
  .bento-card.wide{ grid-column: 1 / -1; }
  .process-grid{ grid-template-columns: 1fr; }
  .contact-form{ grid-template-columns: 1fr; padding: 22px; }
  .contact-form .field-email,
  .contact-form .field-phone,
  .contact-form .field-name{ grid-column: 1 / -1; }
  .cookie-banner{
    flex-direction: column;
    align-items: flex-start;
    left: 12px; right: 12px; bottom: 12px;
    padding: 18px;
  }
  .cookie-actions{ width: 100%; }
  .cookie-actions button{ flex: 1; }
  .float-contact{ right: 14px; bottom: 14px; padding: 12px 18px; font-size: 13px; }
  .float-whatsapp{
    right: auto;
    left: 14px;
    bottom: 14px;
    padding: 12px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    justify-content: center;
  }
  .float-whatsapp span{ display: none; }
  .float-whatsapp svg{ width: 24px; height: 24px; }
}
@media (max-width: 420px){
  .hero-actions{ width: 100%; flex-direction: column; }
  .hero-actions .btn{ width: 100%; }
}

/* ----- 19. REDUCED MOTION ------------------------------------------------ */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-title .accent,
  .section h2 .accent{
    -webkit-text-fill-color: var(--sand);
    color: var(--sand);
    background: none;
  }
  .reveal{ opacity: 1; transform: none; }
}
