/* ===================================================
   STUDIO KIN — Brand Design System
   Colores de marca: #092780 · #cc3e19 · #f2c6a1
   =================================================== */

/* --- TOKENS --- */
:root {
  --bg-base: #08090f;
  --bg-surface: #0c0e18;
  --bg-card: #111421;
  --bg-card-hover: #161929;
  --border: rgba(255, 255, 255, 0.07);
  --border-glow: rgba(204, 62, 25, 0.35);

  /* Brand Colors */
  --brand-blue: #092780;
  --brand-blue-light: #1a3fa0;
  --brand-blue-glow: rgba(9, 39, 128, 0.4);
  --brand-orange: #cc3e19;
  --brand-orange-light: #e05530;
  --brand-orange-glow: rgba(204, 62, 25, 0.3);
  --brand-cream: #f2c6a1;
  --brand-cream-muted: rgba(242, 198, 161, 0.6);

  --gradient-primary: linear-gradient(135deg, #092780 0%, #cc3e19 100%);
  --gradient-text: linear-gradient(135deg, #f2c6a1 0%, #cc3e19 50%, #ffffff 100%);
  --gradient-warm: linear-gradient(135deg, #cc3e19, #f2c6a1);
  --gradient-glow: radial-gradient(ellipse at center, rgba(204, 62, 25, 0.25) 0%, transparent 70%);
  --gradient-bg-hero: radial-gradient(ellipse at 70% 50%, rgba(9, 39, 128, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(204, 62, 25, 0.1) 0%, transparent 50%);

  --text-primary: #f5f0eb;
  --text-secondary: #a09890;
  --text-muted: #6b6058;

  --font-body: 'Inter', -apple-system, sans-serif;
  --font-display: 'Turret Road', 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(204, 62, 25, 0.15);
  --shadow-glow-blue: 0 0 40px rgba(9, 39, 128, 0.25);
  --shadow-btn: 0 4px 20px rgba(204, 62, 25, 0.5);

  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 450ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

/* --- LAYOUT --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 68px 0;
}

/* --- TYPOGRAPHY --- */
.gradient-text {
  background: var(--gradient-text);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 6s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

.section-tag {
  display: inline-block;
  border: 1px solid var(--border-glow);
  background: rgba(204, 62, 25, 0.08);
  color: var(--brand-cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

/* Kinetic word reveal */
.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  filter: blur(6px);
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.title-kinetic.revealed .title-word {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand-orange);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--brand-orange-light);
  box-shadow: 0 8px 32px rgba(204, 62, 25, 0.6);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--brand-cream);
  border: 1.5px solid var(--border-glow);
}

.btn--outline:hover {
  background: rgba(204, 62, 25, 0.1);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--brand-orange);
  color: #fff !important;
  padding: 8px 14px;
  font-size: 0.8rem;
  box-shadow: var(--shadow-btn);
}

.btn--nav:hover {
  transform: translateY(-2px);
  background: var(--brand-orange-light);
  box-shadow: 0 8px 28px rgba(204, 62, 25, 0.55);
}

.btn--lg {
  padding: 15px 32px;
  font-size: 0.95rem;
}

/* ===================================================
   NAVBAR
   =================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
  background: rgba(8, 9, 15, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav.scrolled {
  background: rgba(8, 9, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Nuevo logo PNG tipográfico */
.nav__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Asterisco decorativo giratorio */
.nav__asterisk {
  width: 22px;
  height: 22px;
  opacity: 0.85;
  animation: asteriskSpin 12s linear infinite;
  flex-shrink: 0;
}

@keyframes asteriskSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.logo-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav__links {
  /* Desktop: barra horizontal fixed alineada al nav */
  position: fixed;
  top: 0;
  right: 32px;
  height: 72px; /* altura del nav en desktop */
  display: flex;
  align-items: center;
  gap: 32px;
  z-index: 101; /* encima del nav (z-index: 100) */
}

/* Links del nav en cream claro */
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brand-cream);
  transition: color var(--transition);
  opacity: 0.85;
}

.nav__links a:hover {
  color: #fff;
  opacity: 1;
}

/* Botón CTA naranja original */
.btn--nav {
  background: var(--brand-orange);
  color: #fff !important;
  padding: 8px 14px;
  font-size: 0.8rem;
  box-shadow: var(--shadow-btn);
}

.btn--nav:hover {
  transform: translateY(-2px);
  background: var(--brand-orange-light);
  box-shadow: 0 8px 28px rgba(204, 62, 25, 0.55);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-cream);
  border-radius: 2px;
  transition: var(--transition);
}

/* Oculto por defecto — solo se muestra dentro del menú mobile */
.nav__close {
  display: none;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(9, 39, 128, 0.22) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb--2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(204, 62, 25, 0.18) 0%, transparent 70%);
  bottom: -120px;
  right: -120px;
  animation: orbFloat 15s ease-in-out infinite reverse;
}

.orb--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(242, 198, 161, 0.08) 0%, transparent 70%);
  top: 40%;
  right: 30%;
  animation: orbFloat 9s ease-in-out infinite 3s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(20px, -20px);
  }

  66% {
    transform: translate(-15px, 10px);
  }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Layout anterior .hero__inner reemplazado por hero__center + hero__media-wrap */

