/* ====================================================
   MEDRANO WEB — Hoja de estilos compartida
   Versión: 20260615
   Autor: Diego Medrano · medranoweb.com.ar
   ==================================================== */


/* ====================================================
   1. RESET & CUSTOM PROPERTIES
   ==================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #0B0817;
  --bg-2:      #100D20;
  --bg-card:   #181330;
  --ink:       #EDE8FF;
  --ink-soft:  #B0A6D8;
  --ink-mute:  #6A5FA0;
  --purple:    #7D5DB8;
  --purple-2:  #9B7FD4;
  --purple-3:  #5C3E99;
  --yellow:    #E8E22A;
  --yellow-2:  #F5EF60;
  --line:      rgba(125, 93, 184, 0.18);
  --radius:    12px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}


/* ====================================================
   2. BASE ELEMENTS
   ==================================================== */

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'EB Garamond', serif;  /* o 'Cormorant Garamond' */
  line-height: 1.05;
  letter-spacing: -0.025em;
}

a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }


/* ====================================================
   3. SCROLLBAR
   ==================================================== */

::-webkit-scrollbar              { width: 5px; }
::-webkit-scrollbar-track        { background: var(--bg); }
::-webkit-scrollbar-thumb        { background: var(--purple-3); border-radius: 3px; }


/* ====================================================
   4. ANIMACIONES DE ENTRADA
   ==================================================== */

/* --- Hero: animación CSS pura (no depende de JS ni CDN) --- */
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 0.8s var(--ease) forwards;
}
@keyframes heroIn {
  to { opacity: 1; transform: none; }
}

/* --- Reveal: elementos below-fold, activados por IntersectionObserver --- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Seguridad: elementos con data-split nunca deben quedar invisibles */
.reveal[data-split] { opacity: 1; transform: none; }

/* Delays escalonados para grupos de elementos */
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* Animación de parpadeo (eyebrow-dot) */
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.65); }
}


/* ====================================================
   5. CURSOR PERSONALIZADO (solo desktop)
   ==================================================== */

.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor.is-ready { opacity: 1; }

.cursor-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translate(-50%, -50%);
  position: absolute;
}

.cursor-ring {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 226, 42, 0.7);
  position: absolute;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease);
}

/* El anillo crece sobre elementos interactivos */
.cursor.is-hov .cursor-ring { width: 58px; height: 58px; }

/* Ocultar en dispositivos táctiles */
@media (hover: none) { .cursor { display: none; } }


