/* ============================================================
   CAMILA MERLINO — GROWTH PARTNER
   Estilos principales · v20260626
   ============================================================ */

/* ---- Reset & custom props ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:        #5b009b;
  --accent-light:  #ede0f7;
  --accent-dark:   #3d0069;
  --ink:           #0A0A0A;
  --ink-70:        rgba(10,10,10,.70);
  --ink-40:        rgba(10,10,10,.40);
  --ink-12:        rgba(10,10,10,.12);
  --ink-06:        rgba(10,10,10,.06);
  --bg:            #FFFFFF;
  --bg-soft:       #FAFAFA;
  --bg-warm:       #F7F5FF;    /* tint violeta muy suave */
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:     0 4px 16px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg:     0 16px 48px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.04);
  --transition:    .28s cubic-bezier(.4,0,.2,1);
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- Typography ---- */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 5rem);
}

.container--narrow {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 5rem);
}

.container--wide {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4vw, 4rem);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ---- Reveal on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-split] { opacity: 1; transform: none; } /* defensive */

.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .18s; }
.reveal--delay-3 { transition-delay: .26s; }
.reveal--delay-4 { transition-delay: .34s; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 100px;
  padding: .875rem 1.75rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  transition-property: background, color, box-shadow, transform;
  white-space: nowrap;
}

.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}

@media (hover: hover) {
  .btn-primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 8px 24px rgba(139,92,246,.35);
    transform: translateY(-1px);
  }
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink-12);
}

@media (hover: hover) {
  .btn-ghost:hover {
    border-color: var(--ink-40);
    transform: translateY(-1px);
  }
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink-06);
  color: var(--ink);
  flex-shrink: 0;
  transition: var(--transition);
}

@media (hover: hover) {
  .btn-icon:hover { background: var(--ink-12); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 1.25rem;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}

.nav.is-scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--ink-06);
  padding-block: .875rem;
}

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

.nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink-70);
  text-decoration: none;
  transition: color .2s ease;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .25s ease;
  transform-origin: left;
}

@media (hover: hover) {
  .nav__links a:hover { color: var(--ink); }
  .nav__links a:hover::after { transform: scaleX(1); }
}

.nav__cta { display: flex; align-items: center; gap: .75rem; }

.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: 1.5px;
  background: var(--ink);
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 2rem;
}

.nav__mobile.is-open { display: flex; }

.nav__mobile a {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .3s ease, transform .3s ease;
}

.nav__mobile.is-open a {
  opacity: 1;
  transform: none;
}

.nav__mobile a:nth-child(1) { transition-delay: .05s; }
.nav__mobile a:nth-child(2) { transition-delay: .1s; }
.nav__mobile a:nth-child(3) { transition-delay: .15s; }
.nav__mobile a:nth-child(4) { transition-delay: .2s; }
.nav__mobile a:nth-child(5) { transition-delay: .25s; }
.nav__mobile a:nth-child(6) { transition-delay: .3s; }

.nav__mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
  overflow: clip;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.hero__content { padding-block: 2rem; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-70);
  margin-bottom: 1.75rem;
  padding: .375rem .875rem;
  border: 1px solid var(--ink-12);
  border-radius: 100px;
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.8); }
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 1.75rem;
  text-wrap: balance;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  line-height: 1.65;
  color: var(--ink-70);
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--ink-06);
}

.hero__stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--ink);
}

.hero__stat-label {
  font-size: .8125rem;
  color: var(--ink-40);
  margin-top: .3rem;
  line-height: 1.3;
}

@keyframes hero-photo-in {
  from { opacity: 0; transform: translateY(28px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.hero__photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: clip;
  background: transparent;
  border-radius: 1.5rem;
  box-shadow: 0 8px 40px rgba(91,0,155,.15), 0 2px 8px rgba(0,0,0,.08);
  animation: hero-photo-in .75s cubic-bezier(.22,.68,0,1.1) .1s both;
}

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

.hero__photo-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: .875rem 1.125rem;
  box-shadow: var(--shadow-lg);
}

.hero__photo-badge-text {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.hero__photo-badge-sub {
  font-size: .75rem;
  color: var(--ink-40);
  margin-top: .15rem;
}

/* ============================================================
   AUTORIDAD / MÉTRICAS
   ============================================================ */
.metrics {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background:
    radial-gradient(ellipse 55% 50% at 50% 100%,  rgba(91,0,155,.55)  0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 15% 50%,   rgba(91,0,155,.12)  0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 88% 80%,   rgba(30,0,60,.6)    0%, transparent 55%),
    #06000c;
  color: #fff;
  overflow: clip;
  position: relative;
}

/* Ruido film grain muy sutil */
.metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}

/* Líneas diagonales imperceptibles */
.metrics::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,.008) 60px,
    rgba(255,255,255,.008) 61px
  );
  pointer-events: none;
  z-index: 0;
}

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

/* ---- Layout 2 columnas ---- */
.metrics__layout {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: stretch;
  margin-bottom: 0;
}