/* --- HERO CENTRADO --- */
.hero__center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 24px 56px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.hero__content {
  max-width: 600px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 198, 161, 0.08);
  border: 1px solid rgba(242, 198, 161, 0.2);
  color: var(--brand-cream);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--brand-cream);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brand-cream);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 16px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* --- HERO MEDIA (imagen / video horizontal) --- */
.hero__media-wrap {
  position: relative;
  padding: 0 24px 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.65),
    0 0 80px rgba(9, 39, 128, 0.18),
    0 0 40px rgba(204, 62, 25, 0.1);
}

/* Wrapper interno que recorta el parallax */
.hero__media-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
}

.hero__media-img,
.hero__media video {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  will-change: transform;
}

/* En móvil: aspect-ratio 16/9, video oculto, imagen fallback visible */
@media (max-width: 768px) {

  .hero__media-img,
  .hero__media video {
    aspect-ratio: 16 / 9;
  }

  /* Video WebM no funciona en Safari iOS — se oculta */
  .hero__media-inner video {
    display: none;
  }

  /* Imagen fallback visible solo en móvil */
  .hero__media-mobile-img {
    display: block !important;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-lg);
  }
}

/* Desktop: la imagen fallback siempre oculta — el video corre */
.hero__media-mobile-img {
  display: none;
}


/* Overlay sutil en la imagen */
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(to bottom,
      transparent 60%,
      rgba(8, 9, 15, 0.4) 100%);
  pointer-events: none;
}

/* --- FLOATING CARDS (reposicionadas para layout wide) --- */
.floating-card {
  position: absolute;
  background: rgba(17, 24, 39, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
  z-index: 2;
}

.card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.card-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}



/* hero__float-stack es solo un contenedor semántico; las cards se posicionan individualmente */
.hero__float-stack {
  position: static;
  display: contents;
  /* renderiza los hijos directamente sin crear caja */
}

.card--1 {
  /* Lado izquierdo — fuera del bloque de texto centrado */
  top: 42%;
  left: -230px;
  transform: translateY(-50%);
  animation: float1 6s ease-in-out infinite;
}

.card--2 {
  /* Derecha — debajo de Estrategias digitales, con espacio generoso */
  top: 68%;
  right: -210px;
  transform: translateY(-50%);
  animation: float2 8s ease-in-out infinite;
}

.card--3 {
  /* Lado derecho — un poco más arriba que card--1 */
  top: 32%;
  right: -210px;
  transform: translateY(-50%);
  animation: float1 7s ease-in-out infinite reverse;
}

/* Ocultar en tablet y móvil — también el contenedor para evitar overflow */
@media (max-width: 1100px) {

  .floating-card,
  .hero__float-stack {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% - 10px));
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% - 8px));
  }
}


/* --- SCROLL INDICATOR --- */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }

  100% {
    opacity: 0;
    transform: scaleY(1);
  }
}

/* ===================================================
   LOGOS BAR
   =================================================== */
.logos-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
  overflow: hidden;
}

