/* Liisto v2 — editorial: textura, bloques con acento, Outfit + DM Sans */

:root {
  --v2-black: #0a0a0a;
  --v2-white: #ffffff;
  --v2-purple-900: #3b0764;
  --v2-purple-800: #5b21b6;
  --v2-purple-600: #6d28d9;
  --v2-purple-100: #ede9fe;
  --v2-gray-600: #525252;
  --v2-gray-200: #e5e5e5;
  --v2-gray-100: #f5f5f5;
  --v2-radius: 14px;
  --v2-radius-sm: 10px;
  --v2-shadow: 0 22px 55px rgba(10, 10, 10, 0.08);
  --v2-font: "DM Sans", system-ui, sans-serif;
  --v2-display: "Outfit", var(--v2-font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.v2-skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 10000;
  padding: 0.65rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--v2-white);
  background: var(--v2-purple-800);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(59, 7, 100, 0.35);
}

.v2-skip-link:focus {
  left: 0.75rem;
  outline: 2px solid var(--v2-white);
  outline-offset: 2px;
}

body.v2 {
  margin: 0;
  font-family: var(--v2-font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--v2-black);
  background-color: #f4f4f6;
  background-image: radial-gradient(rgba(10, 10, 10, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-font-smoothing: antialiased;
}

.v2-container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.v2-main {
  min-height: 50vh;
}

/* ——— Header ——— */
.v2-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 10px 40px rgba(10, 10, 10, 0.04);
}

.v2-header--solid {
  background: rgba(255, 255, 255, 0.97);
}

.v2-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
}

.v2-logo img {
  display: block;
  height: 36px;
  width: auto;
}

.v2-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.v2-nav-toggle__bar {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--v2-black);
  border-radius: 1px;
}

.v2-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.v2-nav a {
  text-decoration: none;
  color: var(--v2-gray-600);
  font-weight: 500;
  font-size: 0.95rem;
}

.v2-nav a:hover {
  color: var(--v2-black);
}

@media (min-width: 901px) {
  .v2-nav a:not(.v2-btn) {
    position: relative;
  }

  .v2-nav a:not(.v2-btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--v2-purple-600);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
  }

  .v2-nav a:not(.v2-btn):hover::after {
    transform: scaleX(1);
  }
}

.v2-nav .v2-btn {
  margin-left: 0.25rem;
}

/* El color de .v2-nav a (gris) ganaba a .v2-btn--primary: forzar texto blanco en CTA */
.v2-nav a.v2-btn--primary {
  color: #ffffff;
  font-weight: 600;
}

.v2-nav a.v2-btn--primary:hover,
.v2-nav a.v2-btn--primary:focus-visible {
  color: #ffffff;
}

@media (max-width: 900px) {
  .v2-nav-toggle {
    display: flex;
  }

  .v2-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.25rem 1.5rem;
    background: var(--v2-white);
    border-bottom: 1px solid var(--v2-gray-200);
    gap: 0;
    display: none;
  }

  .v2-nav.is-open {
    display: flex;
  }

  .v2-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--v2-gray-100);
  }

  .v2-nav .v2-btn {
    margin: 0.75rem 0 0;
    text-align: center;
  }
}

/* ——— Buttons ——— */
.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--v2-font);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.v2-btn--sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
}

.v2-btn--primary {
  background: linear-gradient(135deg, var(--v2-purple-600), var(--v2-purple-800));
  color: var(--v2-white);
  box-shadow: 0 12px 32px rgba(91, 33, 182, 0.35);
}

.v2-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(91, 33, 182, 0.4);
  color: var(--v2-white);
}

.v2-btn--ghost {
  background: transparent;
  color: var(--v2-black);
  border: 1px solid var(--v2-gray-200);
}

.v2-btn--ghost:hover {
  border-color: var(--v2-purple-600);
  color: var(--v2-purple-600);
}

