/* ============================================================
   Work Solutions IT — Rediseño "Teal refinado premium" (v3)
   Tipografía: Bricolage Grotesque (display) + Instrument Sans
   (texto) + Instrument Serif Italic (acentos)
   Regla de color: teal = marca / verde = acciones de WhatsApp
   ============================================================ */

:root {
  --bg0: #fafdfc;
  --bg1: #ffffff;
  --bg2: #ecf6f4;
  /* tono real que toma el fondo justo debajo del hero (mezcla de los radial-gradient del body), medido en vivo */
  --hero-fade: #eaf6f5;
  --ink: #04262a;
  --muted: #4e6a68;
  --faint: #7f9997;
  --teal: #0e837c;
  --teal-bright: #17b3a6;
  --teal-tint: rgba(14, 131, 124, 0.08);
  --wa: #25d366;
  --wa-hover: #1da851;
  --line: rgba(6, 42, 46, 0.1);
  --line-strong: rgba(6, 42, 46, 0.17);
  --shell: rgba(6, 42, 46, 0.035);
  --shadow-lg: 0 2px 4px rgba(8, 60, 62, 0.04), 0 18px 40px rgba(8, 60, 62, 0.1), 0 44px 90px rgba(8, 60, 62, 0.08);
  --shadow-sm: 0 1px 2px rgba(8, 60, 62, 0.05), 0 8px 20px rgba(8, 60, 62, 0.07);
  --container: 1180px;
  --nav-side-width: 190px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --font-display: "Bricolage Grotesque", "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 10% 0%, rgba(23, 179, 166, 0.06), transparent 24%),
    radial-gradient(circle at 94% 12%, rgba(14, 131, 124, 0.05), transparent 28%),
    var(--bg0);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: rgba(23, 179, 166, 0.25);
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(100% - 44px, var(--container));
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: 96px;
}

/* ---------- tipografía ---------- */

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 750;
  letter-spacing: -0.032em;
  line-height: 1.03;
  text-wrap: balance;
  color: var(--ink);
  margin: 0;
}

p {
  margin: 0;
}

.serif-accent,
.headline-risk {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--teal);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(14, 131, 124, 0.22);
  background: var(--bg1);
  box-shadow: var(--shadow-sm);
  margin: 0;
}

.eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-bright);
}

.section {
  padding: clamp(88px, 11vw, 150px) 0;
  position: relative;
}

.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin: 20px 0 16px;
}

.section-head .section-kicker,
.section-head .kicker {
  color: var(--muted);
  max-width: 56ch;
}

/* ---------- botones ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 28px;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  border: 0;
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease), color 0.5s var(--ease);
}

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

.btn-primary {
  background: var(--wa);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-primary:hover {
  background: var(--wa-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-ghost {
  background: var(--bg1);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 13px 28px;
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: rgba(14, 131, 124, 0.45);
  color: var(--teal);
  transform: translateY(-2px);
}

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

/* el ícono de WhatsApp va a la izquierda del texto, sin fondo */
.btn .wa-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.btn .wa-icon svg {
  width: 19px;
  height: 19px;
  fill: #ffffff;
}

.btn-ghost .wa-icon svg {
  fill: var(--teal);
}

/* ---------- navegación ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-top: 18px;
  background: transparent;
  pointer-events: none;
}

.floating-nav {
  pointer-events: auto;
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: 9px 10px 9px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(8, 60, 62, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.brand-media {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}

.brand-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.nav-list {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.4s var(--ease), background 0.4s var(--ease);
}

.nav-list a:hover {
  color: var(--teal);
  background: var(--teal-tint);
}

.nav-action {
  flex-shrink: 0;
}

.nav-action,
.nav-menu .nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  background: var(--wa);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.nav-action:hover {
  background: var(--wa-hover);
  transform: translateY(-1px);
}

.nav-action .wa-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.nav-action .wa-icon svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg1);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  pointer-events: auto;
  display: none;
  width: min(1080px, calc(100% - 36px));
  margin: 12px auto 0;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.nav-menu.is-open {
  display: block;
}

.nav-menu .nav-list {
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}

.nav-menu .nav-list a {
  display: block;
  padding: 13px 16px;
  font-size: 16px;
  border-radius: 14px;
}

.nav-menu .nav-action {
  width: 100%;
  padding: 13px 20px;
}

/* ---------- hero cinemático (secuencia por scroll) ---------- */