/* ====================================================
   6. NAVEGACIÓN
   ==================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 8, 23, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

/* Estado sólido al hacer scroll */
.nav.solid {
  background: rgba(11, 8, 23, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--line);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo-icon {
  width: 80px; height: 48px;
  flex-shrink: 0;
  overflow: visible;
}
.logo-img {
  height: 64px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.logo-text {
  background: linear-gradient(135deg, #C49028 0%, #F0C040 35%, #E8A820 65%, #B8861A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-gold { /* hereda el gradiente de .logo-text */ }
.logo-yellow { color: var(--yellow); }

/* Links de navegación — centrado absoluto solo en desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
@media (min-width: 768px) {
  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.nav-links a {
  font-size: 0.875rem;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--yellow);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover              { color: var(--ink); }
.nav-links a:hover::after       { width: 100%; }

/* Botón WhatsApp en nav */
.nav-wa {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  background: var(--yellow);
  color: #0B0817;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}
.nav-wa:hover { background: var(--yellow-2); transform: translateY(-1px); }

/* Hamburger (solo mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav mobile */
@media (max-width: 767px) {
  .nav-links, .nav-wa { display: none; }
  .hamburger { display: flex; }

  /* El nav mismo se expande a pantalla completa — evita el problema
     de backdrop-filter creando un containing block para fixed */
  .nav.m-open {
    bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 5rem;
    overflow-y: auto;
  }

  /* El hamburger/X queda en la esquina superior derecha */
  .nav.m-open .hamburger {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
  }

  .nav.m-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
    position: static;
    transform: none;
    width: 100%;
    padding: 0;
    margin-top: 2.5rem;
  }
  .nav.m-open .nav-links a { font-size: 1.4rem; }
}


/* ====================================================
   7. BOTONES GLOBALES
   ==================================================== */

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  background: var(--yellow);
  color: #0B0817;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-wa:hover {
  background: var(--yellow-2);
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(232, 226, 42, 0.28);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9rem 2rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-outline:hover {
  color: var(--ink);
  border-color: rgba(125, 93, 184, 0.45);
  transform: translateY(-3px);
}


/* ====================================================
   8. HERO — BASE (compartido)
   ==================================================== */

.hero {
  position: relative;
  min-height: 72vh;
  min-height: 72svh;
  display: flex;
  align-items: center;
  padding: 9rem 2rem 5rem;
  overflow: hidden;
}

/* Variante home: pantalla completa y centrado */
.hero--home {
  min-height: 100vh;
  min-height: 100svh;
  justify-content: center;
  text-align: center;
}

/* Fondo degradado — home (reactivo al mouse vía --mx/--my) */
.hero-grad--home {
  position: absolute;
  inset: 0; z-index: 0;
  background:
    radial-gradient(circle 700px at var(--mx, 50%) var(--my, 42%),
      rgba(125, 93, 184, 0.32) 0%, transparent 62%),
    radial-gradient(circle 500px at calc(var(--mx, 50%) + 18%) calc(var(--my, 42%) + 10%),
      rgba(60, 38, 140, 0.22) 0%, transparent 56%),
    radial-gradient(ellipse 1200px 600px at 15% 90%,
      rgba(92, 62, 153, 0.12) 0%, transparent 70%),
    var(--bg);
}

/* ── Aurora effect ── */
.aurora {
  position: absolute;
  inset: 0; z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform;
}
.aurora-blob--violet {
  width: 600px; height: 600px;
  top: -80px; left: -80px;
  background: radial-gradient(circle, rgba(125, 93, 184, 0.7) 0%, transparent 70%);
  animation: aurora-drift-a 18s ease-in-out infinite;
}
.aurora-blob--yellow {
  width: 440px; height: 440px;
  bottom: -60px; right: -60px;
  background: radial-gradient(circle, rgba(255, 213, 79, 0.65) 0%, transparent 70%);
  animation: aurora-drift-b 22s ease-in-out infinite;
}
.aurora-blob--blue {
  width: 480px; height: 480px;
  top: 40%; right: 5%;
  background: radial-gradient(circle, rgba(80, 40, 180, 0.6) 0%, transparent 70%);
  animation: aurora-drift-c 26s ease-in-out infinite;
}

@keyframes aurora-drift-a {
  0%   { transform: translate(0px,    0px); }
  25%  { transform: translate(200px,  80px); }
  50%  { transform: translate(160px, 220px); }
  75%  { transform: translate(40px,  180px); }
  100% { transform: translate(0px,    0px); }
}
@keyframes aurora-drift-b {
  0%   { transform: translate(0px,    0px); }
  25%  { transform: translate(-180px, -60px); }
  50%  { transform: translate(-140px,-200px); }
  75%  { transform: translate(-30px, -160px); }
  100% { transform: translate(0px,    0px); }
}
@keyframes aurora-drift-c {
  0%   { transform: translate(0px,   0px); }
  25%  { transform: translate(-100px, 140px); }
  50%  { transform: translate(-220px,  60px); }
  75%  { transform: translate(-120px, -80px); }
  100% { transform: translate(0px,   0px); }
}

/* Fondo degradado — páginas de servicio (estático) */
.hero-grad--svc {
  position: absolute;
  inset: 0; z-index: 0;
  background:
    radial-gradient(circle 700px at 30% 50%,
      rgba(125, 93, 184, 0.28) 0%, transparent 65%),
    radial-gradient(ellipse 900px 500px at 80% 80%,
      rgba(92, 62, 153, 0.12) 0%, transparent 70%),
    var(--bg);
}

/* Grilla decorativa — home (máscara centrada) */
.hero-grid--home {
  position: absolute;
  inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(125, 93, 184, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 93, 184, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 15%, transparent 75%);
}

/* Grilla decorativa — páginas de servicio (máscara izquierda) */
.hero-grid--svc {
  position: absolute;
  inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(125, 93, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 93, 184, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 80% at 25% 50%, black 10%, transparent 75%);
}

/* Contenedor del contenido del hero */
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 640px;
}

/* Layout dos columnas — páginas de servicio */
.hero-inner--svc-layout {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-svc-text {
  padding-left: 1.5rem;
}
.hero-svc-img {
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--line);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}
.hero-svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .hero-inner--svc-layout {
    grid-template-columns: 1fr;
  }
  .hero-svc-text { padding-left: 0; }
  .hero-svc-img  { display: none; }
}

/* Variante home: más ancho y centrado */
.hero-inner--wide {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}


/* ====================================================
   9. HERO — COMPONENTES
   ==================================================== */

/* Etiqueta eyebrow (badge pequeño encima del título) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-2);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(155, 127, 212, 0.22);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: blink 2s ease-in-out infinite;
}

/* Título principal del hero */
.hero-h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
/* Versión home: más grande */
.hero--home .hero-h1 {
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero-h1 .em { color: var(--yellow); }

/* Bajada del hero */
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.hero--home .hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.75rem;
}

/* Fila de botones */
.btn-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero--home .btn-row { justify-content: center; }

/* Estadísticas del hero (solo home) */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 4.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.75rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}
.stat-sep { width: 1px; height: 2rem; background: var(--line); }

@media (max-width: 539px) {
  .hero-stats { gap: 1.5rem; }
  .stat-sep   { display: none; }
}


/* ====================================================
   10. MARQUEE STRIP (solo home)
   ==================================================== */

.marquee-strip {
  background: var(--yellow);
  overflow: hidden;
  padding: 0.85rem 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-marquee 22s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #0B0817;
  padding: 0 2.5rem;
}
.marquee-item::after { content: '✦'; font-size: 0.6rem; opacity: 0.45; }

@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ====================================================
   11. BASE DE SECCIÓN
   ==================================================== */

.section       { padding: 6rem 2rem; }
.section.alt   { background: var(--bg-2); }
/* Las páginas de servicio usan padding algo menor */
.section--svc  { padding: 5.5rem 2rem; }

.container { max-width: 1100px; margin: 0 auto; }

/* Kicker (etiqueta pequeña sobre el título de sección) */
.kicker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-2);
  margin-bottom: 0.75rem;
}
.kicker::before {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: var(--purple-2);
  flex-shrink: 0;
}