.logos-bar__label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.logos-bar__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: logoScroll 20s linear infinite;
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo-item {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.logo-item:hover {
  opacity: 1;
}


/* ===================================================
   ¿STUDIO KIN ES PARA TI?
   =================================================== */
.para-ti {
  background: var(--bg-base);
}

.para-ti__body {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.para-ti__body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.para-ti__cierre {
  margin-top: 8px;
  font-weight: 600;
  color: var(--text-primary) !important;
}

/* ===================================================
   PRODUCTO / PROCESO HÍBRIDO
   =================================================== */
.producto-section {
  background: var(--bg-surface);
  overflow: hidden;
  position: relative;
}

/* Noise texture + grainy orange glow overlay */
.producto-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 50%, rgba(204, 62, 25, 0.13) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 85% 40%, rgba(204, 100, 25, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(242, 198, 161, 0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* SVG noise texture */
.producto-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

.producto-section .container {
  position: relative;
  z-index: 1;
}


/* --- 5-step process grid (2 arriba + 3 abajo) --- */
.proceso-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 56px;
  position: relative;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* Primeras 2 cards: 3 columnas cada una (fila superior) */
.proceso-card:nth-child(1),
.proceso-card:nth-child(2) {
  grid-column: span 3;
}

/* Últimas 3 cards: 2 columnas cada una (fila inferior) */
.proceso-card:nth-child(3),
.proceso-card:nth-child(4),
.proceso-card:nth-child(5) {
  grid-column: span 2;
}

/* Connecting line removed (numbers gone) */

.proceso-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: var(--transition);
  position: relative;
}

.proceso-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.proceso-card__num {
  display: none;
}

.proceso-card__icon {
  width: 54px;
  height: 54px;
  background: rgba(0, 180, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.28);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4dd8ff;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 18px rgba(0, 200, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.proceso-card:hover .proceso-card__icon {
  background: rgba(0, 200, 255, 0.14);
  border-color: rgba(0, 220, 255, 0.45);
  box-shadow: 0 0 28px rgba(0, 200, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #7de8ff;
  transform: scale(1.08);
}



.proceso-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.proceso-card__text {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Transition / divider --- */
.producto-transition {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.producto-transition::before,
.producto-transition::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.producto-transition__text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0 8px;
}

/* --- Product type pills --- */
.producto-tipos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.ptipo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.ptipo-item:hover {
  border-color: var(--border-glow);
  color: var(--text-primary);
  background: rgba(204, 62, 25, 0.05);
}

.ptipo-icon {
  width: 30px;
  height: 30px;
  background: rgba(204, 62, 25, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cream);
  flex-shrink: 0;
}

.producto-tipos__sub {
  text-align: center;
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* --- Closing block --- */
.producto-cierre {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  padding: 60px 0 40px;
  background: none;
  border: none;
  border-radius: 0;
  position: relative;
}

/* Asterisco decorativo — asoma desde el borde derecho */
.cierre-asterisk {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 50%;
  right: -540px;
  left: auto;
  transform: translateY(-50%) rotate(0deg);
  opacity: 0.12;
  pointer-events: none;
  animation: asteriskSlowSpin 40s linear infinite;
  z-index: 0;
  /* sin filter extra: el SVG ya tiene color cream */
}

/* El contenido queda encima del asterisco */
.producto-cierre>*:not(.cierre-asterisk) {
  position: relative;
  z-index: 1;
}

@keyframes asteriskSlowSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}


/* Giant statement text — 4 lines editorial */
.producto-cierre__statement {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 100%;
  width: 100%;
  color: var(--text-primary);
  margin: 0 auto;
  text-align: center;
  /* Prevent the browser from adding extra breaks beyond our br tags */
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
}

.producto-cierre__statement br {
  display: block;
}

.producto-cierre__statement .gradient-text {
  display: inline;
}

/* Kinetic line reveal */
.stmt-line {
  display: inline;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.stmt-visible .stmt-line {
  opacity: 1;
  transform: translateY(0);
}






/* ── Proceso Editorial — Tipografía como protagonista ──────────── */
.proceso-editorial {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  margin-top: 64px;
  padding: 0;
}

.proceso-word {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 24px 40px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding-left: 28px;
  transition: border-color 0.3s;
}

.proceso-word:first-child {
  border-left: none;
  padding-left: 0;
}

.proceso-word:hover {
  border-color: rgba(204, 62, 25, 0.2);
}

/* The giant word */
.proceso-word__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
  /* Gradient on hover */
  background-clip: text;
  -webkit-background-clip: text;
  transition: color 0.35s, -webkit-text-fill-color 0.35s;
}

.proceso-word:hover .proceso-word__title {
  background-image: var(--gradient-warm);
  -webkit-text-fill-color: transparent;
}

/* Small italic description */
.proceso-word__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
  margin: 0;
  max-width: 180px;
  transition: color 0.3s;
}

.proceso-word:hover .proceso-word__sub {
  color: var(--text-secondary);
}

/* ── Kinetic word reveal specific to proceso ── */
.kinetic-word {
  overflow: hidden;
}

.kinetic-word .kw-char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
}

.kinetic-word.revealed .kw-char {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1024px) {
  .proceso-word__title {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
  }

  .proceso-word {
    padding: 28px 16px 28px 20px;
  }

  .proceso-word:first-child {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .proceso-editorial {
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
  }

  .proceso-word {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 0;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .proceso-word:first-child {
    border-top: none;
  }

  .proceso-word__title {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
    flex-shrink: 0;
  }

  .proceso-word__sub {
    max-width: none;
    font-style: normal;
  }
}

@media (max-width: 480px) {
  .proceso-word {
    flex-direction: column;
    gap: 8px;
  }

  .proceso-word__title {
    font-size: clamp(2rem, 12vw, 3rem);
  }
}

/* ── Proceso Timeline (horizontal) ─────────────────────────── */
.proceso-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
  padding: 40px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.proceso-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  gap: 12px;
}

.proceso-step__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(204, 73, 25, 0.08);
  border: 1px solid rgba(204, 73, 25, 0.25);
  color: var(--brand-orange);
  opacity: 0.9;
  transition: opacity 0.25s, transform 0.25s, background 0.25s, border-color 0.25s;
  flex-shrink: 0;
}

.proceso-step:hover .proceso-step__icon {
  opacity: 1;
  transform: translateY(-3px);
  background: rgba(204, 73, 25, 0.16);
  border-color: rgba(204, 73, 25, 0.6);
  box-shadow: 0 0 18px rgba(204, 73, 25, 0.25);
}

.proceso-step__num {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--brand-orange);
  opacity: 0.45;
}

.proceso-step__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.proceso-step__text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Divider line between steps */
.proceso-step__divider {
  flex-shrink: 0;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(204, 73, 25, 0.5) 0%, rgba(204, 73, 25, 0.05) 100%);
  opacity: 0.6;
  margin-top: 26px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .proceso-timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 28px 0;
  }

  .proceso-step__divider {
    display: none;
  }

  .proceso-step {
    padding: 0;
  }
}

@media (max-width: 560px) {
  .proceso-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* ===================================================
   DECISION CARDS — "¿Por dónde quieres empezar?"
   =================================================== */
.proceso-timeline--decision {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  margin-top: 48px;
}

.proceso-timeline--decision .proceso-step__divider {
  display: none;
}

.proceso-timeline--decision .proceso-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.proceso-timeline--decision .proceso-step::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top right, rgba(204, 62, 25, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.proceso-timeline--decision .proceso-step:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 32px rgba(204, 62, 25, 0.1);
}

.proceso-timeline--decision .proceso-step__icon {
  border-radius: var(--radius-sm);
  background: rgba(204, 73, 25, 0.1);
  border: 1px solid rgba(204, 73, 25, 0.3);
  opacity: 1;
  flex-shrink: 0;
}

.proceso-timeline--decision .proceso-step:hover .proceso-step__icon {
  background: rgba(204, 73, 25, 0.18);
  border-color: rgba(204, 73, 25, 0.55);
  box-shadow: 0 0 20px rgba(204, 73, 25, 0.25);
  transform: none;
}

.proceso-timeline--decision .proceso-step__title {
  font-size: 1.05rem;
}

.proceso-timeline--decision .proceso-step__text {
  font-size: 0.85rem;
  line-height: 1.55;
}

/* Separator: "Así avanzamos en cualquiera de los tres:" */
.producto-tipos__sub {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.producto-tipos__sub::before,
.producto-tipos__sub::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Arrow tips on process step dividers */
.proceso-step__divider {
  position: relative;
  opacity: 0.75;
}

.proceso-step__divider::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -3px;
  width: 0;
  height: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 5px solid rgba(204, 62, 25, 0.5);
}

/* Responsive: decision cards */
@media (max-width: 900px) {
  .proceso-timeline--decision {
    padding: 0;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .proceso-timeline--decision {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ===================================================
   WORKS — BENTO GRID
   =================================================== */
.works {
  background: var(--bg-surface);
}

/* ---- Bento layout ---- */
/* ---- Grid ---- */
.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

/* ---- Card ---- */
.wk-card {
  position: relative;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.4);
  border-color: rgba(204,62,25,0.3);
}

.wk-card__num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(8,9,15,0.75);
  border: 1.5px solid var(--brand-orange);
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-orange);
  font-family: var(--font-display);
  letter-spacing: .05em;
  backdrop-filter: blur(6px);
}

.wk-card__img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  flex-shrink: 0;
}

.wk-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.wk-card:hover .wk-card__img-wrap img {
  transform: scale(1.04);
}

.wk-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wk-card__cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 8px;
  display: block;
}

.wk-card__title {
  font-size: clamp(17px, 2.5vw, 20px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.wk-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.wk-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.wk-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.wk-card__tag {
  font-size: 11px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 10px;
  background: var(--bg-base);
}

.wk-card__arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: background .2s, border-color .2s, color .2s;
}

.wk-card:hover .wk-card__arrow {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
}

/* ---- Inline CTA below grid ---- */
.works__inline-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 52px;
  font-size: 15px;
  color: var(--text-secondary);
}

.works__inline-cta a {
  color: var(--brand-orange);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.works__inline-cta a:hover { gap: 10px; }

/* ---- CTA button (kept for backward compat) ---- */
.works__cta { text-align: center; margin-top: 48px; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .works__grid { grid-template-columns: repeat(2, 1fr); }
}

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




.work-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
}

/* Grid decorations inside work placeholders */
.work-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.wp-inner {
  position: relative;
  z-index: 1;
}

.wp-tag {
  display: inline-block;
  background: rgba(9, 39, 128, 0.2);
  border: 1px solid rgba(9, 39, 128, 0.35);
  color: var(--brand-cream);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.wp-inner h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.wp-inner p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.work-card__meta {
  padding: 16px 24px;
}

.work-type {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.works__cta {
  text-align: center;
  margin-top: 48px;
}

/* ===================================================
   QUIÉNES SOMOS
   =================================================== */
.quienes {
  background: var(--bg-base);
}

.quienes__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.quienes__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  position: relative;
}

.quienes__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(204, 73, 25, 0.28);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.quienes__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.quienes__img-wrap:hover .quienes__img {
  transform: scale(1.03);
}

.quienes__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.quienes__body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

@media (max-width: 860px) {
  .quienes__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .quienes__img-wrap {
    aspect-ratio: 1 / 1;
  }
}

/* ===================================================
   WHY US
   =================================================== */
.why {
  background: var(--bg-base);
}

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why__text .section-tag {
  display: inline-block;
}

.why__text .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.why__text .section-sub {
  text-align: left;
  margin: 0 0 32px 0;
}

.why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why__features--full {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 0;
}

.why__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.why-feat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}

.why-feat:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.why-feat__icon {
  width: 40px;
  height: 40px;
  background: rgba(204, 62, 25, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cream);
}

.why-feat h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.why-feat p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================================================
   FAQ
   =================================================== */
.faq {
  background: var(--bg-surface);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item[open] {
  border-color: var(--border-glow);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color var(--transition);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--brand-orange);
  transition: transform var(--transition);
  flex-shrink: 0;
}

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

.faq-item summary:hover {
  color: var(--brand-cream);
}

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

.faq-body {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===================================================
   CTA FINAL
   =================================================== */
.cta-final {
  background: var(--bg-base);
}

.cta-final__inner {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, rgba(9, 39, 128, 0.1), rgba(204, 62, 25, 0.06));
  border: 1px solid rgba(204, 62, 25, 0.2);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cta-orb--1 {
  width: 350px;
  height: 350px;
  background: rgba(9, 39, 128, 0.25);
  top: -120px;
  left: -80px;
}

.cta-orb--2 {
  width: 280px;
  height: 280px;
  background: rgba(204, 62, 25, 0.2);
  bottom: -80px;
  right: -60px;
}

.cta-final__logo {
  height: 52px;
  width: auto;
  display: block;
  margin: 0 auto 4px;
  opacity: 0.9;
  filter: brightness(1.1);
  position: relative;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
}


.cta-final__sub {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
}

.cta-final__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.contact-link:hover {
  color: var(--text-primary);
}

.contact-sep {
  color: var(--text-muted);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--brand-cream);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Footer logo */
.footer__logo {
  display: inline-block;
  margin-bottom: 4px;
}

.footer__logo-img {
  height: 48px;
  width: auto;
  filter: brightness(1.1);
}

/* Section tag star icon */
.section-tag__star {
  color: var(--brand-orange);
  margin-right: 4px;
  font-style: normal;
}

/* Decorative spinning asterisk (CSS) */
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.deco-star {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  animation: spinSlow 20s linear infinite;
  z-index: 0;
}

.deco-star--lg {
  width: 220px;
  height: 220px;
}

.deco-star--md {
  width: 140px;
  height: 140px;
}

/* Navbar logo PNG tipográfico */
.nav__logo .logo-mark {
  width: 110px;
  height: auto;
  overflow: visible;
}

/* Tamaño del logo nuevo */
.nav__logo-img {
  height: 40px;
  width: auto;
}

/* ===================================================
   ANIMATIONS (Intersection Observer)
   =================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .hero__inner {
    gap: 40px;
  }

  .why__inner {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .section {
    padding: 72px 0;
  }

  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proceso-card:nth-child(1),
  .proceso-card:nth-child(2) {
    grid-column: span 1;
  }

  .proceso-card:nth-child(3),
  .proceso-card:nth-child(4),
  .proceso-card:nth-child(5) {
    grid-column: span 1;
  }

  .proceso-grid::before {
    display: none;
  }

  .producto-cierre {
    padding: 60px 0 40px;
    gap: 36px;
  }

  .why__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why__text .section-title {
    text-align: center;
  }

  .why__text .section-sub {
    text-align: center;
  }

  .why__text .section-tag {
    display: block;
    text-align: center;
  }

  .why__text .btn {
    display: inline-flex;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100dvh; /* dvh = respeta la barra de URL en Safari iOS */
    background: var(--bg-base);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    font-size: 1.2rem;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Botón X para cerrar el menú mobile */
  .nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--brand-cream);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
  }

  .nav__close:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: rotate(90deg);
  }

  .container {
    padding: 0 20px;
  }

  .hero__headline {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .works__inline-cta {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 14px;
  }

  .hero__visual .card--1 {
    display: none;
  }

  .hero__visual .card--2 {
    display: none;
  }

  .hero__visual .card--3 {
    display: none;
  }

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

  .proceso-card:nth-child(1),
  .proceso-card:nth-child(2),
  .proceso-card:nth-child(3),
  .proceso-card:nth-child(4),
  .proceso-card:nth-child(5) {
    grid-column: span 1;
  }

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

  .why__features--full {
    grid-template-columns: 1fr 1fr;
  }

  .cta-final__inner {
    padding: 48px 24px;
  }

  .cta-final__actions {
    flex-direction: column;
    align-items: center;
  }

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

/* ===================================================
   CONTACT MODAL
   =================================================== */

/* Overlay backdrop */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 9, 15, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 350ms cubic-bezier(0.4, 0, 0.2, 1),
    visibility 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Modal box */
.modal-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(204, 62, 25, 0.12), var(--shadow-glow);
  transform: translateY(24px) scale(0.97);
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.modal-overlay.is-open .modal-box {
  transform: translateY(0) scale(1);
}

/* Modal header */
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.modal-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-cream);
  margin-bottom: 4px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.modal-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 2px;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.18);
  transform: rotate(90deg);
}