/* ——— Hero ——— */
.v2-hero {
  --v2-hero-text: 44%;
  --v2-hero-img: 56%;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 9vw, 6rem) 0 clamp(4.5rem, 11vw, 7rem);
  overflow: hidden;
  min-height: min(82vh, 720px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
  background:
    radial-gradient(ellipse 95% 85% at 0% 42%, rgba(237, 233, 254, 0.5) 0%, transparent 58%),
    radial-gradient(ellipse 75% 55% at 92% 35%, rgba(233, 213, 255, 0.22) 0%, transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #f4f4f7 100%);
}

/*
 * La imagen debe llevar su propio recorte: si solo redondeas el div, un <img> 100%×100%
 * sigue pintando esquinas cuadradas por encima. overflow + radius en el img + clip-path.
 */
.v2-hero__media {
  --v2-hero-img-radius: 18px;
  position: absolute;
  top: clamp(0.65rem, 1.8vw, 1.1rem);
  right: clamp(0.65rem, 2vw, 1.35rem);
  bottom: clamp(0.65rem, 1.8vw, 1.1rem);
  left: var(--v2-hero-text);
  z-index: 0;
  overflow: hidden;
  border-radius: var(--v2-hero-img-radius);
  background: transparent;
  pointer-events: none;
}

.v2-hero__media-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  border-radius: var(--v2-hero-img-radius);
  clip-path: inset(0 round var(--v2-hero-img-radius));
  -webkit-clip-path: inset(0 round var(--v2-hero-img-radius));
}

.v2-hero > .v2-container.v2-hero__inner {
  max-width: none;
  width: 100%;
  margin-inline: 0;
  padding-inline-start: clamp(1.25rem, 5vw, 4rem);
  padding-inline-end: 0;
  box-sizing: border-box;
}

.v2-hero__inner {
  position: relative;
  z-index: 1;
}

.v2-hero__content {
  max-width: min(38rem, calc(44vw - 2.75rem));
  margin-inline-start: 0;
  padding-inline-start: clamp(0.5rem, 1.5vw, 1.25rem);
  padding-inline-end: clamp(0.75rem, 2vw, 1.5rem);
}

@media (max-width: 900px) {
  .v2-hero {
    flex-direction: column;
    align-items: stretch;
    min-height: unset;
    padding-top: clamp(2.5rem, 6vw, 3.5rem);
    padding-bottom: 0;
  }

  .v2-hero__media {
    --v2-hero-img-radius: 16px;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    order: 2;
    align-self: stretch;
    width: auto;
    min-height: min(46vh, 360px);
    margin: 0 clamp(1rem, 4vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
    border-radius: var(--v2-hero-img-radius);
  }

  .v2-hero > .v2-container.v2-hero__inner {
    order: 1;
    padding-inline: clamp(1rem, 4vw, 1.5rem);
    padding-bottom: clamp(1.25rem, 3vw, 2rem);
  }

  .v2-hero__content {
    max-width: none;
    padding-inline: 0;
  }
}

.v2-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-purple-800);
  margin-bottom: 1.1rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: rgba(109, 40, 217, 0.07);
  border: 1px solid rgba(109, 40, 217, 0.14);
}