/* Título de sección */
.sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
/* Home usa tamaño ligeramente mayor */
.sec-title--lg { font-size: clamp(2rem, 4vw, 3rem); }
.sec-title .em { color: var(--yellow); }

/* Subtítulo de sección */
.sec-sub {
  font-size: 1.2rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.75;
  max-width: 100%;
}


/* ====================================================
   12. SECCIÓN: PROPUESTA DE VALOR (home)
   ==================================================== */

.props-head { max-width: 100%; margin-bottom: 3.5rem; text-align: left; }

.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--line);
  gap: 1.5px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  overflow: hidden;
}

.prop {
  background: var(--bg-2);
  padding: 0;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.prop:hover { background: var(--bg-card); }

.prop-img-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.25rem 0;
}
.prop-img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  display: block;
  border-radius: calc(var(--radius) - 4px);
}

.prop-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 1.75rem;
}

.prop-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
.prop-title .em { color: var(--yellow); }

.prop-text {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 300;
}

@media (max-width: 767px) { .props-grid { grid-template-columns: 1fr; } }


/* ====================================================
   13. SECCIÓN: SERVICIOS (home)
   ==================================================== */

.svc-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* Las cards de servicio son enlaces <a> */
.svc-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s var(--ease);
}
/* Línea degradada en la parte superior al hacer hover */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.svc-card:hover                  { border-color: rgba(125, 93, 184, 0.4); transform: translateY(-5px); }
.svc-card:hover::before          { transform: scaleX(1); }

.svc-n {
  font-family: 'EB Garamond', serif;
  font-size: 1.68rem;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.svc-ico      { font-size: 2rem; margin-bottom: 1rem; line-height: 1; }

/* Imagen de servicio en cards */
.svc-img-wrap {
  flex-shrink: 0;
  width: 38%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}
.svc-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.45s var(--ease);
}
.svc-card:hover .svc-img {
  transform: scale(1.03);
}
.svc-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}
.svc-title    { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 0.55rem; letter-spacing: -0.01em; }
.svc-text     { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.68; font-weight: 300; }
.svc-badge    {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-2);
  padding: 0.28rem 0.75rem;
  border: 1px solid rgba(155, 127, 212, 0.22);
  border-radius: 100px;
}

@media (max-width: 599px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { flex-direction: column; }
  .svc-img-wrap { width: 60%; }
}