.hero-cinema {
  position: relative;
}

.hero-sticky {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
}

.hero-grid {
  display: block;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 560px;
}

.hero-copy .eyebrow {
  margin-bottom: 0;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 6.2vw, 5rem);
  font-weight: 780;
  margin: 26px 0 22px;
}

.hero-copy h1 .serif-accent {
  font-size: 1.06em;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 44ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-price {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  align-items: center;
}

.chip {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  border: 1px solid var(--line);
  background: var(--bg1);
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

.chip del {
  color: var(--faint);
}

.chip strong {
  color: var(--ink);
  font-weight: 600;
}

.chip-deal {
  border-color: rgba(14, 131, 124, 0.35);
  background: var(--teal-tint);
}

.chip-deal strong {
  color: var(--teal);
}

.chip-deal b {
  color: var(--ink);
  font-weight: 600;
}

/* secuencia a pantalla completa */

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
}

.hero-video.is-active {
  opacity: 1;
}

/* scrim: aclarado izquierdo para el texto + fundido inferior hacia la siguiente sección */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250, 253, 252, 0.55) 0%, rgba(250, 253, 252, 0) 20%),
    linear-gradient(90deg, rgba(250, 253, 252, 0.9) 0%, rgba(250, 253, 252, 0.72) 26%, rgba(250, 253, 252, 0.35) 48%, rgba(250, 253, 252, 0) 65%),
    linear-gradient(180deg, rgba(234, 246, 245, 0) 72%, rgba(234, 246, 245, 0.45) 88%, var(--hero-fade) 100%);
}

/* barras de historias: track translúcido que se llena de blanco */
.story-bars {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.story-bar {
  width: 72px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(6, 42, 46, 0.25);
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.story-bar:hover {
  transform: scaleY(2);
  background: rgba(6, 42, 46, 0.38);
}

.story-bar span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 0;
  background: #ffffff;
  transition: width 0.15s linear;
}

/* tarjeta de chat decorativa (reutilizable) */

.chat-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 20px;
  width: 250px;
  box-shadow: var(--shadow-lg);
}

.chat-card .bub {
  font-size: 13.5px;
  padding: 9px 13px;
  border-radius: 13px;
  width: fit-content;
  line-height: 1.45;
}

.chat-card .bub-in {
  background: var(--bg2);
  border-bottom-left-radius: 4px;
}

.chat-card .bub-out {
  background: var(--wa);
  color: #ffffff;
  font-weight: 500;
  margin: 8px 0 0 auto;
  border-bottom-right-radius: 4px;
}

.chat-card .who {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}

.chat-card .who .dot {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--wa);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}

.chat-card .who small {
  display: block;
  color: var(--wa);
  font-size: 11px;
}

.chat-card .who strong {
  font-size: 13px;
  font-weight: 600;
}

/* solo visible en móvil, dentro de "El problema" */
.problema-chat {
  display: none;
}

/* centrada antes del botón en el CTA final */
.final-chat {
  margin: 40px auto;
  text-align: left;
  width: min(100%, 400px);
}

/* ---------- problema ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

.problem .split {
  align-items: center;
}

.problem h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  margin-top: 20px;
}

.rich-copy p {
  color: var(--muted);
  padding-left: 22px;
  border-left: 2px solid rgba(14, 131, 124, 0.3);
}

.rich-copy p + p {
  margin-top: 26px;
}

.rich-copy strong {
  color: var(--ink);
  font-weight: 600;
}

/* cluster decorativo de redes sociales — visible en escritorio y móvil */
.problem-head {
  position: relative;
}

/* MÓVIL (base): ocupa el espacio libre a la derecha del titular */
.social-cluster {
  position: absolute;
  right: 0;
  top: -12px;
  width: 178px;
  height: 145px;
  pointer-events: none;
}