.v2-hero .v2-eyebrow {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(0.62rem, 1.35vw, 0.72rem);
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(145deg, #4c1d95 0%, #6d28d9 45%, #5b21b6 100%);
  border: 2px solid rgba(255, 255, 255, 0.85);
  padding: 0.55rem 1.15rem;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.15),
    0 6px 22px rgba(59, 7, 100, 0.55),
    0 12px 36px rgba(91, 33, 182, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.v2-hero h1 {
  font-family: var(--v2-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: var(--v2-black);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.v2-hero h1 .v2-accent {
  color: var(--v2-purple-600);
}

.v2-hero__lead {
  margin: 0 0 2rem;
  color: #1a1a1a;
  font-size: 1.1rem;
  max-width: 34rem;
  font-weight: 600;
  line-height: 1.55;
  padding: 1rem 1.15rem;
  border-radius: var(--v2-radius-sm);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow:
    0 8px 28px rgba(10, 10, 10, 0.12),
    0 0 0 1px rgba(109, 40, 217, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.v2-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.15rem;
  margin-bottom: 2rem;
}

.v2-stat {
  padding: 0.9rem 1.15rem;
  border-radius: var(--v2-radius-sm);
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  min-width: min(100%, 11.5rem);
}

.v2-hero .v2-stat {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 10px 32px rgba(10, 10, 10, 0.14),
    0 0 0 1px rgba(109, 40, 217, 0.12),
    0 1px 0 rgba(255, 255, 255, 1) inset;
  backdrop-filter: blur(12px);
}

.v2-hero .v2-stat span {
  color: #404040;
  font-weight: 500;
}

.v2-stat strong {
  display: block;
  font-family: var(--v2-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--v2-black);
  letter-spacing: -0.02em;
}

.v2-stat span {
  font-size: 0.8125rem;
  color: var(--v2-gray-600);
  max-width: 12rem;
  display: block;
  margin-top: 0.2rem;
  line-height: 1.35;
}

.v2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.v2-hero .v2-btn--ghost {
  background: rgba(255, 255, 255, 0.94);
  color: var(--v2-black);
  border: 2px solid rgba(10, 10, 10, 0.16);
  font-weight: 600;
  box-shadow:
    0 6px 22px rgba(10, 10, 10, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.v2-hero .v2-btn--ghost:hover {
  background: #ffffff;
  border-color: var(--v2-purple-600);
  color: var(--v2-purple-800);
  box-shadow:
    0 10px 28px rgba(91, 33, 182, 0.18),
    0 0 0 1px rgba(255, 255, 255, 1) inset;
}

/* ——— Sections ——— */
.v2-section {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  position: relative;
}

.v2-section--muted {
  background: linear-gradient(180deg, #f3f0ff 0%, #ebe4ff 38%, #f4f4f6 100%);
  border-block: 1px solid rgba(10, 10, 10, 0.05);
}

/* ——— FAQ + video a ancho completo (inicio) ——— */
.v2-section--faq {
  padding: 0;
  margin: 0;
  background: #0a0a0a;
  border-block: none;
}

.v2-faq-showcase {
  position: relative;
  width: 100%;
  min-height: min(90vh, 920px);
  overflow: hidden;
}

.v2-faq-showcase__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

.v2-faq-showcase__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 10, 0.15) 0%,
    rgba(10, 10, 10, 0.28) 35%,
    rgba(10, 10, 10, 0.78) 72%,
    rgba(10, 10, 10, 0.88) 100%
  );
  pointer-events: none;
}

.v2-faq-showcase__content {
  /* Capa superpuesta al vídeo (evita que el panel “caiga” fuera si el flujo del documento falla en el servidor) */
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
  width: 100%;
  box-sizing: border-box;
}

.v2-faq-showcase__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, min(100%, 430px));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  width: 100%;
}

.v2-faq-showcase__lead {
  min-height: 1px;
}

.v2-faq-showcase .v2-faq-intro {
  margin: 0 0 1rem;
}

.v2-faq-showcase .v2-faq-intro h2 {
  font-family: var(--v2-display);
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
}

.v2-faq-showcase .v2-kicker--on-dark {
  color: #ddd6fe;
}

.v2-faq-showcase .v2-faq-intro .v2-kicker {
  margin-bottom: 0.4rem;
}

.v2-faq-panel--glass {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.v2-faq-showcase__hint {
  position: absolute;
  bottom: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  margin: 0;
  padding: 0 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  max-width: min(36rem, 92vw);
  line-height: 1.4;
}

.v2-faq-showcase__hint a {
  color: #e9d5ff;
  font-weight: 600;
}

@media (max-width: 960px) {
  .v2-faq-showcase {
    min-height: unset;
  }

  .v2-faq-showcase__video {
    min-height: 88vh;
    object-position: center center;
  }

  .v2-faq-showcase__scrim {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.2) 0%,
      rgba(10, 10, 10, 0.55) 40%,
      rgba(10, 10, 10, 0.9) 100%
    );
  }

  .v2-faq-showcase__content {
    position: relative;
    inset: auto;
    min-height: unset;
    align-items: flex-end;
    padding: 0 0 1.25rem;
    width: auto;
  }

  .v2-faq-showcase__layout {
    grid-template-columns: 1fr;
  }

  .v2-faq-showcase__lead {
    display: none;
  }
}

.v2-faq-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 20px;
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 16px 48px rgba(10, 10, 10, 0.06);
}

.v2-faq-panel .v2-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.v2-accordion__item {
  border: 1px solid rgba(10, 10, 10, 0.09);
  border-radius: 14px;
  background: var(--v2-white);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.v2-accordion__item.is-open {
  border-color: rgba(109, 40, 217, 0.38);
  box-shadow: 0 8px 28px rgba(91, 33, 182, 0.1);
}

.v2-accordion__btn {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1rem 1rem 0.95rem;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.35;
  color: var(--v2-black);
  transition: color 0.15s ease, background 0.15s ease;
}

.v2-accordion__btn:hover {
  color: var(--v2-purple-800);
  background: rgba(109, 40, 217, 0.04);
}

.v2-accordion__btn:focus {
  outline: none;
}

.v2-accordion__btn:focus-visible {
  box-shadow: inset 0 0 0 2px var(--v2-purple-600);
  border-radius: 12px;
}

.v2-accordion__chev {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: var(--v2-purple-100);
  position: relative;
  transition: background 0.2s ease, transform 0.2s ease;
}

.v2-accordion__chev::before,
.v2-accordion__chev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--v2-purple-700);
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.v2-accordion__chev::before {
  width: 11px;
  height: 2px;
}

.v2-accordion__chev::after {
  width: 2px;
  height: 11px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.v2-accordion__item.is-open .v2-accordion__chev::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.v2-accordion__item.is-open .v2-accordion__chev {
  background: rgba(109, 40, 217, 0.22);
}

.v2-accordion__panel[hidden] {
  display: none;
}

.v2-accordion__item.is-open .v2-accordion__panel {
  border-top: 1px solid rgba(10, 10, 10, 0.07);
}

.v2-accordion__inner {
  padding: 0.85rem 1.05rem 1.05rem 3.05rem;
}

.v2-accordion__inner p {
  margin: 0;
  color: var(--v2-gray-600);
  font-size: 0.94rem;
  line-height: 1.62;
}

.v2-section__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.v2-section__head--start {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  max-width: 36rem;
}

.v2-section__head h2 {
  font-family: var(--v2-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.v2-section__head p {
  margin: 0;
  color: var(--v2-gray-600);
}

.v2-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--v2-purple-600);
  margin-bottom: 0.5rem;
}

.v2-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .v2-card-grid {
    grid-template-columns: 1fr;
  }
}

.v2-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 1.75rem 1.5rem 1.75rem 1.35rem;
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-left: 3px solid var(--v2-purple-600);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s ease;
}