/* ====================================================
   14. SECCIÓN: SOBRE DIEGO (home)
   ==================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-vis { position: relative; }

.about-img-box {
  aspect-ratio: 4/5;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img-emoji { font-size: 5rem; opacity: 0.15; }

.about-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-img-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 70%, rgba(125, 93, 184, 0.2), transparent 70%);
}

.about-card-float {
  position: absolute;
  bottom: -1.25rem;
  left: 1.5rem; right: 1.5rem;
  background: rgba(11, 8, 23, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.about-name { font-family: 'EB Garamond', serif;; font-weight: 600; font-size: 1.2rem; }
.about-role { font-size: 0.72rem; color: var(--ink-mute); margin-top: 0.1rem; }

.about-badge {
  position: absolute;
  top: -1rem; right: -0.75rem;
  background: var(--yellow);
  color: #0B0817;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(232, 226, 42, 0.3);
}

.about-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about-lead strong { color: var(--ink); font-weight: 500; }

.credentials { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.cred {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.cred-ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(125, 93, 184, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-vis  { margin-bottom: 1.5rem; }
}


/* ====================================================
   15. SECCIÓN: PORTFOLIO (home)
   ==================================================== */

.port-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.port-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.port-card:hover { transform: translateY(-6px); border-color: rgba(125, 93, 184, 0.4); }

.port-img {
  aspect-ratio: 16/10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Mockup de browser dentro de las cards del portfolio */
.port-mockup {
  width: 68%;
  aspect-ratio: 16/10;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid rgba(125, 93, 184, 0.28);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.mock-bar {
  height: 13px;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  padding: 0 7px;
  gap: 4px;
  flex-shrink: 0;
}
.mock-dot          { width: 4px; height: 4px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #ff5f56; }
.mock-dot:nth-child(2) { background: #ffbd2e; }
.mock-dot:nth-child(3) { background: #27c93f; }
.mock-body         { flex: 1; padding: 5px; display: flex; flex-direction: column; gap: 3px; }
.mock-hero         { border-radius: 3px; height: 36%; opacity: 0.65; }
.mock-ln           { height: 4px; border-radius: 3px; background: var(--line); }
.mock-ln:nth-child(2) { width: 80%; }
.mock-ln:nth-child(3) { width: 55%; }
.mock-ln:nth-child(4) { width: 38%; }

.port-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(125, 93, 184, 0.09), rgba(92, 62, 153, 0.12));
}

.port-info  { padding: 1.25rem; }
.port-tag   { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple-2); margin-bottom: 0.45rem; }
.port-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 0.35rem; }
.port-desc  { font-size: 0.8rem; color: var(--ink-mute); line-height: 1.6; }

@media (max-width: 767px) { .port-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1023px) { .port-grid { grid-template-columns: repeat(2, 1fr); } }


/* ====================================================
   16. SECCIÓN: TESTIMONIOS (home)
   ==================================================== */

.testi-head { margin-bottom: 2.5rem; }

.testi-scroll {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
}
.testi-scroll::-webkit-scrollbar { display: none; }

.testi-track {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 0.5rem;
}

.testi-card {
  flex: 0 0 360px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s;
}
.testi-card:hover { border-color: rgba(125, 93, 184, 0.35); }

.testi-q    { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; color: var(--yellow); line-height: 1; margin-bottom: 0.75rem; }
.testi-text { font-size: 0.95rem; color: var(--ink-soft); font-weight: 300; line-height: 1.78; margin-bottom: 1.5rem; }

.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-3), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-name  { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.9rem; }
.testi-role  { font-size: 0.72rem; color: var(--ink-mute); }
.testi-stars { color: var(--yellow); font-size: 0.75rem; margin-top: 0.15rem; }


/* ====================================================
   17. CTA FINAL
   ==================================================== */

.cta-section {
  padding: 9rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Páginas de servicio usan CTA más compacto */
.cta-section--svc { padding: 7rem 2rem; }

.cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(125, 93, 184, 0.18), transparent 70%),
    var(--bg);
}

.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-inner--narrow { max-width: 620px; }

.cta-h2 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.cta-section--svc .cta-h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); }
.cta-h2 .em { color: var(--yellow); }

.cta-p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.cta-section--svc .cta-p { font-size: 1.05rem; margin-bottom: 2.25rem; }

.cta-footnote      { margin-top: 1.25rem; font-size: 0.8rem; color: var(--ink-mute); }
.cta-footnote a    { color: var(--purple-2); }
.cta-footnote a:hover { color: var(--ink); }