/* Modal scrollable body */
.modal-body {
  overflow-y: auto;
  padding: 28px 32px 32px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(204, 62, 25, 0.3) transparent;
}

.modal-body::-webkit-scrollbar {
  width: 4px;
}

.modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
  background: rgba(204, 62, 25, 0.3);
  border-radius: 4px;
}

/* Modal footer actions */
.modal-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

/* ---- FORM ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cf-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.cf-legend {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-cream);
  margin-bottom: 16px;
  display: block;
}

/* Service selection cards */
.cf-service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.cf-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  color: var(--text-secondary);
  position: relative;
}

.cf-service-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cscard__icon {
  width: 44px;
  height: 44px;
  background: rgba(204, 62, 25, 0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-muted);
}

.cscard__label {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.cf-service-card:hover {
  border-color: rgba(204, 62, 25, 0.4);
  background: var(--bg-card-hover);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.cf-service-card:hover .cscard__icon {
  background: rgba(204, 62, 25, 0.15);
  color: var(--brand-cream);
}

.cf-service-card:has(input:checked) {
  border-color: var(--brand-orange);
  background: linear-gradient(135deg, rgba(204, 62, 25, 0.12), rgba(9, 39, 128, 0.08));
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(204, 62, 25, 0.2);
}

.cf-service-card:has(input:checked) .cscard__icon {
  background: rgba(204, 62, 25, 0.22);
  color: var(--brand-orange-light);
  box-shadow: 0 0 12px rgba(204, 62, 25, 0.3);
}

/* Contact type pills */
.cf-contact-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cf-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.cf-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cf-pill svg {
  transition: var(--transition);
  flex-shrink: 0;
}

.cf-pill:hover {
  border-color: rgba(204, 62, 25, 0.45);
  background: var(--bg-card-hover);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.cf-pill:has(input:checked) {
  border-color: var(--brand-orange);
  background: rgba(204, 62, 25, 0.1);
  color: var(--brand-cream);
  box-shadow: 0 0 14px rgba(204, 62, 25, 0.18);
}

/* Input fields grid */
.cf-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cf-group--full {
  grid-column: 1 / -1;
}

.cf-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.cf-optional {
  font-weight: 400;
  color: var(--text-muted);
}

.cf-input {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.cf-input::placeholder {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.cf-input:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(204, 62, 25, 0.15);
  background: var(--bg-card-hover);
}

.cf-input:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.14);
}

.cf-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* Submit button */
.cf-submit {
  align-self: flex-start;
  min-width: 200px;
  justify-content: center;
  font-size: 1rem;
  padding: 14px 32px;
  transition: var(--transition);
}

.cf-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Feedback message */
.cf-feedback {
  font-size: 0.88rem;
  min-height: 0;
  transition: all var(--transition);
  border-radius: var(--radius-sm);
}

.cf-feedback--success {
  color: #6ee7b7;
  background: rgba(110, 231, 183, 0.08);
  border: 1px solid rgba(110, 231, 183, 0.25);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cf-feedback--success::before {
  content: '✅';
}

.cf-feedback--error {
  color: #fca5a5;
  background: rgba(252, 165, 165, 0.08);
  border: 1px solid rgba(252, 165, 165, 0.25);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cf-feedback--error::before {
  content: '⚠️';
}

/* --- Input states: error / ok --- */
.cf-input--error {
  border-color: rgba(252, 100, 100, 0.7) !important;
  box-shadow: 0 0 0 3px rgba(252, 100, 100, 0.12) !important;
}

.cf-input--ok {
  border-color: rgba(110, 231, 183, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(110, 231, 183, 0.08) !important;
}

/* --- Inline field error message --- */
.cf-error {
  display: block;
  font-size: 0.76rem;
  color: #fca5a5;
  margin-top: 5px;
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}

.cf-error--show {
  max-height: 40px;
  opacity: 1;
}

/* --- Email input wrap con ícono flotante --- */
.cf-input-wrap {
  position: relative;
}

.cf-input-wrap .cf-input {
  padding-right: 40px;
}

.cf-input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  font-weight: 700;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.cf-input-icon--ok {
  color: #6ee7b7;
}

.cf-input-icon--err {
  color: #fca5a5;
}

/* --- Phone wrap: bandera + input --- */
.cf-phone-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.cf-flag-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  padding: 0 12px;
  height: 48px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.cf-flag-btn:hover,
.cf-flag-btn--open {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-glow);
}

.cf-flag-emoji {
  font-size: 1.1rem;
  line-height: 1;
}

.cf-flag-code {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cf-phone-wrap .cf-phone-input {
  border-radius: 0 var(--radius-md) var(--radius-md) 0 !important;
  flex: 1;
  min-width: 0;
}

/* --- Flag dropdown --- */
.cf-flag-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 50;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  min-width: 180px;
  animation: fadeInDown 0.15s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cf-flag-option {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  padding: 10px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: left;
  transition: background 0.15s ease;
}

.cf-flag-option:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}



/* ---- ASIDE ---- */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.contact-aside__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-aside__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.contact-aside__sub {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-aside__links {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-aside__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  color: var(--text-primary);
}

.contact-aside__item:last-child {
  border-bottom: none;
}

.contact-aside__item:hover {
  background: var(--bg-card-hover);
}

.contact-aside__icon {
  width: 38px;
  height: 38px;
  background: rgba(204, 62, 25, 0.08);
  border: 1px solid rgba(204, 62, 25, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cream);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-aside__item:hover .contact-aside__icon {
  background: rgba(204, 62, 25, 0.16);
  box-shadow: 0 0 12px rgba(204, 62, 25, 0.2);
}

.contact-aside__icon--wa {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.25);
  color: #25d366;
}

.contact-aside__item:hover .contact-aside__icon--wa {
  background: rgba(37, 211, 102, 0.15);
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.2);
}

.contact-aside__item-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-aside__item-value {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 2px;
}

.contact-aside__note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .cf-service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact-aside__note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .cf-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cf-fields {
    grid-template-columns: 1fr;
  }

  .cf-contact-pills {
    gap: 8px;
  }

  .cf-pill {
    font-size: 0.8rem;
    padding: 9px 14px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .modal-box {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 92vh;
  }

  .modal-header {
    padding: 20px 20px 16px;
  }

  .modal-body {
    padding: 20px 20px 28px;
  }
}

/* ===================================================
   TESTIMONIOS
   =================================================== */
.testimonios {
  background: var(--bg-main);
}

.testimonios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testimonio-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testimonio-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--brand-orange);
  opacity: 0.12;
  pointer-events: none;
}

.testimonio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 73, 25, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.testimonio-card__stars {
  color: #f5b942;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonio-card__quote {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
  margin: 0;
}

.testimonio-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.testimonio-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-orange), #c43d0f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonio-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}

.testimonio-card__author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonio-card__result {
  display: block;
  font-size: 0.72rem !important;
  font-weight: 600;
  color: var(--brand-orange) !important;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .testimonios__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===================================================
   WHATSAPP FLOTANTE
   =================================================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366 0%, #128c4a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.wa-float__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (max-width: 560px) {
  .wa-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

/* ===================================================
   INVERSION / PRECIOS
   =================================================== */
.inversion {
  background: var(--bg-surface);
}

.inversion__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 420px));
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  align-items: stretch;
}