/* apariencia compartida (móvil y escritorio) */
.sc-chip {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(8, 60, 62, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: sc-float 6s var(--ease) infinite;
}

.sc-chip svg {
  width: 46%;
  height: 46%;
  fill: #ffffff;
}

.sc-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  animation-delay: -0.4s;
}

.sc-fb {
  background: #1877f2;
  animation-delay: -2.6s;
}

.sc-tt {
  background: #010101;
  animation-delay: -1.5s;
}

/* tamaños + posiciones MÓVIL */
.sc-ig {
  width: 34px;
  height: 34px;
  top: 4%;
  left: 30%;
}

.sc-fb {
  width: 32px;
  height: 32px;
  top: 8%;
  left: 66%;
}

.sc-tt {
  width: 28px;
  height: 28px;
  top: 40%;
  left: 20%;
}

.sc-bubble {
  position: absolute;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg1);
  border: 1px solid var(--line);
  padding: 5px 9px;
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  animation: sc-float 6.5s var(--ease) infinite;
}

.sc-b1 {
  top: 42%;
  left: 54%;
  animation-delay: -3.4s;
}

.sc-b2 {
  display: none;
}

.sc-typing {
  display: flex;
  gap: 3px;
  align-items: center;
  top: 84%;
  left: 60%;
  padding: 7px 9px;
  animation-delay: -5s;
}

.sc-typing i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--faint);
  animation: sc-blink 1.4s ease-in-out infinite;
}

.sc-typing i:nth-child(2) {
  animation-delay: 0.2s;
}

.sc-typing i:nth-child(3) {
  animation-delay: 0.4s;
}

.sc-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(14, 131, 124, 0.4);
  animation: sc-float 5.5s var(--ease) infinite;
}

.sc-d1 {
  top: 20%;
  left: 46%;
  animation-delay: -1.2s;
}

.sc-d2 {
  top: 54%;
  left: 42%;
  width: 5px;
  height: 5px;
  animation-delay: -3s;
}

.sc-d3 {
  top: 60%;
  left: 80%;
  animation-delay: -0.6s;
}

.sc-d4 {
  top: 30%;
  left: 74%;
  width: 6px;
  height: 6px;
  animation-delay: -4.2s;
}

@keyframes sc-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes sc-blink {
  0%,
  60%,
  100% {
    opacity: 0.35;
  }
  30% {
    opacity: 1;
  }
}

/* ESCRITORIO: se ancla al espacio libre a la derecha del titular */
@media (min-width: 961px) {
  .social-cluster {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 290px;
    height: 320px;
    max-width: none;
    margin: 0;
  }

  .sc-ig {
    width: 49px;
    height: 49px;
    top: 12%;
    left: 34%;
  }

  .sc-fb {
    width: 47px;
    height: 47px;
    top: 22%;
    left: 62%;
  }

  .sc-tt {
    width: 42px;
    height: 42px;
    top: 34%;
    left: 24%;
  }

  .sc-bubble {
    font-size: 13px;
    padding: 9px 14px;
    border-radius: 16px;
    border-bottom-left-radius: 5px;
  }

  .sc-b1 {
    top: 60%;
    left: 58%;
  }

  .sc-typing {
    top: 84%;
    left: 40%;
    padding: 12px 14px;
  }

  .sc-typing i {
    width: 6px;
    height: 6px;
  }

  .sc-dot {
    width: 9px;
    height: 9px;
  }

  .sc-d1 {
    top: 12%;
    left: 62%;
  }

  .sc-d2 {
    top: 46%;
    left: 46%;
    width: 7px;
    height: 7px;
  }

  .sc-d3 {
    top: 74%;
    left: 72%;
  }

  .sc-d4 {
    top: 90%;
    left: 24%;
    width: 7px;
    height: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sc-chip,
  .sc-bubble,
  .sc-typing i,
  .sc-dot {
    animation: none;
  }
}

/* ---------- beneficios (bento) ---------- */

.light-band {
  background: transparent;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.mini-card {
  grid-column: span 3;
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 7px;
  margin: 0;
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 131, 124, 0.35);
  box-shadow: var(--shadow-sm);
}

.mini-card-core {
  background: var(--bg1);
  border-radius: 16px;
  padding: 26px 24px;
  height: 100%;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), 0 1px 2px rgba(8, 60, 62, 0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-card--big {
  grid-column: span 6;
}

.mini-card--big .mini-card-core {
  padding: 34px 32px;
  justify-content: flex-end;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

.mini-card--big .card-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(70px);
  background: rgba(23, 179, 166, 0.1);
  top: -140px;
  right: -80px;
  pointer-events: none;
}

.mini-card h3 {
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.mini-card--big h3 {
  font-size: 24px;
}

.mini-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.mini-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin-bottom: 8px;
  border: 1px solid rgba(14, 131, 124, 0.22);
  background: var(--teal-tint);
  display: grid;
  place-items: center;
}

.mini-card-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--teal);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- incluye ---------- */

.includes {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg2), var(--bg0));
}