/* ====================================================
   18. FOOTER
   ==================================================== */

footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 2.25rem 2rem;
}

.foot-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.foot-copy       { font-size: 0.8rem; color: var(--ink-mute); }
.foot-copy a     { color: var(--purple-2); }
.foot-copy a:hover { color: var(--ink); }

.foot-links      { display: flex; gap: 1.5rem; list-style: none; }
.foot-links a    { font-size: 0.8rem; color: var(--ink-mute); transition: color 0.2s; }
.foot-links a:hover { color: var(--ink); }


/* ====================================================
   19. BOTÓN FLOTANTE DE WHATSAPP
   ==================================================== */

.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 300;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, filter 0.2s;
}
.wa-float:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 16px rgba(37, 211, 102, 0.55));
}
.wa-float img { width: 58px; height: auto; display: block; }

/* --------------------------------------------------
   BACK TO TOP
   -------------------------------------------------- */
.back-top {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 190;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s, background 0.25s, color 0.25s;
}
.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.back-top:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.32);
}
.back-top svg { width: 18px; height: 18px; display: block; }


/* ====================================================
   20. PÁGINAS DE SERVICIO — BREADCRUMB
   ==================================================== */

.breadcrumb {
  font-size: 0.8rem;
  color: var(--ink-mute);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumb a          { color: var(--purple-2); transition: color 0.2s; }
.breadcrumb a:hover    { color: var(--ink); }
.breadcrumb-sep        { opacity: 0.4; }


/* ====================================================
   21. PÁGINAS DE SERVICIO — PRECIO (badge)
   ==================================================== */

.price-badge {
  display: inline-flex;
  flex-direction: column;
  background: rgba(125, 93, 184, 0.12);
  border: 1px solid rgba(125, 93, 184, 0.25);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  margin-top: 2.5rem;
}
.price-from { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 0.25rem; }
.price-main { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--yellow); }
.price-sub  { font-size: 0.8rem; color: var(--ink-mute); margin-top: 0.2rem; }


/* ====================================================
   22. PÁGINAS DE SERVICIO — GRID DE FEATURES
   ==================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.feat-card:hover           { border-color: rgba(125, 93, 184, 0.4); transform: translateY(-4px); }
.feat-card:hover::before   { transform: scaleX(1); }

/* Ícono de la feat-card (puede ser emoji o SVG) */
.feat-ico  { font-size: 1.75rem; margin-bottom: 1rem; }
.feat-icon {
  width: 44px; height: 44px;
  background: rgba(125, 93, 184, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feat-icon svg { width: 22px; height: 22px; stroke: var(--purple-2); fill: none; stroke-width: 1.8; }

.feat-title { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.feat-text  { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.68; font-weight: 300; }


/* ====================================================
   23. PÁGINAS DE SERVICIO — LISTA DE INCLUYE
   ==================================================== */

/* Grid 2 columnas (institucional, landing, tienda) */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 599px) { .includes-grid { grid-template-columns: 1fr; } }

/* Grid multi-columna auto (seo.html) */
.inc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Ítem individual */
.inc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
/* Checkbox circular con tilde */
.inc-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(232, 226, 42, 0.12);
  border: 1px solid rgba(232, 226, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 1px;
}
/* Variante de inc-item con cuerpo de texto (seo.html) */
.inc-item-body h4  { font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.inc-item-body p   { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.5; }


/* ====================================================
   24. PÁGINAS DE SERVICIO — PASOS DEL PROCESO
   ==================================================== */

/* Versión vertical (institucional, landing, tienda) */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
/* Línea conectora vertical entre pasos */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px; top: 40px; bottom: 0;
  width: 1px;
  background: var(--line);
}

.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(125, 93, 184, 0.15);
  border: 1px solid rgba(125, 93, 184, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--purple-2);
  flex-shrink: 0;
}

.step-body  { padding-top: 0.5rem; }
.step-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 0.4rem; }
.step-text  { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.65; font-weight: 300; }

/* Pasos en títulos h3 (seo.html — layout grid horizontal) */
.step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.step p  { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.55; }


/* ====================================================
   25. PÁGINAS DE SERVICIO — FAQ ACORDEÓN
   ==================================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  /* Reset para cuando se usa como <button> */
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  text-align: left;
}
.faq-q:hover { color: var(--yellow); }

/* Ícono "+" en formato span (institucional, landing, tienda) */
.faq-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(125, 93, 184, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--purple-2);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(232, 226, 42, 0.12);
  color: var(--yellow);
}