/* Columna izquierda — título llena la altura */
.metrics__left {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.metrics__eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .55em;
  flex-shrink: 0;
}

.metrics__eyebrow-dot { color: var(--accent); font-size: .85em; }

.metrics__title {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .92;
  color: #fff;
  flex: 1;
}

/* Número decorativo en baja opacidad */
.metrics__deco {
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.05);
  user-select: none;
  pointer-events: none;
  margin-top: auto;
  padding-top: .75rem;
  align-self: flex-start;
  overflow: hidden;
  max-height: 5.5rem;
}

/* Columna derecha */
.metrics__right {
  display: flex;
  flex-direction: column;
}

.metrics__body {
  font-size: clamp(.875rem, 1.2vw, 1rem);
  color: rgba(255,255,255,.48);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

/* Separador */
.metrics__meta {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.metrics__meta-item {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
}

.metrics__meta-label {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(155,50,255,.65);
  min-width: 8rem;
  flex-shrink: 0;
}

.metrics__meta-value {
  font-size: clamp(.8125rem, 1vw, .9375rem);
  font-weight: 500;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
}

/* ---- Tarjetas de estadísticas ---- */
.metrics__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.metric-card {
  padding: 1.5rem 1.375rem;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  transition: border-color 300ms ease, box-shadow 300ms ease;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric-card--featured {
  background: rgba(91,0,155,.2);
  border-color: rgba(110,20,185,.45);
  box-shadow: 0 0 28px rgba(91,0,155,.14) inset;
}

@media (hover: hover) {
  .metric-card:hover {
    border-color: rgba(145,40,255,.35);
    box-shadow: 0 0 18px rgba(91,0,155,.10);
  }
  .metric-card--featured:hover {
    border-color: rgba(145,40,255,.55);
    box-shadow: 0 0 28px rgba(91,0,155,.2);
  }
}

/* Animación de entrada — aplicada al contenedor */
@keyframes metric-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.metrics__cards.is-visible .metric-card:nth-child(1) { animation: metric-in 0.6s cubic-bezier(.16,1,.3,1) both; }
.metrics__cards.is-visible .metric-card:nth-child(2) { animation: metric-in 0.6s cubic-bezier(.16,1,.3,1) .15s both; }
.metrics__cards.is-visible .metric-card:nth-child(3) { animation: metric-in 0.6s cubic-bezier(.16,1,.3,1) .30s both; }

.metric-card__number {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: .04em;
  font-variant-numeric: tabular-nums;
}

.metric-card__prefix {
  font-size: .36em;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .03em;
  align-self: baseline;
  padding-bottom: .15em;
  margin-right: .06em;
}

.metric-card__unit {
  font-size: .4em;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}

.metric-card__label {
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  line-height: 1.4;
  margin-top: .5rem;
}

/* ---- Sectores marquee ---- */
.metrics__sectors {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: clamp(1rem, 1.75vw, 1.5rem);
}

.metrics__sectors-label {
  font-size: clamp(.6875rem, .9vw, .75rem);
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Marquee wrapper — fade on both edges */
.metrics__marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.metrics__marquee:hover .metrics__marquee-track {
  animation-play-state: paused;
}

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

.metrics__marquee-track {
  display: flex;
  width: max-content;
  gap: .75rem;
  animation: sectors-scroll 30s linear infinite;
}

.metrics__chip {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: .45rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.035);
  font-size: clamp(.75rem, .9vw, .875rem);
  font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: .03em;
  transition: border-color 300ms ease, color 300ms ease, background 300ms ease, box-shadow 300ms ease;
  cursor: default;
  user-select: none;
  white-space: nowrap;
}

@media (hover: hover) {
  .metrics__chip:hover {
    border-color: rgba(145,40,255,.5);
    color: rgba(255,255,255,.82);
    background: rgba(91,0,155,.16);
    box-shadow: 0 0 14px rgba(91,0,155,.18);
  }
}

/* ============================================================
   EL PROBLEMA
   ============================================================ */
.problem {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg-soft);
}

.problem__grid {
  max-width: 720px;
  margin-inline: auto;
}

.problem__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.12;
  margin-bottom: 1.75rem;
  text-wrap: balance;
}

.problem__text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-70);
  margin-bottom: 1.25rem;
}

.problem__highlight {
  background: var(--bg-warm);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
  margin-top: 2rem;
}

.problem__visual {
  position: relative;
}

.problem__photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

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

.problem__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right,  var(--bg-soft) 0%, transparent 28%, transparent 72%, var(--bg-soft) 100%),
    linear-gradient(to bottom, var(--bg-soft) 0%, transparent 14%, transparent 65%, var(--bg-soft) 100%);
}

/* ============================================================
   ¿CON QUIÉN TRABAJAMOS?
   ============================================================ */