.includes-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.includes-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 20px 0 14px;
}

.includes-image {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 50px 0 25px;
}

.includes-content > p {
  color: var(--muted);
  margin-bottom: 0;
}

.include-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--bg1);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-weight: 550;
  font-size: 15.5px;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}

.include-item:hover {
  border-color: rgba(14, 131, 124, 0.4);
  transform: translateY(-2px);
}

.include-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.include-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- oferta ---------- */

.offer {
  position: relative;
  overflow: hidden;
}

.offer::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  bottom: -220px;
  right: -120px;
  border-radius: 50%;
  filter: blur(90px);
  background: rgba(23, 179, 166, 0.09);
  pointer-events: none;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.offer-copy h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin: 20px 0 20px;
}

.offer-copy > p {
  color: var(--muted);
  max-width: 52ch;
}

.offer-copy > p b {
  color: var(--ink);
}

.headline-rotator {
  display: inline-block;
  min-width: 3.6ch;
  color: var(--teal);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.headline-rotator.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

/* tarjeta de precio */

.price-card {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 8px;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(23, 179, 166, 0.14);
}

.price-card-core {
  background: var(--bg1);
  border-radius: 21px;
  padding: 38px 36px 36px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.7);
}

.price-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.price-head .price-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.price-head p {
  font-size: 13.5px;
  color: var(--muted);
  max-width: 24ch;
}

.badge-live {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--teal);
  border: 1px solid rgba(14, 131, 124, 0.32);
  background: var(--teal-tint);
  padding: 7px 13px;
  border-radius: 999px;
  white-space: nowrap;
}

.badge-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
}

.price-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 26px;
}

.price-final {
  display: flex;
  align-items: flex-start;
  line-height: 0.9;
}

.price-final .cur {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 2rem;
  color: var(--teal);
  margin: 8px 4px 0 0;
}

.price-final .num {
  font-family: var(--font-display);
  font-weight: 780;
  font-size: clamp(4.6rem, 6vw, 5.8rem);
  letter-spacing: -0.045em;
  color: var(--ink);
}

.price-final small {
  align-self: flex-end;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 6px 10px;
  font-weight: 500;
}

.price-ladder {
  display: grid;
  gap: 12px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.price-ladder span {
  display: grid;
  gap: 1px;
}

.price-ladder i {
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 600;
}

.price-ladder del {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--faint);
}

.price-ladder b {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 650;
  color: var(--ink);
}

.coupon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
  padding: 15px 20px;
  border: 1px dashed rgba(14, 131, 124, 0.5);
  border-radius: 14px;
  background: var(--teal-tint);
}

.coupon .code {
  display: grid;
  gap: 1px;
}

.coupon .code span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.coupon .code b {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  color: var(--teal);
  font-size: 16px;
  font-weight: 700;
}

.coupon .drop {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

.coupon .drop small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 12px;
}

.price-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 11px;
}

.price-includes li {
  display: flex;
  gap: 11px;
  align-items: center;
  color: var(--muted);
  font-size: 14.5px;
}