.inversion__nota {
  text-align: center;
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Base card */
.inv-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.inv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* Popular card */
.inv-card--popular {
  border-color: rgba(204, 73, 25, 0.4);
  background: rgba(204, 73, 25, 0.05);
  box-shadow: 0 0 0 1px rgba(204, 73, 25, 0.2), 0 8px 32px rgba(204, 73, 25, 0.12);
}

.inv-card--popular:hover {
  border-color: rgba(204, 73, 25, 0.7);
  box-shadow: 0 0 0 1px rgba(204, 73, 25, 0.4), 0 16px 48px rgba(204, 73, 25, 0.2);
}

.inv-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: rgba(204, 73, 25, 0.15);
  border: 1px solid rgba(204, 73, 25, 0.3);
  border-radius: 100px;
  padding: 4px 12px;
  align-self: flex-start;
}

.inv-card__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inv-card__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.inv-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 4px 0 8px;
  line-height: 1.2;
}

.inv-card__price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.inv-card__price span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.inv-card__price small {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.inv-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.inv-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.inv-card__list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.inv-card__list li::before {
  content: '✓';
  color: var(--brand-orange);
  font-weight: 700;
  flex-shrink: 0;
}

.inv-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

@media (max-width: 900px) {
  .inversion__grid {
    grid-template-columns: minmax(0, 480px);
    margin-left: auto;
    margin-right: auto;
  }

  .inv-card--popular {
    order: -1;
  }
}
/* ===================================================
   REVEAL ANIMATIONS
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 0.15s; }
.reveal[data-delay="2"] { transition-delay: 0.3s; }
.reveal[data-delay="3"] { transition-delay: 0.45s; }
.reveal[data-delay="4"] { transition-delay: 0.6s; }
.reveal[data-delay="5"] { transition-delay: 0.75s; }

/* ===================================================
   PROJECT MODAL
   =================================================== */
.proj-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(4, 4, 16, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.proj-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.proj-modal {
  background: #0d0d1f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  position: relative;
  transform: translateY(28px) scale(0.96);
  transition: transform 0.38s cubic-bezier(.22, 1, .36, 1);
  overflow: hidden;
}

.proj-overlay.open .proj-modal {
  transform: translateY(0) scale(1);
}

.proj-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 20;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.proj-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.proj-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  height: 90vh;
  max-height: 90vh;
  overflow: hidden;
}

.proj-carousel {
  display: flex;
  flex-direction: column;
  background: #08081a;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  min-width: 0;
  overflow: hidden;
}

.proj-carousel__stage {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.proj-carousel__main.fading {
  opacity: 0;
}

.proj-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 5;
}

.proj-arrow:hover {
  background: rgba(204, 62, 25, 0.7);
}

.proj-arrow--prev { left: 12px; }
.proj-arrow--next { right: 12px; }

.proj-counter {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

.proj-thumbs {
  display: flex;
  gap: 4px;
  padding: 6px;
  background: rgba(0, 0, 0, 0.3);
  overflow-x: auto;
  scrollbar-width: none;
}

.proj-thumbs::-webkit-scrollbar { display: none; }

.proj-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}

.proj-thumb.active {
  opacity: 1;
  border-color: var(--brand-orange);
}

.proj-thumb:hover { opacity: 0.85; }

.proj-info {
  overflow-y: auto;
  padding: 36px 32px;
  scrollbar-width: thin;
  scrollbar-color: rgba(204, 62, 25, 0.3) transparent;
  min-width: 0;
}

.proj-info::-webkit-scrollbar { width: 4px; }

.proj-info::-webkit-scrollbar-thumb {
  background: rgba(204, 62, 25, 0.3);
  border-radius: 4px;
}

.proj-info__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 8px;
}