.fit {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.fit__header {
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.fit__title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.fit__title em {
  font-style: normal;
  color: var(--accent);
}

.fit__subtitle {
  font-size: 1.0625rem;
  color: var(--ink-70);
  line-height: 1.7;
  margin-bottom: .875rem;
}

.fit__subtitle:last-child { margin-bottom: 0; }

/* Grid */
.fit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

/* Slide-in from sides — override base .reveal translateY */
.reveal.fit__card--from-left  { transform: translateX(-48px) !important; opacity: 0; }
.reveal.fit__card--from-right { transform: translateX(48px) !important; opacity: 0; }
.reveal.fit__card--from-left.is-visible,
.reveal.fit__card--from-right.is-visible { transform: translateX(0) !important; opacity: 1; }

/* Cards */
.fit__card {
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 3vw, 2.75rem);
  border: 1px solid rgba(255,255,255,.0);
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
  will-change: transform;
}

.fit__card--yes {
  background: var(--bg-warm);
  border-color: rgba(91,0,155,.15);
}

.fit__card--no {
  background: var(--bg-soft);
  border-color: var(--ink-06);
}

.fit__card--yes:hover {
  transform: translateY(-6px);
  border-color: rgba(91,0,155,.35);
  box-shadow: 0 0 0 1px rgba(91,0,155,.12), 0 0 32px rgba(91,0,155,.10), 0 16px 40px rgba(91,0,155,.08);
}

.fit__card--no:hover {
  transform: translateY(-6px);
  border-color: rgba(91,0,155,.18);
  box-shadow: 0 0 0 1px rgba(91,0,155,.06), 0 0 24px rgba(91,0,155,.06), 0 16px 40px rgba(0,0,0,.06);
}

/* Card title */
.fit__card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: .875rem;
  color: var(--ink);
}

.fit__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
}

.fit__icon--no {
  background: var(--ink-06);
  color: var(--ink-40);
}

/* List */
.fit__list { list-style: none; display: flex; flex-direction: column; gap: 0; }

.fit__bullet {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding-block: .75rem;
  border-left: 2px solid transparent;
  padding-left: .875rem;
  margin-left: -.875rem;
  font-size: .9375rem;
  line-height: 1.55;
  color: var(--ink-70);
  transition: border-color 280ms ease, padding-left 280ms ease, color 280ms ease;
  cursor: default;
}

.fit__bullet:hover {
  border-left-color: var(--accent);
  padding-left: calc(.875rem + 6px);
  color: var(--ink);
}

.fit__bullet--no:hover {
  border-left-color: rgba(91,0,155,.4);
}

.fit__check {
  flex-shrink: 0;
  margin-top: .2em;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: var(--accent);
}

.fit__check::before {
  content: "✓";
}

.fit__bullet--no .fit__check {
  border-color: rgba(0,0,0,.22);
  color: rgba(0,0,0,.3);
}

.fit__bullet--no .fit__check::before {
  content: "✕";
}

/* ============================================================
   VS AGENCIA
   ============================================================ */
.vs {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg-soft);
  overflow: clip;
}

.vs__header { text-align: center; max-width: 56ch; margin-inline: auto; margin-bottom: 4rem; }

.vs__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.12;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.vs__table {
  border-radius: var(--radius-xl);
  overflow: clip;
  border: 1px solid var(--ink-06);
  background: var(--bg);
}

.vs__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border-bottom: 1px solid var(--ink-06);
}

.vs__row:last-child { border-bottom: none; }