.v2-card:hover {
  border-color: rgba(10, 10, 10, 0.1);
  border-left-color: var(--v2-purple-800);
  box-shadow: 0 22px 55px rgba(91, 33, 182, 0.11);
  transform: translateY(-3px);
}

.v2-card h3 {
  font-family: var(--v2-display);
  font-size: 1.15rem;
  margin: 0 0 0.65rem;
}

.v2-card p {
  margin: 0;
  color: var(--v2-gray-600);
  font-size: 0.98rem;
}

.v2-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--v2-black);
  color: var(--v2-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

/* ——— Dónde aplica (conceptos gastronómicos) ——— */
ul.v2-verticals-grid {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-inline-start: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

@media (max-width: 900px) {
  ul.v2-verticals-grid {
    grid-template-columns: 1fr;
  }
}

li.v2-vertical {
  margin: 0;
  padding: 0;
  border-radius: 20px;
  border: 1px solid rgba(10, 10, 10, 0.07);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 252, 0.96) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 40px rgba(10, 10, 10, 0.06);
  transition:
    border-color 0.3s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  list-style: none;
  list-style-type: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

li.v2-vertical::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.35) 0%,
    rgba(109, 40, 217, 0) 42%,
    rgba(91, 33, 182, 0) 58%,
    rgba(109, 40, 217, 0.25) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

li.v2-vertical:hover::before {
  opacity: 1;
}

li.v2-vertical::marker {
  content: none;
}

li.v2-vertical:hover {
  border-color: rgba(109, 40, 217, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 22px 50px rgba(91, 33, 182, 0.14);
  transform: translateY(-4px);
}

.v2-vertical__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #ede9fe 0%, #e4e4e7 50%, #d4d4d8 100%);
}

.v2-vertical__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 35%,
    rgba(10, 10, 10, 0.45) 100%
  );
  pointer-events: none;
}