.proj-info__title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 28px;
  line-height: 1.2;
}

.proj-info__section { margin-bottom: 22px; }

.proj-info__section h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 8px;
}

.proj-info__section p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  font-size: 0.9rem;
  margin: 0;
}

.proj-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.proj-role {
  background: rgba(204, 62, 25, 0.1);
  border: 1px solid rgba(204, 62, 25, 0.28);
  color: var(--brand-cream);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

/* Work card extras */
.work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.work-card:hover .work-card__img {
  transform: scale(1.04);
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 30, 0.8) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-card:hover .work-card__overlay { opacity: 1; }

.work-card__cta {
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.work-card__title {
  margin: 6px 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary, #fff);
}

@media (max-width: 700px) {
  .proj-layout {
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
  }

  .proj-modal {
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 16px;
  }

  .proj-carousel {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .proj-carousel__stage { height: 240px; }

  .proj-info { padding: 24px 20px 28px; }

  .proj-info__title { font-size: 1.25rem; }

  .proj-thumb {
    width: 58px;
    height: 42px;
  }
}

/* =====================================================
   ESTILOS ADICIONALES (migrados desde index.html)
   ===================================================== */

/* ── HERO BG VIDEO ── */
.hero__bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

/* ── HERO PALABRA ANIMADA ── */
.hero__animated-word {
    display: inline;
}

.hero__animated-word.word-exit {
    animation: wordExit 0.28s ease-in forwards;
}

.hero__animated-word.word-enter {
    animation: wordEnter 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes wordExit {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

@keyframes wordEnter {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ── HERO SERVICE MINI-CARDS ── */
.hero-services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 44px;
    width: 100%;
}

.hero-svc {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 0 0 180px;
}

.hero-svc:hover {
    background: rgba(204, 62, 25, 0.07);
    border-color: rgba(204, 62, 25, 0.28);
    transform: translateY(-3px);
}

.hero-svc__icon {
    width: 32px;
    height: 32px;
    background: rgba(204, 62, 25, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    color: var(--brand-orange);
}

.hero-svc__name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.25;
}

.hero-svc__price {
    font-size: 0.7rem;
    color: var(--brand-cream);
    opacity: 0.6;
    font-weight: 500;
}

/* ── SERVICIOS / PAQUETES ── */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.pkg-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}

.pkg-card:hover {
    border-color: rgba(204, 62, 25, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.pkg-card--featured {
    border-color: rgba(204, 62, 25, 0.3);
    background: linear-gradient(145deg, rgba(204, 62, 25, 0.06) 0%, var(--bg-card) 65%);
}

.pkg-badge {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-orange);
    margin-bottom: 14px;
    display: block;
}

.pkg-badge--cream { color: var(--brand-cream); }

.pkg-title {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.pkg-tagline {
    font-size: 0.84rem;
    color: var(--text-secondary);
    margin-bottom: 22px;
    line-height: 1.55;
}

.pkg-pricing { margin-bottom: 4px; }

.pkg-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
}

.pkg-price-from {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-right: 4px;
}

.pkg-price-unit {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 4px;
}

.pkg-time {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pkg-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin-bottom: 20px;
}

.pkg-ideal-label,
.pkg-inc-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}

.pkg-ideal-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.pkg-chip {
    font-size: 0.73rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    padding: 3px 10px;
}

.pkg-inc-list {
    margin-bottom: 28px;
    flex: 1;
}

.pkg-inc-list li {
    font-size: 0.83rem;
    color: var(--text-secondary);
    padding: 5px 0 5px 20px;
    position: relative;
    line-height: 1.4;
}

.pkg-inc-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-size: 0.72rem;
    font-weight: 700;
}

.pkg-cta { margin-top: auto; }

/* ── WIDE CARD (Web Apps) ── */
.pkg-card--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.pkg-wide-left {
    display: flex;
    flex-direction: column;
}

.pkg-wide-right {
    border-left: 1px solid var(--border);
    padding-left: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.pkg-price-note {
    font-size: 0.83rem;
    color: var(--brand-cream);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 6px;
}

.pkg-price-sub {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 28px;
}

/* ── PROCESO ── */
.proceso-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 56px;
}

.paso {
    background: var(--bg-card);
    padding: 36px 28px;
}

.paso__num {
    font-size: 2.6rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: rgba(204, 62, 25, 0.18);
    line-height: 1;
    margin-bottom: 16px;
}

.paso__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.paso__text {
    font-size: 0.81rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── WHY GRID ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 44px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    display: flex;
    gap: 18px;
    transition: border-color 250ms ease;
}

.why-card:hover { border-color: rgba(204, 62, 25, 0.2); }

.why-card__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(204, 62, 25, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
}

.why-card__title {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.why-card__text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── STATEMENT SECTION ── */
.statement-section {
    padding: 190px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.statement-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.statement-headline {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

.statement-body {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.75;
}

.statement-body p+p { margin-top: 12px; }

.statement-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ── CTA FINAL ── */
.cta-strong__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

/* ── DEMOS EN VIVO ── */
.demos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.demos-grid .demo-card:last-child:nth-child(3n+2) { grid-column: 2; }

.demo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}

.demo-card:hover {
    border-color: rgba(204, 62, 25, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.demo-card__browser { width: 100%; flex-shrink: 0; }

.demo-card__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.demo-dot--red    { background: #ff5f57; }
.demo-dot--yellow { background: #febc2e; }
.demo-dot--green  { background: #28c840; }

.demo-card__url {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
    margin-left: 6px;
    letter-spacing: 0.02em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.demo-card__preview {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: var(--bg-surface);
}

.demo-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-card:hover .demo-card__img { transform: scale(1.04); }

.demo-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.demo-card__industry {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-orange);
}

.demo-card__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.demo-card__desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.demo-card__cta {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-cream);
    opacity: 0.7;
    transition: opacity 200ms ease;
}

.demo-card:hover .demo-card__cta { opacity: 1; }

.demos-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.demos-footer__text {
    font-size: 0.87rem;
    color: var(--text-secondary);
}

/* ── RESPONSIVE (adicional) ── */
@media (max-width: 960px) {
    .pkg-card--wide {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .pkg-wide-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border);
        padding-top: 24px;
    }
}

@media (max-width: 900px) {
    .statement-section { padding: 80px 0; }
    .statement-inner { grid-template-columns: 1fr; gap: 28px; }
    .proceso-grid { grid-template-columns: repeat(2, 1fr); }
    .demos-grid { grid-template-columns: repeat(2, 1fr); }
    .demos-grid .demo-card:last-child:nth-child(3n+2) { grid-column: auto; }
}

@media (max-width: 768px) {
    .hero-services { grid-template-columns: repeat(2, 1fr); }
    .servicios-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .demos-grid { grid-template-columns: 1fr; }
    .demos-footer { flex-direction: column; gap: 16px; }
}

@media (max-width: 540px) {
    .statement-section { padding: 56px 0; }
    .proceso-grid { grid-template-columns: 1fr; }
    .hero-svc { padding: 14px 10px; flex: 0 0 calc(50% - 5px); }
    .pkg-card { padding: 28px 22px; }
    .pkg-wide-right { grid-template-columns: 1fr; gap: 20px; }
}