.vs__row-header { background: var(--ink); color: #fff; }

.vs__cell {
  padding: 1.25rem 2rem;
  font-size: .9375rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.vs__cell--agency { color: var(--ink-40); }
.vs__cell--brand  { color: var(--ink); font-weight: 500; }

.vs__cell--mid {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  padding-inline: 1.25rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-40);
  border-inline: 1px solid var(--ink-06);
  min-width: 3.5rem;
}

.vs__head-agency,
.vs__head-brand {
  padding: 1.25rem 2rem;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.vs__head-agency { color: rgba(255,255,255,.4); }
.vs__head-brand  { color: var(--accent); text-align: right; }

.vs__head-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  border-inline: 1px solid rgba(255,255,255,.08);
}

/* ============================================================
   COAT ADS — FRAMEWORK
   ============================================================ */
.coat {
  background:
    radial-gradient(ellipse 55% 50% at 50% 100%, rgba(91,0,155,.4) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 8%  45%,  rgba(91,0,155,.14) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 92% 75%,  rgba(30,0,60,.55) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 0%,   rgba(91,0,155,.08) 0%, transparent 60%),
    #06000c;
  color: #fff;
}

/* ---- Header ---- */
.coat__header {
  padding-top: clamp(5rem, 10vw, 8rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.coat__eyebrow {
  display: inline-block;
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(155,60,255,.65);
  margin-bottom: 1.75rem;
}

.coat__brand {
  font-size: clamp(4.5rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .9;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, rgba(200,160,255,.85) 50%, rgba(145,40,255,.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coat__tagline {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: rgba(255,255,255,.88);
  line-height: 1.4;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}

.coat__desc {
  font-size: 1rem;
  color: rgba(255,255,255,.45);
  line-height: 1.72;
  max-width: 52ch;
  margin-inline: auto;
}

/* ---- Diagram wrap ---- */
.coat__diagram-wrap {
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
  padding-block: clamp(3rem, 5vw, 5rem);
}

/* ---- Diagram — absolute-positioned hub + pills ---- */
.coat__diagram {
  position: relative;
  height: 520px;
}

/* ---- SVG overlay ---- */
.coat__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Path animation on entry */
.coat__path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 0s;
}

.coat__diagram.animated .coat__path[data-pill="1"] { stroke-dashoffset: 0; transition: stroke-dashoffset 1.1s cubic-bezier(.4,0,.2,1) .9s; }
.coat__diagram.animated .coat__path[data-pill="2"] { stroke-dashoffset: 0; transition: stroke-dashoffset 1.1s cubic-bezier(.4,0,.2,1) 1.1s; }
.coat__diagram.animated .coat__path[data-pill="3"] { stroke-dashoffset: 0; transition: stroke-dashoffset 1.1s cubic-bezier(.4,0,.2,1) 1.3s; }
.coat__diagram.animated .coat__path[data-pill="4"] { stroke-dashoffset: 0; transition: stroke-dashoffset 1.1s cubic-bezier(.4,0,.2,1) 1.5s; }
.coat__diagram.animated .coat__path[data-pill="5"] { stroke-dashoffset: 0; transition: stroke-dashoffset 1.1s cubic-bezier(.4,0,.2,1) 1.7s; }

/* Glow paths: illuminated on hover via JS class */
.coat__path--glow { stroke-dashoffset: 0; stroke-dasharray: none; opacity: 0; transition: opacity 350ms ease; }
.coat__path--glow.lit { opacity: 1; stroke: rgba(145,40,255,.55) !important; }

/* ---- Hub ---- */
.coat__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  /* entry */
  opacity: 0;
  scale: 0.4;
  transition: opacity 600ms ease .3s, scale 700ms cubic-bezier(.16,1,.3,1) .3s;
}

.coat__diagram.animated .coat__hub {
  opacity: 1;
  scale: 1;
}

.coat__hub-core {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, rgba(91,0,155,.5) 0%, rgba(6,0,12,.96) 65%);
  border: 1.5px solid rgba(145,40,255,.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 40px rgba(91,0,155,.35),
    0 0 90px rgba(91,0,155,.12),
    inset 0 0 30px rgba(91,0,155,.10);
  transition: box-shadow 400ms ease, border-color 400ms ease;
}

.coat__hub.pulsing .coat__hub-core,
.coat__hub:hover .coat__hub-core {
  box-shadow:
    0 0 60px rgba(91,0,155,.55),
    0 0 120px rgba(91,0,155,.2),
    inset 0 0 40px rgba(91,0,155,.15);
  border-color: rgba(145,40,255,.7);
}

.coat__hub-brand {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: .06em;
  color: #fff;
  text-align: center;
  line-height: 1.1;
}

.coat__hub-sub {
  font-size: .45rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(145,40,255,.65);
  text-transform: uppercase;
}

/* Rings */
.coat__hub-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(145,40,255,.10);
}
.coat__hub-ring--1 { width: 215px; height: 215px; animation: ring-pulse 4s ease-in-out infinite; }
.coat__hub-ring--2 { width: 265px; height: 265px; animation: ring-pulse 4s ease-in-out 1s infinite; }

@keyframes ring-pulse {
  0%, 100% { opacity: .5; }
  50%       { opacity: .15; }
}

/* ---- Pills ---- */
.coat__pill {
  position: absolute;
  width: 185px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 1.25rem 1.125rem;
  backdrop-filter: blur(10px);
  z-index: 5;
  cursor: default;
  /* entry */
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 500ms ease,
    transform 500ms ease,
    border-color 350ms ease,
    box-shadow 350ms ease,
    scale 350ms ease;
}

.coat__pill--1 { top: 40px;  left: 0; }
.coat__pill--2 { top: 285px; left: 0; }
.coat__pill--3 { top: 15px;  right: 0; }
.coat__pill--4 { top: 185px; right: 0; }
.coat__pill--5 { top: 360px; right: 0; }

/* Entry with stagger */
.coat__diagram.animated .coat__pill--1 { opacity: 1; transform: translateY(0); transition-delay: 1.0s; }
.coat__diagram.animated .coat__pill--2 { opacity: 1; transform: translateY(0); transition-delay: 1.2s; }
.coat__diagram.animated .coat__pill--3 { opacity: 1; transform: translateY(0); transition-delay: 1.4s; }
.coat__diagram.animated .coat__pill--4 { opacity: 1; transform: translateY(0); transition-delay: 1.6s; }
.coat__diagram.animated .coat__pill--5 { opacity: 1; transform: translateY(0); transition-delay: 1.8s; }

/* Hover */
.coat__pill:hover {
  border-color: rgba(91,0,155,.45);
  box-shadow:
    0 0 0 1px rgba(91,0,155,.14),
    0 0 28px rgba(91,0,155,.18),
    0 12px 32px rgba(0,0,0,.4);
  scale: 1.04;
  transform: translateY(-4px) !important;
}

.coat__pill-num {
  display: block;
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(145,40,255,.5);
  margin-bottom: .625rem;
}

.coat__pill-title {
  font-size: .875rem;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  line-height: 1.3;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}

.coat__pill-text {
  font-size: .75rem;
  color: rgba(255,255,255,.38);
  line-height: 1.65;
}

/* ---- Bottom / CTA ---- */
.coat__bottom {
  padding-bottom: clamp(5rem, 10vw, 8rem);
  text-align: center;
}

.coat__quote {
  font-size: clamp(1.0625rem, 1.8vw, 1.375rem);
  font-weight: 500;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  letter-spacing: -.02em;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 44ch;
  margin-inline: auto;
}

.coat__quote em {
  font-style: normal;
  color: rgba(255,255,255,.9);
}

.coat__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* CTA button — premium pill */
.coat__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .875rem;
  padding: 0 2.5rem;
  height: 56px;
  min-width: 320px;
  max-width: 380px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #5b009b 0%, #7a2cff 100%);
  color: #fff;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -.01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  box-shadow:
    0 0 0 1px rgba(122,44,255,.4),
    0 8px 32px rgba(91,0,155,.35),
    0 2px 8px rgba(0,0,0,.3);
  transition: transform 300ms cubic-bezier(.4,0,.2,1), box-shadow 300ms cubic-bezier(.4,0,.2,1), scale 300ms cubic-bezier(.4,0,.2,1);
  justify-content: center;
}

.coat__cta-arrow {
  flex-shrink: 0;
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
}

@media (hover: hover) {
  .coat__cta-btn:hover {
    transform: translateY(-3px);
    scale: 1.02;
    box-shadow:
      0 0 0 1px rgba(122,44,255,.55),
      0 12px 40px rgba(91,0,155,.55),
      0 4px 12px rgba(0,0,0,.3);
  }
  .coat__cta-btn:hover .coat__cta-arrow {
    transform: translateX(4px);
  }
}

.coat__cta-btn:active { scale: .98; }

/* Trust line */
.coat__cta-trust {
  font-size: .875rem;
  color: rgba(255,255,255,.28);
  line-height: 1.5;
  max-width: 40ch;
  margin-inline: auto;
  letter-spacing: -.005em;
}

/* ============================================================
   SOBRE MÍ
   ============================================================ */
.about {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: #fff;
}

.about__grid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

/* ── Photo column ── */
.about__photo {
  position: sticky;
  top: 6rem;
  border-radius: 20px;
  overflow: clip;
  aspect-ratio: 3/4;
  box-shadow:
    0 2px 8px rgba(0,0,0,.06),
    0 12px 40px rgba(0,0,0,.10),
    0 32px 80px rgba(0,0,0,.08);
}

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

.about__photo-firma {
  position: absolute;
  bottom: 1.75rem;
  right: 1.25rem;
  width: 34%;
  height: auto;
  object-fit: contain;
  opacity: .93;
  pointer-events: none;
  z-index: 2;
}

/* ── Content column ── */
.about__content {
  padding-top: .5rem;
}

.about__title {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-wrap: balance;
  color: var(--ink);
}

.about__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink-70);
  margin-bottom: 1.375rem;
}