.v2-vertical__media::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, var(--v2-purple-600), var(--v2-purple-800));
  opacity: 0.92;
}

.v2-vertical__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

li.v2-vertical:hover .v2-vertical__media img {
  transform: scale(1.06);
}

.v2-vertical__body {
  padding: 1.15rem 1.25rem 1.35rem;
  position: relative;
}

.v2-vertical__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109, 40, 217, 0.2), transparent);
  opacity: 0.9;
}

li.v2-vertical h3 {
  font-family: var(--v2-display);
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
  color: var(--v2-black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

li.v2-vertical h3::before {
  content: "";
  width: 4px;
  height: 1.1em;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--v2-purple-600), var(--v2-purple-800));
  flex-shrink: 0;
}

li.v2-vertical p {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.48;
  color: var(--v2-gray-600);
}

@media (prefers-reduced-motion: reduce) {
  li.v2-vertical,
  li.v2-vertical::before {
    transition: none;
  }

  li.v2-vertical:hover {
    transform: none;
  }

  li.v2-vertical:hover .v2-vertical__media img {
    transform: none;
  }
}

/* ——— Integraciones ——— */
.v2-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.v2-pill {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 10, 0.2);
  background: var(--v2-black);
  color: var(--v2-white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.v2-pills-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--v2-gray-600);
  max-width: 36rem;
  margin: 1.25rem auto 0;
}

/* ——— Métricas strip ——— */
.v2-metrics {
  background: linear-gradient(180deg, #0f0f0f 0%, #050505 100%);
  color: var(--v2-white);
  padding: 2.75rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.v2-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.v2-metrics__grid > div {
  position: relative;
  padding: 0 0.75rem;
}

@media (min-width: 769px) {
  .v2-metrics__grid > div:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(167, 139, 250, 0.35), transparent);
  }
}

@media (max-width: 768px) {
  .v2-metrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.v2-metrics__grid strong {
  font-family: var(--v2-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ddd6fe;
  letter-spacing: -0.03em;
}

.v2-metrics__grid span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 0.35rem;
}

/* ——— CTA ——— */
.v2-cta {
  text-align: center;
  padding: clamp(3rem, 6vw, 4.75rem) 1.5rem;
  background: #101010;
  color: var(--v2-white);
  border-radius: 20px;
  margin: 0 auto;
  width: min(1120px, calc(100% - 2.5rem));
  border: 1px solid rgba(139, 92, 246, 0.45);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 32px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.v2-cta h2 {
  font-family: var(--v2-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

.v2-cta p {
  margin: 0 0 1.5rem;
  opacity: 0.92;
  max-width: 32rem;
  margin-inline: auto;
}

.v2-cta .v2-btn--primary {
  background: var(--v2-white);
  color: var(--v2-purple-800);
  box-shadow: none;
}

.v2-cta .v2-btn--primary:hover {
  background: var(--v2-purple-100);
  color: var(--v2-purple-900);
}

.v2-cta--inner {
  margin-top: 3rem;
  width: 100%;
}

/* ——— Page hero (inner pages) ——— */
.v2-page-hero {
  position: relative;
  padding: clamp(2.75rem, 6vw, 4.25rem) 0;
  background: #ffffff;
  color: var(--v2-black);
  text-align: left;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.v2-page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--v2-purple-600), var(--v2-purple-900));
}

.v2-page-hero .v2-container {
  padding-left: calc(1.25rem + 5px);
}

.v2-page-hero h1 {
  font-family: var(--v2-display);
  font-size: clamp(1.85rem, 3.6vw, 2.5rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: min(100%, 22rem);
}

.v2-page-hero p {
  margin: 0;
  color: var(--v2-gray-600);
  font-size: 1.05rem;
  max-width: 36rem;
  line-height: 1.55;
}

.v2-breadcrumb {
  margin-bottom: 1.1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--v2-gray-600);
}

.v2-breadcrumb a {
  color: var(--v2-purple-600);
  text-decoration: none;
}

.v2-breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ——— Contact ——— */
.v2-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

@media (max-width: 900px) {
  .v2-contact-layout {
    grid-template-columns: 1fr;
  }
}

.v2-form-card {
  background: var(--v2-white);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--v2-radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--v2-shadow);
}

.v2-form-card label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--v2-gray-600);
}