.price-includes li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-color: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---------- proceso ---------- */

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 54px 0 0;
  list-style: none;
  padding: 0;
  counter-reset: none;
}

.step-visual {
  position: relative;
  height: 150px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg2), #f3faf8);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.step-num {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--teal);
  background: var(--bg1);
  padding: 3px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.process-list h3 {
  font-size: 17.5px;
  font-weight: 650;
  margin-bottom: 8px;
}

.process-list li > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* mini escenas del proceso */

.sv-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  background: var(--bg1);
  border: 1px solid rgba(14, 131, 124, 0.32);
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.sv-badge svg {
  width: 11px;
  height: 11px;
  stroke: var(--teal);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sv-doc {
  width: 130px;
  background: var(--bg1);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  display: grid;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.sv-doc .sq {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--teal-tint);
  border: 1px solid rgba(14, 131, 124, 0.28);
  margin-bottom: 2px;
}

.sv-doc i {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: var(--bg2);
}

.sv-browser {
  width: 150px;
  background: var(--bg1);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.sv-browser .bar {
  display: flex;
  gap: 4px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
}

.sv-browser .bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg2);
}

.sv-browser .bar i:first-child {
  background: var(--teal-bright);
}

.sv-browser .body {
  padding: 10px;
  display: grid;
  gap: 6px;
}

.sv-browser .h {
  height: 26px;
  border-radius: 6px;
  background: linear-gradient(120deg, var(--teal-tint), var(--bg2));
}

.sv-browser .cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}

.sv-browser .cols i {
  height: 18px;
  border-radius: 5px;
  background: var(--bg2);
}

.sv-swatches {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  gap: 5px;
}

.sv-swatches i {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

.sv-swatches .s1 { background: var(--teal); }
.sv-swatches .s2 { background: var(--ink); }
.sv-swatches .s3 { background: var(--wa); }

.sv-url {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg1);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.sv-url svg {
  width: 13px;
  height: 13px;
  stroke: var(--teal);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sv-chat {
  display: grid;
  gap: 7px;
  width: 150px;
}

.sv-chat .bub {
  font-size: 12px;
  padding: 7px 11px;
  border-radius: 11px;
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

.sv-chat .bub-in {
  background: var(--bg1);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}

.sv-chat .bub-out {
  background: var(--wa);
  color: #ffffff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

/* ---------- portafolio ---------- */

.portfolio-shell {
  position: relative;
}

.portfolio-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.portfolio-controls {
  display: flex;
  gap: 8px;
}

.portfolio-nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  background: var(--bg1);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}

.portfolio-nav:hover {
  background: var(--teal-tint);
  transform: translateY(-2px);
}

.portfolio-nav svg {
  width: 17px;
  height: 17px;
  stroke: var(--ink);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-viewport {
  margin-top: 44px;
}

.portfolio-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}

.portfolio-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  cursor: pointer;
  text-align: left;
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 7px;
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 131, 124, 0.38);
  box-shadow: var(--shadow-sm);
}

.portfolio-media {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--bg1);
}

.portfolio-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
  transition: transform 0.8s var(--ease);
}

.portfolio-card:hover .portfolio-media img {
  transform: scale(1.04);
}

.portfolio-meta {
  display: block;
  padding: 16px 14px 12px;
}

.portfolio-meta span {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}

.portfolio-meta strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 18px;
  letter-spacing: -0.015em;
  margin: 5px 0 3px;
  color: var(--ink);
}

.portfolio-meta small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

/* modal del portafolio */

.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.portfolio-modal.is-open {
  display: block;
}

.portfolio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 38, 42, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.portfolio-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1060px, calc(100% - 32px));
  height: calc(100% - 48px);
  margin: 24px auto;
  background: var(--bg0);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.portfolio-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--bg1);
}

.portfolio-modal-header h2 {
  font-size: 22px;
  font-weight: 700;
}

.portfolio-modal-header .eyebrow {
  box-shadow: none;
  margin-bottom: 6px;
}

.portfolio-modal-actions {
  display: flex;
  gap: 8px;
}