/* ── Pull quote ── */
.about__quote {
  margin: 2.75rem 0 2.75rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -.03em;
  line-height: 1.35;
  color: var(--ink);
}

/* ── Firma ── */
.about__firma {
  margin-top: 2.5rem;
}

.about__firma-img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: .75rem;
  opacity: .9;
}

.about__firma-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 .2rem;
  letter-spacing: -.01em;
}

.about__firma-role {
  font-size: .8125rem;
  color: var(--ink-40);
  margin: 0;
  letter-spacing: .01em;
}

/* ============================================================
   CASOS DE ÉXITO
   ============================================================ */
/* ---- CASOS: fondo claro (contraste con COAT ⚫ antes y Availability ⚫ después) ---- */
.cases {
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
  overflow: clip;
  background: #fff;
  color: var(--ink);
}

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

/* header */
.cases__header { text-align: center; max-width: 56ch; margin-inline: auto; margin-bottom: clamp(3rem, 5vw, 5rem); }

.cases__header .section-label { color: var(--accent); }

.cases__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.12;
  margin-bottom: 1rem;
  text-wrap: balance;
  color: var(--ink);
}

.cases__subtitle { color: var(--ink-70) !important; }

/* ---- CASOS: Slider horizontal premium ---- */

.cases__slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.cases__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 520ms cubic-bezier(.4,0,.2,1);
  will-change: transform;
  user-select: none;
  cursor: grab;
}
.cases__track.is-dragging {
  cursor: grabbing;
  transition: none;
}