.v2-form-card input,
.v2-form-card textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1.1rem;
  border: 1px solid var(--v2-gray-200);
  border-radius: var(--v2-radius-sm);
  font-family: inherit;
  font-size: 1rem;
}

.v2-form-card input:focus,
.v2-form-card textarea:focus {
  outline: none;
  border-color: var(--v2-purple-600);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.2);
}

.v2-form-card textarea {
  min-height: 140px;
  resize: vertical;
}

.v2-form-card .v2-btn {
  width: 100%;
  margin-top: 0.25rem;
}

.v2-contact-aside {
  background: linear-gradient(160deg, var(--v2-purple-800), #1e1b4b);
  color: var(--v2-white);
  border-radius: var(--v2-radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
}

.v2-contact-aside h2 {
  font-family: var(--v2-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.v2-contact-aside p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.55;
}

.v2-contact-aside a.v2-maps {
  margin-top: 1.25rem;
  color: var(--v2-white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ——— Alerts ——— */
.v2-alert {
  padding: 1rem 1.15rem;
  border-radius: var(--v2-radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.v2-alert--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.v2-alert--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ——— Legal tabs (sin Bootstrap) ——— */
.v2-legal {
  padding: clamp(2rem, 4vw, 3rem) 0 4rem;
}

.v2-tabs__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.v2-tabs__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--v2-gray-200);
  padding-bottom: 0.5rem;
}

.v2-tabs__labels label {
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--v2-gray-600);
  border: 1px solid transparent;
}

.v2-tabs__labels label:hover {
  color: var(--v2-purple-600);
}

#v2-tab-terms:checked ~ .v2-tabs__labels label[for="v2-tab-terms"],
#v2-tab-privacy:checked ~ .v2-tabs__labels label[for="v2-tab-privacy"],
#v2-tab-cookies:checked ~ .v2-tabs__labels label[for="v2-tab-cookies"] {
  background: var(--v2-purple-100);
  color: var(--v2-purple-800);
  border-color: rgba(109, 40, 217, 0.25);
}

.v2-tabs > .v2-tab-panel {
  display: none;
}

#v2-tab-terms:checked ~ .v2-tab-panel--terms,
#v2-tab-privacy:checked ~ .v2-tab-panel--privacy,
#v2-tab-cookies:checked ~ .v2-tab-panel--cookies {
  display: block;
}

.v2-legal-scope {
  background: var(--v2-white);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--v2-radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 12px 40px rgba(10, 10, 10, 0.04);
}

.v2-legal-scope .terms-document {
  margin: 0;
}

.v2-legal-scope .document-header {
  border-bottom: 1px solid var(--v2-gray-200);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.v2-legal-scope .document-header h3 {
  font-family: var(--v2-display);
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.v2-legal-scope .document-header p {
  margin: 0;
  color: var(--v2-gray-600);
  font-size: 0.95rem;
}

.v2-legal-scope .terms-section-item {
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.15rem;
  background: var(--v2-gray-100);
  border-radius: var(--v2-radius-sm);
  border-left: 4px solid var(--v2-purple-600);
}

.v2-legal-scope .terms-section-item h4 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.v2-legal-scope .terms-section-item h5 {
  margin: 1rem 0 0.5rem;
  font-size: 0.95rem;
}

.v2-legal-scope p,
.v2-legal-scope li {
  color: var(--v2-gray-600);
  font-size: 0.95rem;
}

.v2-legal-scope a {
  color: var(--v2-purple-600);
  font-weight: 500;
}

/* ——— Footer ——— */
.v2-footer {
  background: #080808;
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 0;
  margin-top: auto;
  border-top: 3px solid var(--v2-purple-600);
}

.v2-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .v2-footer__grid {
    grid-template-columns: 1fr;
  }
}

.v2-footer__brand img {
  height: 32px;
  width: auto;
  opacity: 0.95;
}

.v2-footer__tagline {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 22rem;
}

.v2-footer__title {
  font-family: var(--v2-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--v2-purple-100);
  margin: 0 0 1rem;
}

.v2-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.v2-footer__links li {
  margin-bottom: 0.5rem;
}

.v2-footer__links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
}

.v2-footer__links a:hover {
  color: var(--v2-white);
}

.v2-footer__text {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
}

.v2-footer__text a {
  color: var(--v2-purple-100);
}

.v2-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.65;
}

.v2-footer__bottom p {
  margin: 0;
}

/* ——— About / Features (contenido copiado del sitio clásico) ——— */
.v2-about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

@media (max-width: 900px) {
  .v2-about-split {
    grid-template-columns: 1fr;
  }
}

.v2-prose p {
  color: var(--v2-gray-600);
  margin: 0 0 1rem;
  line-height: 1.65;
}

.v2-split-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 24px 55px rgba(10, 10, 10, 0.11);
  background: var(--v2-white);
}