.modal-tool {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--bg1);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.modal-tool:hover {
  background: var(--teal-tint);
  border-color: rgba(14, 131, 124, 0.4);
}

.modal-reset {
  font-size: 13px;
}

.portfolio-modal-stage {
  flex: 1;
  overflow: auto;
  padding: 24px;
  display: block;
  background:
    radial-gradient(circle at 50% 0%, rgba(23, 179, 166, 0.05), transparent 40%),
    var(--bg0);
}

#portfolio-modal-image {
  margin: 0 auto;
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform: scale(var(--portfolio-zoom, 1));
  transform-origin: top center;
  transition: transform 0.3s var(--ease);
}

/* ---------- prueba social ---------- */

.proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

.proof-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 20px 0 16px;
}

.proof-copy > p {
  color: var(--muted);
}

.proof-stats {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.proof-stats > span {
  display: grid;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.proof-stats strong {
  font-weight: 650;
}

.proof-stats small {
  color: var(--muted);
}

.proof-panel {
  display: grid;
  gap: 14px;
}

.proof-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--teal);
  border: 1px solid rgba(14, 131, 124, 0.32);
  background: var(--teal-tint);
  padding: 7px 13px;
  border-radius: 999px;
}

.quote-grid {
  display: grid;
  gap: 14px;
}

.quote-grid figure {
  margin: 0;
}

.quote-grid blockquote {
  margin: 0;
}

.quote-feature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  padding: 45px 34px;
  border-left: 2px solid var(--teal);
  background: linear-gradient(90deg, var(--teal-tint), transparent 60%);
  border-radius: 0 20px 20px 0;
}

.quote-grid figure:not(.quote-feature) {
  background: var(--bg1);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.quote-grid figure:not(.quote-feature) blockquote {
  color: var(--muted);
  font-size: 15px;
}

.quote-grid figcaption {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
  display: grid;
}

.quote-grid figure:not(.quote-feature) figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote-who {
  display: grid;
}

.quote-feature figcaption span,
.quote-who span {
  color: var(--ink);
  font-weight: 600;
}

.quote-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(14, 131, 124, 0.22);
  background: var(--teal-tint);
  display: grid;
  place-items: center;
}

.quote-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--teal);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 721px) {
  .quote-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quote-feature {
    grid-column: 1 / -1;
  }
}

/* ---------- contacto ---------- */

.contact {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg2), var(--bg0));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.contact-grid h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin: 20px 0 16px;
}

.contact-grid > div > p {
  color: var(--muted);
}

.contact-grid p b {
  color: var(--teal);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  background: var(--bg1);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 15px 18px;
  color: var(--ink);
  font-size: 15px;
  resize: vertical;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--faint);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(14, 131, 124, 0.55);
  box-shadow: 0 0 0 4px rgba(14, 131, 124, 0.1);
}

.contact-form .btn {
  margin-top: 6px;
}

/* ---------- faq ---------- */

.faq-shell {
  max-width: 820px;
  margin-inline: auto;
}

.faq-shell .section-head {
  text-align: center;
}

.faq-icon {
  display: none;
}

.faq-helper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.faq-helper span {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--bg1);
  padding: 7px 14px;
  border-radius: 999px;
}

.accordion {
  margin-top: 40px;
  border-top: 1px solid var(--line-strong);
  text-align: left;
}

.accordion details {
  border-bottom: 1px solid var(--line-strong);
}

.accordion summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px 6px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  transition: color 0.4s var(--ease);
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary:hover {
  color: var(--teal);
}

.accordion summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--muted);
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease);
}

.accordion details[open] summary::after {
  transform: rotate(45deg);
  background: var(--teal-tint);
  border-color: rgba(14, 131, 124, 0.45);
  color: var(--teal);
}

.accordion details p {
  padding: 0 46px 26px 6px;
  color: var(--muted);
}

/* ---------- cta final ---------- */

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 13vw, 180px) 0;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(90px);
  background: rgba(23, 179, 166, 0.1);
  pointer-events: none;
}