/* Cada slide ocupa ~83% dejando peek del siguiente */
.cs-slide {
  flex: 0 0 calc(83% - .625rem);
  min-width: 0;
  height: 420px;
  display: grid;
  grid-template-columns: 35% 65%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 2px 20px rgba(0,0,0,.06), 0 8px 40px rgba(0,0,0,.04);
}

/* --- Columna izquierda --- */
.cs-slide__left {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  overflow: hidden;
}

/* Degradados por rubro */
.cs-slide__left--1 { background: #0d0805; }
.cs-slide__left--2 { background: #080604; }
.cs-slide__left--3 { background: #060810; }
.cs-slide__left--4 { background: #07030e; }

/* Imagen de fondo del slide */
.cs-slide__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .35;
  filter: grayscale(20%) saturate(0.8);
  z-index: 0;
}

/* Overlay de legibilidad en la parte baja */
.cs-slide__left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
  pointer-events: none;
}

/* Badge de rubro */
.cs-tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  align-self: flex-start;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  padding: .3rem .8rem;
  border-radius: 100px;
}

/* Bloque inferior de la columna izquierda */
.cs-slide__bottom {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.cs-slide__name {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: .2rem;
}

.cs-slide__industry {
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.25rem;
}

.cs-slide__metric {
  display: flex;
  align-items: baseline;
  gap: .625rem;
}

.cs-slide__num {
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 20%, rgba(210,170,255,.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cs-slide__num--symbol {
  font-size: clamp(2.5rem, 5.5vw, 3.5rem);
}

.cs-slide__metric-label {
  font-size: .8125rem;
  line-height: 1.45;
  color: rgba(255,255,255,.55);
}

/* --- Columna derecha --- */
.cs-slide__right {
  background: #fff;
  border-left: 1px solid rgba(0,0,0,.06);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
}

.cs-block__label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: .4rem;
}

.cs-block__text {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--ink-70);
}

/* Caja de resultado — primero y prominente */
.cs-result {
  background: var(--accent-light);
  border: 1px solid rgba(91,0,155,.18);
  border-radius: 12px;
  padding: 1.25rem 1.375rem;
  margin-top: 0;
  transition: box-shadow 300ms ease, border-color 300ms ease;
}

/* Desafío / Estrategia — peso reducido para no competir con el resultado */
.cs-block {
  opacity: .85;
}

@media (hover: hover) {
  .cs-result:hover {
    box-shadow: 0 0 20px rgba(91,0,155,.12), 0 0 0 1px rgba(91,0,155,.3);
    border-color: rgba(91,0,155,.35);
  }
}

.cs-result__label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .4rem;
}

.cs-result__text {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

/* --- Flechas --- */
.cs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(91,0,155,.18);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.cs-arrow--prev { left: 1rem; }
.cs-arrow--next { right: 1rem; }

@media (hover: hover) {
  .cs-arrow:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(91,0,155,.3);
    transform: translateY(-50%) scale(1.08);
  }
}

.cs-arrow:disabled {
  opacity: .28;
  cursor: default;
  pointer-events: none;
}

/* --- Dots --- */
.cs-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-top: 1.75rem;
}

.cs-dot {
  width: 7px;
  height: 7px;
  border-radius: 100px;
  background: rgba(91,0,155,.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 250ms ease, width 280ms cubic-bezier(.4,0,.2,1);
}

.cs-dot.is-active {
  background: var(--accent);
  width: 22px;
}

/* ============================================================
   CUPOS LIMITADOS
   ============================================================ */
.availability {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  position: relative;
  overflow: clip;
  background:
    radial-gradient(ellipse 55% 60% at 50% 50%, rgba(91,0,155,.18) 0%, transparent 65%),
    #06000c;
  color: #fff;
}

/* Glow central que se intensifica en hover de la sección */
.availability::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 50% at 50% 50%, rgba(91,0,155,.22) 0%, transparent 65%);
  pointer-events: none;
  transition: opacity 600ms ease;
  opacity: 1;
}
.availability:hover::before { opacity: 1.6; }

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

/* Contenedor centrado */
.avail__wrap {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.avail__eyebrow {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(180,130,255,.75);
  margin-bottom: 1.5rem;
}

.avail__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 2rem;
}

.avail__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  max-width: 52ch;
  margin-bottom: 2.25rem;
}

.avail__body em {
  font-style: normal;
  color: rgba(200,160,255,.9);
}

/* Botón */
.avail__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.avail__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 2.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #5b009b 0%, #7a2cff 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.01em;
  border: none;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(122,44,255,.4),
    0 8px 32px rgba(91,0,155,.4),
    0 2px 8px rgba(0,0,0,.3);
  transition: transform 300ms cubic-bezier(.4,0,.2,1), box-shadow 300ms ease, scale 300ms;
}

@media (hover: hover) {
  .avail__btn:hover {
    transform: translateY(-3px);
    scale: 1.02;
    box-shadow:
      0 0 0 1px rgba(122,44,255,.6),
      0 12px 48px rgba(91,0,155,.55),
      0 4px 12px rgba(0,0,0,.35);
  }
}