/* Ícono "+" en formato SVG (seo.html) */
.faq-arr { flex-shrink: 0; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-arr { transform: rotate(45deg); }

/* Respuesta colapsable */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 400px; }

.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.72;
  font-weight: 300;
}
/* Párrafo dentro de faq-a cuando no hay faq-a-inner (seo.html) */
.faq-a p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.72;
  font-weight: 300;
}


/* ====================================================
   26. LANDING PAGE — COMPARACIÓN VS
   ==================================================== */

.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.vs-card { border-radius: var(--radius); padding: 2rem; }
.vs-card.bad  { background: rgba(255, 80, 80, 0.06);  border: 1px solid rgba(255, 80, 80, 0.15); }
.vs-card.good { background: rgba(125, 93, 184, 0.10); border: 1px solid rgba(125, 93, 184, 0.25); }

.vs-head { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.vs-card.bad  .vs-head { color: #ff6b6b; }
.vs-card.good .vs-head { color: var(--yellow); }

.vs-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.vs-list li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.vs-list li::before           { font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }
.vs-card.bad  .vs-list li::before { content: '✗'; color: #ff6b6b; }
.vs-card.good .vs-list li::before { content: '✓'; color: var(--yellow); }

@media (max-width: 599px) { .vs-grid { grid-template-columns: 1fr; } }


/* ====================================================
   27. LANDING PAGE — VISUALIZACIÓN DE CONVERSIÓN
   ==================================================== */

.conversion-visual {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.conv-stat      { text-align: center; }
.conv-num       { font-family: 'Space Grotesk', sans-serif; font-size: 3.5rem; font-weight: 700; color: var(--yellow); line-height: 1; }
.conv-label     { font-size: 0.8rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.5rem; }
.conv-bar-label { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 0.5rem; display: flex; justify-content: space-between; }
.conv-bar       { height: 8px; background: rgba(125, 93, 184, 0.15); border-radius: 100px; margin-bottom: 1rem; overflow: hidden; }
.conv-bar-fill  { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--purple), var(--yellow)); transition: width 1.2s var(--ease); width: 0; }
.conv-bar-fill.animated { width: var(--w); }

@media (max-width: 599px) { .conversion-visual { grid-template-columns: 1fr; } }


/* ====================================================
   28. TIENDA — MEDIOS DE PAGO
   ==================================================== */

.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.payment-pill span { font-size: 1rem; }


/* ====================================================
   29. TIENDA — NOTA IMPORTANTE
   ==================================================== */

.nota {
  background: rgba(232, 226, 42, 0.06);
  border: 1px solid rgba(232, 226, 42, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.nota-ico  { font-size: 1.25rem; flex-shrink: 0; }
.nota-text { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; font-weight: 300; }
.nota-text strong { color: var(--yellow); font-weight: 600; }


/* ====================================================
   30. SEO — TARJETA EXCLUSIVO
   ==================================================== */

.exclusive-section {
  background: linear-gradient(135deg, rgba(125, 93, 184, 0.12) 0%, rgba(11, 8, 23, 0) 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 5.5rem 2rem;
}

.exclusive-card {
  background: rgba(232, 226, 42, 0.06);
  border: 1.5px solid rgba(232, 226, 42, 0.2);
  border-radius: 14px;
  padding: 2.5rem;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.exclusive-card h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 0.8rem; color: var(--yellow); }
.exclusive-card p  { color: var(--ink-soft); line-height: 1.65; font-size: 0.95rem; }

.exclusive-icon {
  width: 56px; height: 56px;
  background: rgba(232, 226, 42, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.exclusive-icon svg { width: 26px; height: 26px; stroke: var(--yellow); fill: none; stroke-width: 2; }


/* ====================================================
   31. SEO — RESULTADOS / CONTEXTO REALISTA
   ==================================================== */

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.result-card  { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.result-num   { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--yellow); margin-bottom: 0.3rem; }
.result-label { font-size: 0.82rem; color: var(--ink-soft); }


/* ====================================================
   32. SEO — ALERT BADGE
   ==================================================== */

.alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(232, 226, 42, 0.08);
  border: 1px solid rgba(232, 226, 42, 0.25);
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  font-size: 0.88rem;
  color: var(--yellow-2);
  margin-bottom: 2rem;
}
.alert-badge svg { flex-shrink: 0; }