.final-box {
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-box h2 {
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  max-width: 20ch;
  margin: 22px auto 34px;
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 34px;
  background: var(--bg1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 44px;
}

.footer-logo-card {
  width: 90%;
  height: 132px;
  background: var(--bg1);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}

@media (min-width: 961px) {
  .footer-logo-card {
    width: 70%;
    margin-left: 0;
  }
}

.footer-logo-card img {
  height: 112px;
  width: auto;
  max-width: 86%;
  object-fit: contain;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 34ch;
}

.footer-info h2,
.footer-contact h2 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 18px;
  font-weight: 600;
}

.footer-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-info li span {
  display: block;
  font-size: 12.5px;
  color: var(--faint);
}

.footer-info li strong {
  font-weight: 550;
  font-size: 14.5px;
}

.footer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-actions .btn-primary {
  grid-column: 1 / -1;
}

.footer-actions .btn-ghost {
  justify-content: center;
  padding: 13px 18px;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 13px;
}

/* ---------- widget flotante de WhatsApp ---------- */

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}

.floating-whatsapp {
  pointer-events: auto;
}

.whatsapp-menu {
  display: grid;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.whatsapp-widget.is-open .whatsapp-menu {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.whatsapp-menu a {
  display: block;
  background: var(--bg1);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), color 0.4s var(--ease);
}

.whatsapp-menu a:hover {
  border-color: rgba(37, 211, 102, 0.5);
  color: var(--wa);
  transform: translateY(-1px);
}

.floating-whatsapp {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: var(--wa);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.32);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease);
}

.floating-whatsapp:hover {
  background: var(--wa-hover);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp:active {
  transform: scale(0.96);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: wa-pulse 2.6s var(--ease) infinite;
}

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

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

/* ---------- reveals ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .floating-whatsapp::after {
    animation: none;
  }

  .hero-video {
    transition: none;
  }

  .story-bar span {
    transition: none;
  }
}

/* ---------- responsive ---------- */

@media (max-width: 1023px) {
  .nav-list-desktop,
  .nav-action-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .nav-menu {
    display: none !important;
  }

  /* lados del nav con el mismo ancho para que los enlaces queden centrados */
  .floating-nav .nav-brand,
  .floating-nav .nav-action-desktop {
    width: var(--nav-side-width);
    flex-shrink: 0;
  }

  .floating-nav .nav-action-desktop {
    justify-content: center;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .includes-grid,
  .offer-grid,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .mini-card,
  .mini-card--big {
    grid-column: span 12;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .include-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .price-card-core {
    padding: 30px 26px 28px;
  }

  .price-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .price-ladder {
    padding-left: 0;
    border-left: 0;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    width: 100%;
  }
}

@media (max-width: 720px) {

  .problema-chat {
    display: block;
    margin: 60px auto 0;
    width: min(100%, 400px);
  }

  .hero-sticky {
    padding: 130px 0 70px;
  }

  /* en móvil el texto ocupa todo el ancho: scrim vertical más fuerte */
  /* sin velo superior en móvil: radial lateral izquierdo (detrás del copy)
     + fundido menta solo en el borde inferior */
  .hero-scrim {
    background:
      radial-gradient(ellipse 170% 80% at 0% 75%, rgba(250, 253, 252, 1) 0%, rgba(250, 253, 252, 0.88) 40%, rgba(250, 253, 252, 0.42) 62%, rgba(250, 253, 252, 0) 78%),
      linear-gradient(180deg, rgba(234, 246, 245, 0) 74%, rgba(234, 246, 245, 0.5) 90%, var(--hero-fade) 100%);
  }

  .hero-video {
    object-position: 62% center;
  }

  .story-bars {
    bottom: 14px;
  }

  .story-bar {
    width: 54px;
  }
}

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

  .hero-actions .btn {
    width: 100%;
  }

  .portfolio-card {
    flex-basis: 260px;
  }

  .portfolio-modal-panel {
    width: calc(100% - 16px);
    height: calc(100% - 24px);
    margin: 12px auto;
    border-radius: 18px;
  }

  .portfolio-modal-header {
    padding: 14px 16px;
  }
}