.avail__fine {
  font-size: .8125rem;
  color: rgba(255,255,255,.28);
  max-width: 38ch;
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonials {
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
  overflow: clip;
  background-color: #06000c;
  background-image:
    radial-gradient(ellipse 55% 50% at 50% 100%, rgba(91,0,155,.4)  0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 8%  45%,  rgba(91,0,155,.14) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 92% 75%,  rgba(30,0,60,.55)  0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 0%,   rgba(91,0,155,.08) 0%, transparent 60%);
  color: #fff;
}

.testimonials__deco-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(200px, 24vw, 360px);
  height: 90%;
  pointer-events: none;
  z-index: 0;
}

.testimonials__deco-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: .09;
  filter: grayscale(100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,.5) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,.5) 0%, transparent 100%);
}

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

.testimonials__header { text-align: center; max-width: 56ch; margin-inline: auto; margin-bottom: clamp(3.5rem, 6vw, 5.5rem); }

.testimonials__header .section-label { color: rgba(255,255,255,.45); }

.testimonials__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.12;
  margin-bottom: 1rem;
  text-wrap: balance;
  color: #fff;
}

/* Glow sutil detrás del carrusel */
.testimonials__carousel {
  position: relative;
}
.testimonials__carousel::before {
  content: '';
  position: absolute;
  inset: -40px -100px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(91,0,155,.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Carousel layout */
.testimonials__carousel {
  overflow: hidden;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

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

.testimonials__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: testimonials-scroll 38s linear infinite;
}

/* Pause entire track when hovering any card */
.testimonials__track:has(.testimonial-card:hover) {
  animation-play-state: paused;
}

.testimonial-card {
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.08);
  background: #fff;
  width: 340px;
  flex-shrink: 0;
  transition: transform 400ms cubic-bezier(.22,1,.36,1), box-shadow 400ms ease, border-color 400ms ease;
  position: relative;
  z-index: 1;
}

@media (hover: hover) {
  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 0 0 1.5px rgba(91,0,155,.45),
      0 0 48px rgba(91,0,155,.28),
      0 20px 50px rgba(91,0,155,.18),
      0 4px 16px rgba(0,0,0,.15);
    border-color: rgba(91,0,155,.4);
  }
}

.testimonial-card__stars {
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: .05em;
  margin-bottom: .5rem;
}

.testimonial-card__quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: .75rem;
  font-family: Georgia, serif;
}

.testimonial-card__text {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--ink-70);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ink-06);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .875rem;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--ink);
}

.testimonial-card__role {
  font-size: .75rem;
  color: var(--ink-40);
  margin-top: .1rem;
}

.testimonial-card__company {
  font-size: .8125rem;
  color: var(--ink-40);
}

.testimonials__placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  border: 2px dashed var(--ink-06);
  border-radius: var(--radius-xl);
  color: var(--ink-40);
  font-size: .9375rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg-soft);
}

.faq__header { text-align: center; max-width: 56ch; margin-inline: auto; margin-bottom: 4rem; }

.faq__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.12;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.faq__list {
  max-width: 800px;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid var(--ink-06);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  transition: color .2s ease;
}

.faq__question:hover { color: var(--accent); }

.faq__question svg {
  flex-shrink: 0;
  transition: transform .3s ease;
}

.faq__item.is-open .faq__question svg { transform: rotate(45deg); }
.faq__item.is-open .faq__question { color: var(--accent); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}

.faq__answer-inner {
  padding-bottom: 1.5rem;
  font-size: .9375rem;
  line-height: 1.75;
  color: var(--ink-70);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding-block: clamp(6rem, 12vw, 11rem);
  text-align: center;
  overflow: clip;
  background: var(--ink);
  color: #fff;
  position: relative;
}

.cta-final__bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-final__bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: .18;
  filter: grayscale(100%);
}

.cta-final__bg-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,.4) 0%, rgba(10,10,10,.1) 50%, rgba(10,10,10,.5) 100%);
}

.cta-final__halo {
  position: absolute;
  inset: -60% -20%;
  background:
    radial-gradient(ellipse at 40% 60%, rgba(91,0,155,.35) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(61,0,105,.25) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.cta-final .container { position: relative; z-index: 2; }

.cta-final__quote {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.18;
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  text-wrap: balance;
}

.cta-final__quote em {
  font-style: normal;
  color: var(--accent);
}

.cta-final__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.4);
  padding-block: 3rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__brand {
  font-size: .9375rem;
  font-weight: 600;
  color: #fff;
}

.footer__brand span {
  display: block;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: .15rem;
}

.footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s ease;
}

@media (hover: hover) {
  .footer__links a:hover { color: rgba(255,255,255,.8); }
}

.footer__copy {
  font-size: .8125rem;
  color: rgba(255,255,255,.2);
}