.v2-split-media img {
  display: block;
  width: 100%;
  height: auto;
}

.v2-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .v2-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .v2-values-grid {
    grid-template-columns: 1fr;
  }
}

.v2-value-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 14px;
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-bottom: 3px solid var(--v2-purple-600);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.v2-value-card:hover {
  box-shadow: 0 18px 45px rgba(91, 33, 182, 0.1);
  transform: translateY(-2px);
}

.v2-value-card--wide {
  grid-column: 1 / -1;
  max-width: 36rem;
  margin-inline: auto;
}

.v2-card__icon--center {
  margin: 0 auto 1rem;
}

.v2-value-card__title {
  font-family: var(--v2-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.v2-value-card__text {
  margin: 0;
  color: var(--v2-gray-600);
  font-size: 0.95rem;
}

.v2-lead-title {
  font-family: var(--v2-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.v2-mt-sm {
  margin-top: 0.5rem;
}

.v2-subsection-title {
  font-family: var(--v2-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.v2-prose-muted {
  color: var(--v2-gray-600);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.v2-prose-muted--spaced {
  margin-bottom: 1.5rem;
}

.v2-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .v2-service-grid {
    grid-template-columns: 1fr;
  }
}

.v2-service-tile {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 1.25rem;
  background: var(--v2-white);
  border-radius: var(--v2-radius);
  border: 1px solid rgba(10, 10, 10, 0.06);
}

.v2-service-tile__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--v2-radius-sm);
  background: var(--v2-purple-100);
  color: var(--v2-purple-800);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.v2-service-tile h3 {
  font-family: var(--v2-display);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.v2-service-tile p {
  margin: 0;
  color: var(--v2-gray-600);
  font-size: 0.95rem;
}

.v2-commit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

@media (max-width: 900px) {
  .v2-commit-grid {
    grid-template-columns: 1fr;
  }
}

.v2-mini-feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.v2-mini-feature__mark {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--v2-purple-100);
  color: var(--v2-purple-800);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-mini-feature__mark::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 9px;
  border: solid var(--v2-purple-800);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -3px;
  box-sizing: border-box;
}

.v2-mini-feature h4 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.v2-mini-feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--v2-gray-600);
}

.v2-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.v2-checklist li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  color: var(--v2-gray-600);
  font-size: 0.95rem;
}

.v2-checklist li::before {
  content: "";
  width: 0.3em;
  height: 0.55em;
  border: solid var(--v2-purple-600);
  border-width: 0 0.12em 0.12em 0;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: -0.1em;
  box-sizing: border-box;
}

.v2-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .v2-feature-grid {
    grid-template-columns: 1fr;
  }
}

.v2-feature-block {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 1.75rem 1.5rem 1.75rem 1.35rem;
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-left: 3px solid var(--v2-purple-600);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.v2-feature-block:hover {
  box-shadow: 0 20px 48px rgba(91, 33, 182, 0.09);
  transform: translateY(-2px);
}

.v2-feature-block h3 {
  font-family: var(--v2-display);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.v2-feature-block p,
.v2-feature-block li {
  color: var(--v2-gray-600);
  font-size: 0.95rem;
}

.v2-feature-block ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

.v2-feature-tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.v2-tag {
  display: block;
  padding: 0.45rem 0.75rem;
  border-radius: var(--v2-radius-sm);
  background: var(--v2-gray-100);
  font-size: 0.85rem;
  color: var(--v2-black);
  border-left: 3px solid var(--v2-purple-600);
}

.v2-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .v2-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .v2-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.v2-benefit-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-top: 3px solid var(--v2-purple-600);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.v2-benefit-card:hover {
  box-shadow: 0 18px 42px rgba(91, 33, 182, 0.1);
  transform: translateY(-2px);
}

.v2-benefit-card .v2-card__icon {
  margin-inline: auto;
}

.v2-benefit-card h4 {
  font-family: var(--v2-display);
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.v2-benefit-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--v2-gray-600);
}

/* ——— Animaciones: hero al cargar + revelado al scroll ——— */
@keyframes v2-header-in {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes v2-hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes v2-hero-visual {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .v2-header {
    animation: v2-header-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .v2-hero__content > * {
    opacity: 0;
    animation: v2-hero-fade-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .v2-hero__content > *:nth-child(1) {
    animation-delay: 0.06s;
  }
  .v2-hero__content > *:nth-child(2) {
    animation-delay: 0.14s;
  }
  .v2-hero__content > *:nth-child(3) {
    animation-delay: 0.22s;
  }
  .v2-hero__content > *:nth-child(4) {
    animation-delay: 0.3s;
  }
  .v2-hero__content > *:nth-child(5) {
    animation-delay: 0.38s;
  }

  .v2-hero__visual {
    opacity: 0;
    animation: v2-hero-visual 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-header,
  .v2-hero__content > *,
  .v2-hero__visual {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .v2-page-hero .v2-breadcrumb,
  .v2-page-hero h1,
  .v2-page-hero > .v2-container > p {
    opacity: 0;
    animation: v2-hero-fade-up 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .v2-page-hero .v2-breadcrumb {
    animation-delay: 0.05s;
  }

  .v2-page-hero h1 {
    animation-delay: 0.12s;
  }

  .v2-page-hero > .v2-container > p {
    animation-delay: 0.2s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-page-hero .v2-breadcrumb,
  .v2-page-hero h1,
  .v2-page-hero > .v2-container > p {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Scroll reveal */
.v2-reveal {
  --v2-reveal-duration: 0.75s;
  --v2-reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --v2-reveal-delay: 0s;
  opacity: 0;
  transform: translateY(36px);
  will-change: opacity, transform, filter;
  transition:
    opacity var(--v2-reveal-duration) var(--v2-reveal-ease) var(--v2-reveal-delay),
    transform var(--v2-reveal-duration) var(--v2-reveal-ease) var(--v2-reveal-delay),
    filter var(--v2-reveal-duration) var(--v2-reveal-ease) var(--v2-reveal-delay);
}

.v2-reveal[data-v2-reveal="fade"] {
  transform: none;
}

.v2-reveal[data-v2-reveal="left"] {
  transform: translateX(-28px);
}

.v2-reveal[data-v2-reveal="right"] {
  transform: translateX(28px);
}

.v2-reveal[data-v2-reveal="scale"] {
  transform: scale(0.93);
}

.v2-reveal[data-v2-reveal="blur"] {
  transform: translateY(18px);
  filter: blur(10px);
}

.v2-reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .v2-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    will-change: auto;
  }
}