.footer__social {
  display: flex;
  gap: .75rem;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .875rem;
  transition: background .2s ease, color .2s ease;
}

@media (hover: hover) {
  .footer__social a:hover {
    background: rgba(255,255,255,.14);
    color: #fff;
  }
}

/* ============================================================
   FLOATING WA BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--accent);
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  padding: .75rem 1.25rem .75rem .875rem;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(139,92,246,.4);
  text-decoration: none;
  transition: var(--transition);
  transition-property: box-shadow, transform;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}

@media (hover: hover) {
  .wa-float:hover {
    box-shadow: 0 12px 40px rgba(139,92,246,.5);
    transform: translateY(-2px);
  }
}

.wa-float svg { flex-shrink: 0; }

/* ============================================================
   MODAL DE DIAGNÓSTICO
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

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

.modal {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 540px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,.2);
  transform: translateY(24px) scale(.98);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.is-open .modal {
  transform: none;
}

.modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--ink-06);
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-70);
  transition: background .2s ease;
}

.modal__close:hover { background: var(--ink-12); }

.modal { position: relative; }

.modal__eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

.modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: .5rem;
}

.modal__subtitle {
  font-size: .9375rem;
  color: var(--ink-70);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.modal__field {
  margin-bottom: 1.25rem;
}

.modal__label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .5rem;
}

.modal__input,
.modal__textarea,
.modal__select {
  width: 100%;
  font-family: var(--font);
  font-size: .9375rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  resize: none;
}

.modal__input:focus,
.modal__textarea:focus,
.modal__select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,92,246,.12);
}

/* Select custom styling */
.modal__select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23737373' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  cursor: pointer;
}

.modal__select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,92,246,.12);
}

/* Placeholder option (disabled) */
.modal__select option[disabled] {
  color: var(--ink-40);
}

/* Show placeholder color when nothing selected */
.modal__select:invalid,
.modal__select option[value=""] {
  color: var(--ink-40);
}

.modal__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: .9375rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: var(--transition);
  transition-property: background, box-shadow, transform;
}

.modal__btn:hover {
  background: var(--accent-dark);
  box-shadow: 0 8px 24px rgba(91,0,155,.35);
  transform: translateY(-1px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .nav__links,
  .nav__cta .btn-ghost { display: none; }
  .nav__hamburger { display: flex; }
  .metrics__layout { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* COAT ADS: tablet/mobile — collapse diagram to card grid */
@media (max-width: 1023px) {
  .coat__diagram    { height: auto; }
  .coat__svg        { display: none; }
  .coat__hub        { display: none; }
  .coat__pill {
    position: static;
    width: 100%;
    opacity: 1;
    transform: none;
  }
  .coat__diagram.animated .coat__pill { transform: none; }
  .coat__diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-block: 0;
  }
  .coat__pill { max-width: 420px; }
  .coat__diagram-wrap { padding-block: 2rem; }
}

@media (max-width: 767px) {
  .hero__grid           { grid-template-columns: 1fr; gap: 3rem; }
  .hero__photo          { order: -1; aspect-ratio: 3/4; width: 80%; max-width: 340px; max-height: none; margin-inline: auto; }
  .problem__grid        { grid-template-columns: 1fr; }
  .problem__visual      { order: -1; }
  .fit__grid            { grid-template-columns: 1fr; }
  .vs__row              { grid-template-columns: 1fr; }
  .vs__cell--mid        { display: none; }
  .vs__row-header       { display: none; }
  .vs__cell--agency::before { content: 'Agencia: '; font-weight: 600; color: var(--ink-40); }
  .vs__cell--brand::before  { content: 'Yo: '; font-weight: 600; color: var(--accent); }
  .coat__diagram-wrap   { padding-inline: 1rem; }
  .coat__pill           { max-width: 100%; }
  .about__grid          { grid-template-columns: 1fr; }
  .about__photo         { position: static; }
  .about__quote         { font-size: 1.125rem; }
  .about__firma-img     { height: 56px; }
  /* casos slider mobile */
  .cs-slide             { flex: 0 0 calc(90% - .625rem); grid-template-columns: 1fr; height: auto; }
  .cs-slide__left       { min-height: 220px; }
  .cs-arrow             { display: none; }
  .testimonials__carousel { --card-w: 280px; }
  .testimonial-card { width: 280px; }
  .avail__wrap          { padding-inline: 1rem; }
  .footer__inner        { flex-direction: column; text-align: center; }
  .footer__links        { flex-wrap: wrap; justify-content: center; }
  .hero__stats          { flex-wrap: wrap; gap: 1.5rem; }
  .metrics__layout      { grid-template-columns: 1fr; }
  .metrics__deco        { display: none; }
  .metrics__cards       { grid-template-columns: 1fr; }
  .wa-float span        { display: none; }
  .wa-float             { padding: .9375rem; border-radius: 50%; width: 56px; height: 56px; }
}

@media (max-width: 479px) {
  .metric-card__number { font-size: clamp(3rem, 16vw, 4rem); }
}
