/* ══ RESET & VARIABLES ══════════════════════════ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --azul: #8DA8C4;
      --naranja: #F24829;
      --rosa-vivo: #F24899;
      --rosa: #FCD1E4;
      --amarillo: #FFF602;
      --negro: #111111;
      --bg: #ffffff;
      --blanco: #fff;
      --gris: #F8F4F2;
      --grad: linear-gradient(90deg, #F24829, #F24899);
      --card-bg: rgba(0,0,0,.02);
      --card-br: rgba(0,0,0,.09);
      --T: 'p22-slogan', Georgia, serif;
      --M: 'Montserrat', 'DM Sans', sans-serif;
      --B: 'DM Sans', sans-serif;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: var(--B);
      background: var(--bg);
      color: #111111;
      overflow-x: hidden;
      line-height: 1.65;
      -webkit-text-size-adjust: 100%;
      font-size: 16px;
    }

    img,
    svg,
    video {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
    }

    button {
      cursor: pointer;
      font-family: var(--B);
    }

    /* iOS: evita auto-zoom en inputs — font-size mínimo 16px */
    input,
    select,
    textarea {
      font-size: 16px !important;
    }

    /* Safe area para dispositivos con notch */
    :root {
      --sab: env(safe-area-inset-bottom, 0px);
      --sat: env(safe-area-inset-top, 0px);
    }

    /* ══ UTILITIES ══════════════════════════════════ */
    .grad-text {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .section-label {
      display: inline-block;
      font-family: var(--M);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #F24829;
      background: linear-gradient(90deg, rgba(242, 72, 41, .10), rgba(242, 72, 153, .08));
      border: 1px solid rgba(242, 72, 153, .3);
      padding: .28rem .8rem;
      border-radius: 2px;
      margin-bottom: .9rem;
    }

    .section-title {
      font-family: var(--T);
      font-weight: 800;
      font-size: clamp(1.65rem, 4.5vw, 2.9rem);
      line-height: 1.08;
      letter-spacing: -.02em;
      margin-bottom: .85rem;
    }

    .section-sub {
      font-size: 1rem;
      color: rgba(0,0,0,.55);
      max-width: 520px;
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    section {
      padding: 4rem 1.25rem;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: var(--grad);
      color: #111;
      text-decoration: none;
      font-family: var(--T);
      font-weight: 700;
      font-size: .82rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: .85rem 1.6rem;
      border-radius: 5px;
      transition: opacity .2s, transform .2s, box-shadow .2s;
      border: none;
      min-height: 48px;
      -webkit-tap-highlight-color: transparent;
    }

    .btn-primary:hover {
      opacity: .88;
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(242, 72, 153, .38);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: transparent;
      color: #111;
      text-decoration: none;
      font-family: var(--T);
      font-weight: 700;
      font-size: .82rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: .85rem 1.6rem;
      border: 1px solid rgba(0,0,0,.20);
      border-radius: 5px;
      transition: border-color .2s, background .2s;
      min-height: 48px;
      -webkit-tap-highlight-color: transparent;
    }

    .btn-ghost:hover {
      border-color: var(--rosa-vivo);
      background: rgba(242, 72, 153, .07);
    }

    /* ══ NAV ════════════════════════════════════════ */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 1rem;
      padding-left: calc(1rem + env(safe-area-inset-left, 0px));
      padding-right: calc(1rem + env(safe-area-inset-right, 0px));
      height: 64px;
      margin-top: env(safe-area-inset-top, 0px);
      background: rgba(255,255,255,.97);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(0,0,0,.07);
      transition: background .3s, box-shadow .3s;
    }

    nav.scrolled {
      background: rgba(255,255,255,1);
      box-shadow: 0 2px 20px rgba(0, 0, 0, .4);
    }

    /* Mobile: logo centrado absolutamente dentro del nav */
    @media(max-width:1023px) {
      .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
      }
    }

    .nav-logo {
      font-family: var(--T);
      font-weight: 800;
      font-size: .9rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      text-decoration: none;
      color: #111;
      flex-shrink: 0;
      line-height: 1;
      /* Touch target */
      padding: .5rem 0;
    }

    .nav-logo span {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Right side: only hamburger on mobile */
    .nav-right {
      display: flex;
      align-items: center;
      gap: .6rem;
    }

    .nav-links {
      display: none;
    }

    .nav-links a {
      font-family: var(--T);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none;
      color: rgba(0,0,0,.55);
      transition: color .2s;
      padding: .4rem .15rem;
    }

    .nav-links a:hover {
      color: #111;
    }

    /* Desktop CTA — hidden on mobile */
    .nav-cta {
      display: none;
      align-items: center;
      gap: .35rem;
      background: var(--grad);
      color: #111;
      text-decoration: none;
      font-family: var(--T);
      font-weight: 700;
      font-size: .68rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: .55rem 1rem;
      border-radius: 4px;
      white-space: nowrap;
      border: none;
      transition: opacity .2s, transform .2s;
      flex-shrink: 0;
      line-height: 1.2;
    }

    .nav-cta:hover {
      opacity: .85;
      transform: translateY(-1px);
    }

    /* Hamburger — mobile only */
    .nav-burger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      /* min 44px tap target */
      background: rgba(0,0,0,.05);
      border: 1px solid rgba(0,0,0,.1);
      border-radius: 8px;
      padding: 0;
      cursor: pointer;
      flex-shrink: 0;
      transition: background .2s;
      -webkit-tap-highlight-color: transparent;
    }

    .nav-burger:hover {
      background: rgba(0,0,0,.09);
    }

    .nav-burger span {
      display: block;
      width: 18px;
      height: 1.5px;
      background: #111;
      border-radius: 2px;
      margin: 0 auto;
      transition: transform .32s cubic-bezier(.4, 0, .2, 1), opacity .2s;
    }

    .nav-burger[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }

    .nav-burger[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .nav-burger[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    /* ══ MOBILE DRAWER ═══════════════════════════════ */
    .nav-drawer {
      position: fixed;
      inset: 0;
      z-index: 199;
      background: #ffffff;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
      padding: 5rem 2rem 2rem;
      /* Animation */
      opacity: 0;
      pointer-events: none;
      transform: translateY(-12px);
      transition: opacity .3s cubic-bezier(.4, 0, .2, 1), transform .3s cubic-bezier(.4, 0, .2, 1);
      /* safe area */
      padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
    }

    .nav-drawer.open {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
    }

    .nav-drawer-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      gap: .25rem;
      margin-bottom: 2rem;
    }

    .nav-drawer a {
      font-family: var(--T);
      font-weight: 800;
      font-size: 1.6rem;
      letter-spacing: .04em;
      text-transform: uppercase;
      text-decoration: none;
      color: rgba(0,0,0,.60);
      transition: color .18s, transform .18s;
      padding: .65rem 1.5rem;
      width: 100%;
      text-align: center;
      border-radius: 8px;
      -webkit-tap-highlight-color: transparent;
    }

    .nav-drawer a:hover,
    .nav-drawer a:focus {
      color: #111;
      background: rgba(0,0,0,.04);
    }

    .nav-drawer a:active {
      transform: scale(.97);
    }

    .drawer-cta {
      background: var(--grad) !important;
      color: #fff !important;
      padding: 1rem 2rem !important;
      border-radius: 8px !important;
      font-size: 1rem !important;
      width: 100%;
      max-width: 320px;
      margin-top: .5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    /* Decorative line inside drawer */
    .drawer-divider {
      width: 40px;
      height: 1px;
      background: rgba(0,0,0,.1);
      margin: .75rem auto;
    }

    @media(min-width:768px) {
      nav {
        padding: 0 2.5rem;
        height: 60px;
      }

      .nav-logo {
        font-size: 1rem;
      }

      .nav-links {
        display: flex;
        gap: 1.6rem;
      }

      .nav-burger {
        display: none;
      }

      .nav-cta {
        display: inline-flex;
      }
    }

    @media(min-width:1024px) {
      nav {
        padding: 0 5rem;
      }

      .nav-links {
        gap: 2rem;
      }

      .nav-cta {
        font-size: .72rem;
        padding: .6rem 1.2rem;
      }
    }

    @media(min-width:1280px) {
      nav {
        padding: 0 7rem;
      }
    }

    /* ══ HERO ════════════════════════════════════════ */
    #hero {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 5rem 1.25rem 2.5rem;
      position: relative;
      overflow: hidden;
    }

    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
    }

    .hero-orb {
      position: absolute;
      border-radius: 50%;
      z-index: 0;
      animation: floatOrb 8s ease-in-out infinite alternate;
    }

    .hero-orb-1 {
      top: -25%;
      right: -8%;
      width: 68vw;
      height: 68vw;
      background: radial-gradient(circle at 55% 45%, #c72010 0%, #F24829 25%, #F24899 55%, transparent 74%);
      filter: blur(1px);
      opacity: .92;
      animation-duration: 7s;
    }

    .hero-orb-2 {
      bottom: -22%;
      left: -8%;
      width: 52vw;
      height: 52vw;
      background: radial-gradient(circle, #8DA8C4 0%, #a8c8e8 40%, transparent 68%);
      filter: blur(5px);
      opacity: .5;
      animation-duration: 10s;
      animation-direction: alternate-reverse;
    }

    .hero-orb-3 {
      bottom: 8%;
      right: 18%;
      width: 28vw;
      height: 28vw;
      background: radial-gradient(circle, rgba(252, 209, 228, .32) 0%, transparent 65%);
      filter: blur(8px);
      opacity: .8;
      animation-duration: 6s;
    }

    @keyframes floatOrb {
      from {
        transform: scale(1) translate(0, 0);
      }

      to {
        transform: scale(1.14) translate(1.5%, -1.5%);
      }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    @media(min-width:1024px) {
      .hero-content { text-align: left; }
    }

    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }

    @media(min-width:1024px) {
      .hero-sub { margin-left: 0; margin-right: 0; }
      .hero-actions { justify-content: flex-start; }
    }

    .hero-eyebrow {
      display: inline-block;
      font-family: var(--M);
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #111;
      background: linear-gradient(90deg, rgba(242, 72, 41, .15), rgba(242, 72, 153, .12));
      border: 1px solid rgba(242, 72, 153, .35);
      padding: .3rem .8rem;
      border-radius: 2px;
      margin-bottom: 1.2rem;
      max-width: 100%;
      word-break: break-word;
    }

    .hero-title {
      font-family: var(--T);
      font-weight: 900;
      font-size: clamp(3.2rem, 10vw, 4.8rem);
      line-height: 1.02;
      letter-spacing: -.02em;
      margin-bottom: 1.3rem;
    }

    .hero-sub {
      font-size: clamp(1rem, 2.5vw, 1.12rem);
      font-weight: 300;
      color: rgba(0,0,0,.60);
      max-width: 520px;
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
      font-size: .8rem;
      padding: .85rem 1.5rem;
    }

    .hero-trust {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem .75rem;
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(0,0,0,.1);
    }

    /* FIX 1a: drop-shadow para contraste sobre orbes animados */
    .trust-stat .num {
      font-family: var(--T);
      font-weight: 800;
      font-size: 1.3rem;
      line-height: 1;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, .8));
    }

    .trust-stat .lbl {
      font-size: .63rem;
      color: rgba(0,0,0,.45);
      letter-spacing: .06em;
      text-transform: uppercase;
      line-height: 1.4;
    }

    /* FIX 1b: fondo semitransparente en mobile para garantizar contraste */
    @media(max-width:767px) {
      .trust-stat {
        background: rgba(0,0,0,.04);
        padding: .8rem;
        border-radius: 8px;
        border: 1px solid rgba(0,0,0,.07);
      }
    }

    .urgency-ribbon {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      flex-wrap: wrap;
      background: rgba(255, 246, 2, .08);
      border: 1px solid rgba(255, 246, 2, .22);
      border-radius: 4px;
      padding: .32rem .8rem;
      font-size: .7rem;
      color: var(--naranja);
      font-weight: 500;
      margin-bottom: .9rem;
      animation: blinkBorder 2.5s ease-in-out infinite;
      max-width: 100%;
    }

    .urgency-ribbon .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--naranja);
      animation: blink 1.2s ease-in-out infinite;
      flex-shrink: 0;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .2
      }
    }

    @keyframes blinkBorder {

      0%,
      100% {
        border-color: rgba(255, 246, 2, .22)
      }

      50% {
        border-color: rgba(255, 246, 2, .55)
      }
    }

    @media(min-width:640px) {
      #hero {
        padding: 7rem 2rem 3rem;
      }

      .hero-trust {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
      }

      .trust-stat .num {
        font-size: 1.85rem;
      }

      .trust-stat .lbl {
        font-size: .68rem;
      }
    }

    @media(min-width:1024px) {
      #hero {
        padding: 9rem 6rem 5rem;
        align-items: center;
      }

      .hero-content {
        text-align: center;
        max-width: 820px;
        width: 100%;
      }

      .hero-sub {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-actions {
        justify-content: center;
      }

      .hero-actions .btn-primary,
      .hero-actions .btn-ghost {
        font-size: .9rem;
        padding: 1rem 2rem;
      }

      .trust-stat .num {
        font-size: 2rem;
      }
    }

    /* ══ CAROUSEL ════════════════════════════════════ */
    .carousel-wrap {
      background: rgba(255, 255, 255, .025);
      border-top: 1px solid rgba(0,0,0, .07);
      border-bottom: 1px solid rgba(0,0,0,.07);
      padding: 1.6rem 0;
      overflow: hidden;
      position: relative;
    }

    .carousel-wrap::before,
    .carousel-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100px;
      z-index: 2;
      pointer-events: none;
    }

    .carousel-wrap::before {
      left: 0;
      background: linear-gradient(to right, var(--bg), transparent);
    }

    .carousel-wrap::after {
      right: 0;
      background: linear-gradient(to left, var(--bg), transparent);
    }

    .carousel-label {
      font-size: .7rem;
      color: rgba(0,0,0,.45);
      letter-spacing: .18em;
      text-transform: uppercase;
      text-align: center;
      margin-bottom: .9rem;
      padding: 0 1.5rem;
    }

    .carousel-track-wrap {
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      gap: 1rem;
      width: max-content;
      animation: scrollTrack 30s linear infinite;
    }

    .carousel-track:hover {
      animation-play-state: paused;
    }

    @keyframes scrollTrack {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .tool-chip {
      background: rgba(0,0,0,.05);
      border: 1px solid rgba(0,0,0,.1);
      border-radius: 40px;
      padding: .45rem 1.1rem;
      font-size: .78rem;
      color: rgba(0,0,0,.58);
      white-space: nowrap;
      letter-spacing: .04em;
      transition: background .2s, border-color .2s, color .2s;
      flex-shrink: 0;
      cursor: default;
    }

    .tool-chip:hover {
      background: rgba(242, 72, 153, .12);
      border-color: rgba(242, 72, 153, .35);
      color: #111;
    }

    .tool-chip:active {
      background: rgba(242, 72, 153, .2);
    }

    /* ══ DOLOR ═══════════════════════════════════════ */
    #dolor {
      background: var(--gris);
      color: var(--negro);
    }

    #dolor .section-label {
      background: rgba(242, 72, 41, .1);
      border-color: rgba(242, 72, 41, .25);
      color: var(--naranja);
    }

    #dolor .section-title,
    #dolor .section-sub {
      color: var(--negro);
    }

    #dolor .section-sub {
      color: rgba(26, 26, 26, .55);
    }

    .pain-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1px;
      background: rgba(26, 26, 26, .1);
      border: 1px solid rgba(26, 26, 26, .1);
    }

    .pain-item {
      background: var(--gris);
      padding: 1.8rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      transition: background .25s;
    }

    .pain-item:hover {
      background: #fff;
    }

    .pain-icon {
      width: 38px;
      height: 38px;
      flex-shrink: 0;
      background: var(--grad);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .pain-text h3 {
      font-family: var(--M);
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: .3rem;
    }

    .pain-text p {
      font-size: .95rem;
      color: rgba(26, 26, 26, .68);
      line-height: 1.6;
    }

    /* ══ CASOS DE USO ════════════════════════════════ */
    #casos {
      background: var(--bg);
    }

    .casos-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .caso-card {
      background: var(--card-bg);
      border: 1px solid var(--card-br);
      border-radius: 10px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: border-color .3s, transform .3s;
    }

    .caso-card:hover {
      border-color: rgba(242, 72, 153, .35);
      transform: translateY(-3px);
    }

    .caso-card:active {
      transform: translateY(-1px);
    }

    .caso-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--grad);
      opacity: 0;
      transition: opacity .3s;
    }

    .caso-card:hover::before {
      opacity: 1;
    }

    .caso-industry {
      font-family: var(--T);
      font-size: .68rem;
      font-weight: 700;
      color: var(--rosa-vivo);
      letter-spacing: .15em;
      text-transform: uppercase;
      margin-bottom: .6rem;
      display: block;
    }

    .caso-card h3 {
      font-family: var(--M);
      font-weight: 700;
      font-size: 1.05rem;
      margin-bottom: .5rem;
    }

    .caso-card p {
      font-size: .95rem;
      color: rgba(0,0,0,.58);
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .caso-results {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .caso-metric {
      text-align: center;
    }

    .caso-metric .m-val {
      font-family: var(--T);
      font-weight: 800;
      font-size: 1.25rem;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      line-height: 1.1;
    }

    .caso-metric .m-lbl {
      font-size: .78rem;
      color: rgba(0,0,0,0.64);
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    /* ══ SERVICIOS ═══════════════════════════════════ */
    #servicios {
      background: #f5f3f0;
      position: relative;
      overflow: hidden;
    }

    #servicios::after {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 50vw;
      height: 50vw;
      background: radial-gradient(circle, rgba(242, 72, 153, .07) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }

    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .service-card {
      background: var(--card-bg);
      border: 1px solid var(--card-br);
      border-radius: 10px;
      padding: 1.8rem;
      position: relative;
      overflow: hidden;
      transition: border-color .3s, transform .3s;
    }

    .service-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(242, 72, 41, .07), rgba(242, 72, 153, .05));
      opacity: 0;
      transition: opacity .3s;
    }

    .service-card:hover {
      border-color: rgba(242, 72, 153, .35);
      transform: translateY(-3px);
    }

    .service-card:active {
      transform: translateY(-1px);
    }

    .service-card:hover::after {
      opacity: 1;
    }

    .service-num {
      font-family: var(--T);
      font-size: .68rem;
      font-weight: 700;
      color: var(--rosa-vivo);
      letter-spacing: .15em;
      margin-bottom: .7rem;
      display: block;
    }

    .service-card h3 {
      font-family: var(--M);
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: .45rem;
    }

    .service-card p {
      font-size: .95rem;
      color: rgba(0,0,0,.55);
      line-height: 1.65;
    }

    /* ══ PROPUESTAS DE VALOR ════════════════════════ */
    #valor {
      background: var(--gris);
      color: var(--negro);
    }

    #valor .section-label {
      background: rgba(242, 72, 41, .1);
      border-color: rgba(242, 72, 41, .25);
      color: var(--naranja);
    }

    #valor .section-title {
      color: var(--negro);
    }

    #valor .section-sub {
      color: rgba(26, 26, 26, .55);
    }

    .valor-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.2rem;
    }

    .valor-card {
      background: #fff;
      border-radius: 10px;
      padding: 1.8rem;
      border-top: 3px solid transparent;
      background-clip: padding-box;
      position: relative;
      transition: transform .25s, box-shadow .25s;
    }

    .valor-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

    .valor-card:active {
      transform: translateY(-1px);
    }

    .valor-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--grad);
      border-radius: 10px 10px 0 0;
    }

    .valor-icon {
      font-size: 1.8rem;
      margin-bottom: .8rem;
    }

    .valor-card h3 {
      font-family: var(--T);
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--negro);
      margin-bottom: .5rem;
    }

    .valor-card p {
      font-size: .95rem;
      color: rgba(26, 26, 26, .72);
      line-height: 1.7;
    }

    /* ══ RESULTADOS 3 MESES ══════════════════════════ */
    #resultados {
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }

    #resultados::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80vw;
      height: 60vw;
      background: radial-gradient(ellipse, rgba(242, 72, 41, .1) 0%, rgba(141, 168, 196, .07) 50%, transparent 70%);
      pointer-events: none;
    }

    .timeline-wrap {
      position: relative;
      z-index: 1;
    }

    .timeline-months {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .t-month {
      border: 1px solid var(--card-br);
      border-radius: 10px;
      padding: 2rem;
      background: var(--card-bg);
      position: relative;
      overflow: hidden;
    }

    .t-month::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--grad);
    }

    .t-month-label {
      font-family: var(--T);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--rosa-vivo);
      margin-bottom: .5rem;
    }

    .t-month h3 {
      font-family: var(--T);
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }

    .t-metrics {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .t-metric {
      background: rgba(0,0,0,.03);
      border-radius: 6px;
      padding: .9rem;
      text-align: center;
    }

    .t-metric .tv {
      font-family: var(--T);
      font-weight: 800;
      font-size: 1.5rem;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      line-height: 1;
    }

    .t-metric .tl {
      font-size: .78rem;
      color: rgba(0,0,0,0.64);
      margin-top: .2rem;
      text-transform: uppercase;
      letter-spacing: .05em;
    }

    .t-desc {
      font-size: .95rem;
      color: rgba(0,0,0,.58);
      line-height: 1.65;
    }

    .disclaimer-result {
      font-size: .78rem;
      color: rgba(0,0,0,.45);
      margin-top: 2rem;
      line-height: 1.65;
      border: 1px dashed rgba(255, 255, 255, .15);
      padding: .8rem 1rem;
      border-radius: 6px;
    }

    /* ══ PROCESO ═════════════════════════════════════ */
    #proceso {
      background: #f5f3f0;
      position: relative;
      overflow: hidden;
    }

    #proceso::after {
      content: '';
      position: absolute;
      top: -40%;
      right: -10%;
      width: 55vw;
      height: 55vw;
      background: radial-gradient(circle, rgba(242, 72, 41, .1) 0%, rgba(242, 72, 153, .05) 50%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .steps {
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 1;
    }

    .step {
      display: flex;
      gap: 1.4rem;
      padding: 1.8rem 0;
      border-bottom: 1px solid rgba(0,0,0,.07);
      align-items: flex-start;
    }

    .step:last-child {
      border-bottom: none;
    }

    .step-num {
      font-family: var(--T);
      font-weight: 800;
      font-size: 2.2rem;
      color: rgba(0,0,0,0.08);
      line-height: 1;
      min-width: 3.2rem;
    }

    .step-content h3 {
      font-family: var(--M);
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: .3rem;
    }

    .step-content p {
      font-size: .95rem;
      color: rgba(0,0,0,.55);
      line-height: 1.65;
    }

    /* ══ REELS SECTION ═══════════════════════════════ */
    #reels {
      background: var(--gris);
      color: var(--negro);
    }

    #reels .section-label {
      background: rgba(242, 72, 41, .1);
      border-color: rgba(242, 72, 41, .25);
      color: var(--naranja);
    }

    #reels .section-title,
    #reels .section-sub {
      color: var(--negro);
    }

    #reels .section-sub {
      color: rgba(26, 26, 26, .55);
    }

    #reels {
      text-align: center;
    }

    #reels .section-label,
    #reels .section-title,
    #reels .section-sub {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .reels-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      max-width: 340px;
      margin: 0 auto;
    }

    .reel-slot {
      background: #111;
      border-radius: 12px;
      aspect-ratio: 9/16;
      max-height: 80vh;
      width: 100%;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .reel-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .reel-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,.18);
      transition: background .25s;
      pointer-events: none;
    }

    .reel-slot.playing .reel-overlay {
      background: transparent;
    }

    .reel-slot.playing:hover .reel-overlay {
      background: rgba(0,0,0,.22);
    }

    .reel-play-btn {
      width: 48px;
      height: 48px;
      background: rgba(242,72,41,.88);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform .2s, opacity .25s;
      pointer-events: all;
      flex-shrink: 0;
    }

    .reel-slot.playing .reel-play-btn {
      opacity: 0;
    }

    .reel-slot.playing:hover .reel-play-btn {
      opacity: 1;
    }

    .reel-play-btn:hover {
      transform: scale(1.12);
    }

    .reel-mute-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 36px;
      height: 36px;
      background: rgba(0,0,0,.55);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: all;
      z-index: 4;
      transition: background .2s;
    }
    .reel-mute-btn:hover { background: rgba(0,0,0,.8); }
    .reel-mute-btn .icon-unmute { display: none; }
    .reel-slot.unmuted .reel-mute-btn .icon-mute { display: none; }
    .reel-slot.unmuted .reel-mute-btn .icon-unmute { display: block; }

    /* ══ NOSOTROS ════════════════════════════════════ */
    #nosotros {
      background: var(--bg);
    }

    .nosotros-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .nosotros-text p {
      font-size: .95rem;
      color: rgba(0,0,0,0.64);
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .nosotros-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .nosotros-val {
      background: var(--card-bg);
      border: 1px solid var(--card-br);
      border-radius: 8px;
      padding: 1rem;
    }

    .nosotros-val h4 {
      font-family: var(--T);
      font-weight: 700;
      font-size: .85rem;
      margin-bottom: .2rem;
    }

    .nosotros-val p {
      font-size: .78rem;
      color: rgba(0,0,0,0.44);
      line-height: 1.5;
    }

    .nosotros-media {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .media-slot {
      background: var(--card-bg);
      border: 2px dashed var(--card-br);
      border-radius: 12px;
      aspect-ratio: 16/9;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color .25s;
      position: relative;
      overflow: hidden;
      min-height: 140px;
    }

    .media-slot:hover {
      border-color: rgba(242, 72, 153, .4);
    }

    .media-slot-portrait {
      aspect-ratio: 4/5;
    }

    .media-slot-wide {
      grid-column: 1/-1;
      aspect-ratio: 16/9;
    }

    .media-placeholder {
      text-align: center;
      padding: 1rem;
    }

    .media-placeholder .mi {
      font-size: 1.8rem;
      margin-bottom: .4rem;
    }

    .media-placeholder p {
      font-size: .72rem;
      color: rgba(0,0,0,.30);
      line-height: 1.4;
    }

    @media(min-width:640px) {
      .nosotros-media {
        grid-template-columns: 1fr 1fr;
      }

      .media-slot {
        aspect-ratio: 4/5;
      }
    }

    /* Para añadir imagen: <img src="foto.jpg" style="position:absolute;inset:0;width:100%;height:100%;object-fit:cover;border-radius:10px;"> */
    /* Para añadir video: <video src="vid.mp4" autoplay muted loop playsinline style="..."> */
    .team-tag {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(0,0,0,.04);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 40px;
      padding: .5rem 1rem;
      font-size: .78rem;
      color: rgba(0,0,0,0.66);
      margin: .3rem;
    }

    /* ══ PLANES ══════════════════════════════════════ */
    #planes {
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }

    #planes::before {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -5%;
      width: 55vw;
      height: 55vw;
      background: radial-gradient(circle, rgba(141, 168, 196, .1) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }

    .plans-note {
      font-size: .8rem;
      color: rgba(0,0,0,0.42);
      border: 1px dashed rgba(255, 255, 255, .12);
      border-radius: 6px;
      padding: .8rem 1.2rem;
      margin-bottom: 2.5rem;
      line-height: 1.65;
    }

    .plans-note strong {
      color: rgba(0,0,0,.58);
    }

    .plans-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.4rem;
    }

    .plan-card {
      border: 1px solid var(--card-br);
      border-radius: 10px;
      padding: 2rem 1.5rem;
      position: relative;
      background: var(--card-bg);
      transition: border-color .3s, transform .3s;
      overflow: visible;
    }

    .plan-card:hover {
      transform: translateY(-4px);
      border-color: rgba(242, 72, 153, .25);
    }

    .plan-card:active {
      transform: translateY(-2px);
    }

    .plan-card.destacado {
      border-color: var(--rosa-vivo);
      background: rgba(242, 72, 153, .06);
    }

    .plan-badge {
      position: absolute;
      top: -14px;
      left: 1.5rem;
      background: var(--grad);
      color: #111;
      font-family: var(--T);
      font-weight: 700;
      font-size: .6rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: .28rem .85rem;
      border-radius: 2px;
      white-space: nowrap;
    }

    .plan-tag {
      display: inline-block;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      border-radius: 3px;
      padding: .2rem .6rem;
      margin-bottom: .7rem;
    }

    .plan-tag.azul {
      background: rgba(141, 168, 196, .15);
      color: var(--azul);
      border: 1px solid rgba(141, 168, 196, .3);
    }

    .plan-tag.rosa {
      background: rgba(242, 72, 153, .12);
      color: var(--rosa-vivo);
      border: 1px solid rgba(242, 72, 153, .3);
    }

    .plan-tag.naranja {
      background: rgba(242, 72, 41, .12);
      color: #ff7a5c;
      border: 1px solid rgba(242, 72, 41, .3);
    }

    .plan-tag.premium {
      background: var(--grad);
      color: #111;
    }

    .plan-name {
      font-family: var(--M);
      font-weight: 800;
      font-size: 1.25rem;
      margin-bottom: .25rem;
    }

    .plan-price {
      font-family: var(--M);
      font-weight: 800;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
      margin-bottom: .1rem;
    }

    .plan-price-label {
      font-size: .78rem;
      color: rgba(0,0,0,0.57);
      margin-bottom: .8rem;
    }

    .plan-inv-note {
      font-size: .82rem;
      color: rgba(0,0,0,0.7);
      margin-bottom: 1.4rem;
      line-height: 1.5;
      padding: .6rem .8rem;
      background: rgba(0,0,0,.025);
      border-radius: 4px;
      border-left: 2px solid var(--rosa-vivo);
    }

    .plan-features {
      list-style: none;
      margin-bottom: 2rem;
    }

    .plan-features li {
      font-size: .9rem;
      color: rgba(0,0,0,.62);
      padding: .5rem 0;
      border-bottom: 1px solid rgba(0,0,0, .05);
      display: flex;
      align-items: flex-start;
      gap: .55rem;
      line-height: 1.5;
    }

    .plan-features li::before {
      content: '→';
      color: var(--rosa-vivo);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: .05rem;
    }

    .plan-cta {
      display: block;
      text-align: center;
      text-decoration: none;
      font-family: var(--T);
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: .95rem;
      border-radius: 5px;
      transition: all .2s;
      border: none;
    }

    .plan-cta.solid {
      background: var(--grad);
      color: #111;
    }

    .plan-cta.solid:hover {
      opacity: .88;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(242, 72, 153, .35);
    }

    .plan-cta.outline {
      border: 1px solid rgba(255, 255, 255, .22);
      color: #111;
      background: transparent;
    }

    .plan-cta.outline:hover {
      border-color: var(--rosa-vivo);
      color: var(--rosa-vivo);
      background: rgba(242, 72, 153, .06);
    }

    /* ══ SOCIAL PROOF ════════════════════════════════ */
    #prueba {
      background: var(--gris);
      color: var(--negro);
    }

    #prueba .section-label {
      background: rgba(242, 72, 41, .1);
      border-color: rgba(242, 72, 41, .25);
      color: var(--naranja);
    }

    #prueba .section-title {
      color: var(--negro);
    }

    #prueba .section-sub {
      color: rgba(26, 26, 26, .52);
    }

    /* Results strip: 3 cols mobile-first with auto sizing */
    .results-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid rgba(26, 26, 26, .1);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 2.5rem;
    }

    .result-item {
      padding: 1.2rem .6rem;
      text-align: center;
      border-right: 1px solid rgba(26, 26, 26, .1);
    }

    .result-item:last-child {
      border-right: none;
    }

    .result-item .rn {
      font-family: var(--T);
      font-weight: 800;
      font-size: clamp(1.1rem, 5.5vw, 2rem);
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      line-height: 1;
    }

    .result-item .rl {
      font-size: clamp(.6rem, 2.2vw, .72rem);
      color: rgba(26, 26, 26, .55);
      text-transform: uppercase;
      letter-spacing: .05em;
      margin-top: .4rem;
      line-height: 1.3;
    }

    /* ══ TESTIMONIALS CAROUSEL ══════════════════════ */
    .testimonials-carousel {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      margin-top: .5rem;
    }

    .testimonials-track {
      display: flex;
      transition: transform .55s cubic-bezier(.4, 0, .2, 1);
      will-change: transform;
    }

    .testimonial {
      background: #fff;
      border-radius: 12px;
      padding: 2rem 1.8rem;
      border-left: 4px solid var(--naranja);
      flex: 0 0 100%;
      width: 100%;
      position: relative;
    }

    .testimonial::before {
      content: '"';
      position: absolute;
      top: -10px;
      left: 1.5rem;
      font-family: var(--T);
      font-size: 5rem;
      font-weight: 800;
      color: rgba(242, 72, 41, .1);
      line-height: 1;
    }

    .testimonial blockquote {
      font-size: 1rem;
      line-height: 1.72;
      color: #222;
      margin-bottom: 1.2rem;
      font-style: italic;
      position: relative;
      z-index: 1;
    }

    .testimonial-author {
      font-family: var(--T);
      font-weight: 700;
      font-size: .9rem;
      color: #111;
    }

    .testimonial-company {
      font-size: .78rem;
      color: rgba(26, 26, 26, .5);
      margin-top: .15rem;
    }

    /* Dots */
    .testimonials-dots {
      display: flex;
      gap: .5rem;
      justify-content: center;
      margin-top: 1.25rem;
    }

    .t-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(26, 26, 26, .18);
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background .3s, transform .3s;
      -webkit-tap-highlight-color: transparent;
    }

    .t-dot.active {
      background: var(--naranja);
      transform: scale(1.3);
    }

    /* Progress bar */
    .testimonials-progress {
      height: 2px;
      background: rgba(26, 26, 26, .08);
      border-radius: 2px;
      overflow: hidden;
      margin-top: .75rem;
    }

    .testimonials-progress-bar {
      height: 100%;
      background: var(--grad);
      border-radius: 2px;
      animation: tProgress 4s linear infinite;
    }

    @keyframes tProgress {
      from {
        width: 0%;
      }

      to {
        width: 100%;
      }
    }

    /* ══ FAQ ═════════════════════════════════════════ */
    #faq {
      background: #f5f3f0;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: .5rem;
    }

    .faq-item {
      border: 1px solid rgba(0,0,0,.09);
      border-radius: 8px;
      overflow: hidden;
    }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      transition: color .18s;
      color: #111;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 1.5rem;
      font-family: var(--M);
      font-weight: 600;
      font-size: .95rem;
      text-align: left;
      transition: background .2s;
    }

    .faq-q:hover {
      background: rgba(0,0,0,.03);
    }

    .faq-q .icon {
      flex-shrink: 0;
      transition: transform .3s;
      font-size: 1.2rem;
      color: var(--rosa-vivo);
    }

    .faq-q.open .icon {
      transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, padding .3s;
      font-size: .88rem;
      color: rgba(0,0,0,0.57);
      line-height: 1.7;
      padding: 0 1.5rem;
    }

    .faq-a.open {
      max-height: 300px;
      padding: 0 1.5rem 1.3rem;
    }

    /* ══ FORMULARIO PRINCIPAL ════════════════════════ */
    #formulario {
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }

    #formulario::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80vw;
      height: 50vw;
      background: radial-gradient(ellipse, rgba(242, 72, 153, .1) 0%, rgba(242, 72, 41, .06) 45%, transparent 70%);
      pointer-events: none;
    }

    .form-wrap {
      position: relative;
      z-index: 1;
      background: rgba(0,0,0,.025);
      border: 1px solid rgba(0,0,0,.09);
      border-radius: 16px;
      padding: 2rem 1.25rem;
      max-width: 640px;
      margin: 0 auto;
    }

    .form-title {
      font-family: var(--T);
      font-weight: 800;
      font-size: clamp(1.5rem, 4vw, 2.2rem);
      margin-bottom: .5rem;
    }

    .form-sub {
      font-size: .9rem;
      color: rgba(0,0,0,0.53);
      margin-bottom: 1.75rem;
      line-height: 1.65;
    }

    .main-form {
      display: flex;
      flex-direction: column;
      gap: .9rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: .9rem;
    }

    .form-input {
      background: rgba(0,0,0,.04);
      border: 1px solid rgba(0,0,0,.10);
      border-radius: 6px;
      padding: .85rem 1rem;
      color: #111;
      font-family: var(--B);
      font-size: 16px;
      outline: none;
      width: 100%;
      transition: border-color .2s;
      -webkit-appearance: none;
      appearance: none;
    }

    .form-input::placeholder {
      color: rgba(0,0,0,.32);
    }

    .form-input:focus {
      border-color: var(--rosa-vivo);
    }

    .form-select {
      background: rgba(0,0,0,.04) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(0,0,0,.45)'/%3E%3C/svg%3E") no-repeat right 1rem center;
    }

    .form-select option {
      background: #1c1c1c;
    }

    .form-textarea {
      resize: vertical;
      min-height: 90px;
    }

    .form-consent {
      display: flex;
      gap: .6rem;
      align-items: flex-start;
    }

    .form-consent input {
      margin-top: .2rem;
      accent-color: var(--rosa-vivo);
      flex-shrink: 0;
      width: 16px;
      height: 16px;
    }

    .form-consent label {
      font-size: .78rem;
      color: rgba(0,0,0,.45);
      line-height: 1.55;
    }

    .form-consent a {
      color: var(--rosa-vivo);
      text-decoration: underline;
      cursor: pointer;
    }

    .form-submit {
      background: var(--grad);
      color: #111;
      border: none;
      border-radius: 6px;
      padding: 1.1rem;
      font-family: var(--T);
      font-weight: 700;
      font-size: .92rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: opacity .2s, transform .2s;
      width: 100%;
      margin-top: .2rem;
    }

    .form-submit:hover {
      opacity: .88;
      transform: translateY(-1px);
    }

    .form-disclaimer {
      font-size: .72rem;
      color: rgba(0,0,0,.30);
      text-align: center;
      line-height: 1.5;
    }

    #form-success {
      display: none;
      text-align: center;
      padding: 2rem;
      background: rgba(37, 211, 102, .08);
      border: 1px solid rgba(37, 211, 102, .2);
      border-radius: 10px;
    }

    #form-success h3 {
      font-family: var(--T);
      font-weight: 800;
      font-size: 1.3rem;
      color: #25D366;
      margin-bottom: .5rem;
    }

    #form-success p {
      font-size: .88rem;
      color: rgba(0,0,0,0.55);
    }

    /* ══ FOOTER ══════════════════════════════════════ */
    footer {
      background: #ffffff;
      border-top: 1px solid rgba(0,0,0, .06);
    }

    /* NEWSLETTER STRIP */
    .footer-newsletter {
      padding: 2.5rem 1.25rem;
      border-bottom: 1px solid rgba(0,0,0, .06);
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .newsletter-text h3 {
      font-family: var(--M);
      font-weight: 800;
      font-size: 1.15rem;
      margin-bottom: .25rem;
      line-height: 1.25;
    }

    .newsletter-text p {
      font-size: .88rem;
      color: rgba(0,0,0,.55);
      line-height: 1.55;
    }

    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: .6rem;
      width: 100%;
    }

    .newsletter-input {
      flex: 1;
      min-width: 0;
      background: rgba(0,0,0,.04);
      border: 1px solid rgba(0,0,0,.10);
      border-radius: 6px;
      padding: .8rem 1rem;
      color: #111;
      font-family: var(--B);
      font-size: 16px;
      outline: none;
      transition: border-color .2s;
    }

    .newsletter-input::placeholder {
      color: rgba(0,0,0,.35);
    }

    .newsletter-input:focus {
      border-color: var(--rosa-vivo);
    }

    .newsletter-btn {
      background: var(--grad);
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: .8rem 1.4rem;
      font-family: var(--T);
      font-weight: 700;
      font-size: .78rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: opacity .2s;
      white-space: nowrap;
      min-height: 48px;
      flex-shrink: 0;
    }

    .newsletter-btn:hover {
      opacity: .85;
    }

    .newsletter-fine {
      font-size: .7rem;
      color: rgba(0,0,0,.45);
      margin-top: .3rem;
    }

    /* inline form from 480px */
    @media(min-width:480px) {
      .newsletter-form {
        flex-direction: row;
        align-items: center;
      }

      .newsletter-btn {
        width: auto;
      }
    }

    /* side-by-side from 768px */
    @media(min-width:768px) {
      .footer-newsletter {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        padding: 2rem 3rem;
        max-width: 860px;
        margin: 0 auto;
      }

      .newsletter-text {
        flex-shrink: 0;
        max-width: 360px;
      }

      .newsletter-form {
        max-width: 400px;
      }
    }

    @media(min-width:1024px) {
      .footer-newsletter {
        padding: 2.5rem 6rem;
      }
    }

    /* FOOTER COLS */
    .f-logo {
      font-family: var(--T);
      font-weight: 800;
      font-size: 1rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      margin-bottom: 0;
    }

    .f-logo span {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .f-tagline {
      font-size: .83rem;
      color: rgba(0,0,0,.55);
      line-height: 1.6;
      max-width: 210px;
      margin-bottom: 0;
    }

    .f-social {
      display: flex;
      gap: .55rem;
      flex-wrap: wrap;
    }

    .f-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(0,0,0,.05);
      border: 1px solid rgba(0,0,0,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, border-color .2s;
      text-decoration: none;
      color: #111;
      flex-shrink: 0;
    }

    .f-social a:hover {
      background: rgba(242, 72, 153, .2);
      border-color: rgba(242, 72, 153, .4);
    }

    .f-col h4 {
      font-family: var(--M);
      font-weight: 700;
      font-size: .7rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(0,0,0,.48);
      margin-bottom: .8rem;
    }

    .f-col ul {
      list-style: none;
    }

    .f-col ul li {
      margin-bottom: .45rem;
    }

    .f-col ul li a {
      font-size: .82rem;
      color: rgba(0,0,0,.60);
      text-decoration: none;
      transition: color .2s;
    }

    .f-col ul li a:hover {
      color: var(--rosa-vivo);
    }

    @media(max-width:1023px) {
      .footer-top { text-align: center; }

      .footer-top>div:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .6rem;
      }

      .footer-top .f-tagline { margin-left: auto; margin-right: auto; }
      .footer-top .f-social { justify-content: center; }
      .footer-top .f-col ul { display: inline-block; text-align: center; }
    }

    /* Mobile: stack vertically */
    .footer-top {
      padding: 2rem 1.25rem;
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.75rem;
    }

    /* Tablet 640px: 2 cols — logo full width + 2 nav cols side by side */
    @media(min-width:640px) {
      .footer-top {
        padding: 2.5rem 2rem;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 3rem;
      }

      .footer-top>div:first-child {
        grid-column: 1 / -1;
        /* logo spans full width on tablet */
      }
    }

    /* Desktop 1024px */
    @media(min-width:1024px) {
      .footer-top {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 5rem;
        padding: 3rem 2rem;
      }

      .footer-top>div:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: .6rem;
        width: 180px;
        flex-shrink: 0;
      }

      .footer-top>div:first-child .f-logo { margin-bottom: 0; }
      .footer-top>div:first-child .f-social { justify-content: center; }

      .f-col { width: 160px; flex-shrink: 0; }
    }

    .footer-bottom {
      padding: 1.1rem 1.25rem;
      border-top: 1px solid rgba(0,0,0, .05);
      display: flex;
      flex-direction: column;
      gap: .5rem;
      align-items: center;
      text-align: center;
    }

    .footer-bottom p {
      font-size: .72rem;
      color: rgba(0,0,0,.45);
    }

    .footer-legal-links {
      display: flex;
      gap: .75rem 1.2rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .footer-legal-links a {
      font-size: .72rem;
      color: rgba(0,0,0,0.53);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-legal-links a:hover {
      color: var(--rosa-vivo);
    }

    @media(min-width:768px) {
      .footer-bottom {
        padding: 1.1rem 3rem;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }

      .footer-legal-links {
        justify-content: flex-end;
      }
    }

    @media(min-width:1024px) {
      .footer-bottom {
        padding: 1.1rem 6rem;
      }
    }

    /* ══ WA FLOATING WIDGET ══════════════════════════ */
    .wa-btn {
      position: fixed;
      bottom: calc(1.25rem + var(--sab));
      right: 1.25rem;
      z-index: 9999;
    }
    .wa-trigger {
      width: 58px;
      height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 6px 25px rgba(37,211,102,.5);
      transition: transform .3s, box-shadow .3s;
      border: none;
      position: relative;
      z-index: 2;
    }
    .wa-trigger:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 35px rgba(37,211,102,.65);
    }
    .wa-pulse {
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 2px solid #25D366;
      animation: waPulse 2.5s ease-out infinite;
      pointer-events: none;
    }
    @keyframes waPulse {
      0%   { transform: scale(1); opacity: .6; }
      100% { transform: scale(1.65); opacity: 0; }
    }
    .wa-form {
      position: absolute;
      bottom: 72px;
      right: 0;
      width: 300px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0,0,0,.18);
      overflow: hidden;
      transform: scale(.85) translateY(20px);
      transform-origin: bottom right;
      opacity: 0;
      pointer-events: none;
      transition: all .35s cubic-bezier(.34,1.56,.64,1);
    }
    .wa-form.open {
      transform: scale(1) translateY(0);
      opacity: 1;
      pointer-events: all;
    }
    .wa-form-header {
      background: linear-gradient(135deg, var(--naranja), var(--rosa-vivo));
      padding: 1.25rem 1.25rem 1rem;
      display: flex;
      align-items: center;
      gap: .75rem;
      position: relative;
    }
    .wa-avatar {
      width: 44px;
      height: 44px;
      min-width: 44px;
      background: rgba(255,255,255,.2);
      border: 1.5px solid rgba(255,255,255,.35);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .wa-agent-name {
      color: #fff;
      font-family: var(--M);
      font-weight: 700;
      font-size: .93rem;
    }
    .wa-agent-tagline {
      color: rgba(255,255,255,.78);
      font-size: .71rem;
      margin-top: .1rem;
    }
    .wa-form-body {
      padding: 1.25rem;
    }
    .wa-bubble {
      background: rgba(242,72,41,.05);
      border: 1px solid rgba(242,72,41,.1);
      border-radius: 12px 12px 12px 4px;
      padding: .8rem 1rem;
      font-size: .84rem;
      color: #111;
      line-height: 1.55;
      margin-bottom: .9rem;
    }
    .wa-form-body label {
      display: block;
      font-family: var(--M);
      font-size: .74rem;
      font-weight: 600;
      color: #111;
      margin-bottom: .3rem;
    }
    .wa-form-body input {
      width: 100%;
      padding: .6rem .85rem;
      border: 1.5px solid rgba(0,0,0,.12);
      border-radius: 8px;
      font-family: var(--B);
      font-size: 15px;
      color: #111;
      background: var(--gris);
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      margin-bottom: .65rem;
      -webkit-appearance: none;
    }
    .wa-form-body input:focus {
      border-color: var(--naranja);
      box-shadow: 0 0 0 3px rgba(242,72,41,.1);
    }
    .wa-send-btn {
      width: 100%;
      padding: .8rem;
      background: linear-gradient(135deg, var(--naranja), var(--rosa-vivo));
      color: #fff;
      border: none;
      border-radius: 10px;
      font-family: var(--M);
      font-weight: 700;
      font-size: .88rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .45rem;
      transition: opacity .2s, transform .2s;
    }
    .wa-send-btn:hover {
      opacity: .9;
      transform: translateY(-1px);
    }
    .wa-close {
      position: absolute;
      top: .75rem;
      right: .75rem;
      background: rgba(255,255,255,.18);
      border: none;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      color: #fff;
      font-size: .82rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
    }
    .wa-close:hover { background: rgba(255,255,255,.35); }
    @media(min-width:500px) {
      .wa-form { width: 320px; }
    }

    /* ══ MODALS ══════════════════════════════════════ */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .72);
      z-index: 300;
      align-items: flex-end;
      justify-content: center;
      padding: 0;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal-overlay.center {
      align-items: center;
      padding: 1rem;
    }

    .modal-box {
      background: #ffffff;
      border: 1px solid rgba(0,0,0,.09);
      border-radius: 20px 20px 0 0;
      padding: 2rem 1.25rem calc(2rem + var(--sab));
      width: 100%;
      max-width: 520px;
      animation: slideUp .35s cubic-bezier(.16, 1, .3, 1);
      position: relative;
      max-height: 94svh;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .modal-overlay.center .modal-box {
      border-radius: 16px;
      padding: 2rem 1.5rem;
      max-height: 88svh;
    }

    @keyframes slideUp {
      from {
        transform: translateY(100%);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(0,0,0,.06);
      border: none;
      color: #111;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      font-size: .95rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .2s;
      flex-shrink: 0;
    }

    .modal-close:hover {
      background: rgba(0,0,0,.12);
    }

    @media(min-width:640px) {
      .modal-box {
        border-radius: 16px;
      }
    }

    .modal-title {
      font-family: var(--T);
      font-weight: 800;
      font-size: 1.35rem;
      margin-bottom: .3rem;
    }

    .modal-sub {
      font-size: .84rem;
      color: rgba(0,0,0,0.53);
      margin-bottom: 1.6rem;
    }


    /* LEGAL */
    .legal-content {
      font-size: .84rem;
      color: rgba(0,0,0,0.64);
      line-height: 1.75;
    }

    .legal-content h3 {
      font-family: var(--T);
      font-size: 1rem;
      color: #111;
      margin: 1.2rem 0 .4rem;
    }

    .legal-content p {
      margin-bottom: .8rem;
    }

    .legal-tabs {
      display: flex;
      gap: .5rem;
      margin-bottom: 1.5rem;
    }

    .legal-tab {
      padding: .45rem 1rem;
      border-radius: 4px;
      font-family: var(--T);
      font-weight: 700;
      font-size: .75rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      border: 1px solid rgba(0,0,0,.10);
      color: rgba(0,0,0,.48);
      background: none;
      cursor: pointer;
      transition: all .2s;
    }

    .legal-tab.active {
      background: var(--grad);
      color: #111;
      border-color: transparent;
    }

    .legal-panel {
      display: none;
    }

    .legal-panel.active {
      display: block;
    }

    /* EXIT INTENT */
    .exit-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .82);
      z-index: 400;
      align-items: flex-end;
      justify-content: center;
      padding: 0;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .exit-overlay.active {
      display: flex;
    }

    .exit-box {
      background: #ece9e4;
      border: 1px solid rgba(242, 72, 153, .25);
      border-radius: 20px 20px 0 0;
      padding: 2rem 1.5rem calc(2rem + var(--sab));
      max-width: 480px;
      width: 100%;
      text-align: center;
      animation: slideUp .4s cubic-bezier(.16, 1, .3, 1);
      overflow-y: auto;
      max-height: 92svh;
      -webkit-overflow-scrolling: touch;
    }

    @media(min-width:600px) {
      .exit-overlay {
        align-items: center;
        padding: 1.5rem;
      }

      .exit-box {
        border-radius: 20px;
        padding: 2.5rem 2rem;
        animation: popIn .4s cubic-bezier(.16, 1, .3, 1);
      }
    }

    @keyframes popIn {
      from {
        transform: scale(.88);
        opacity: 0;
      }

      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .exit-emoji {
      font-size: 2.2rem;
      margin-bottom: .7rem;
    }

    .exit-box h2 {
      font-family: var(--T);
      font-weight: 800;
      font-size: 1.35rem;
      margin-bottom: .45rem;
    }

    .exit-box p {
      font-size: .88rem;
      color: rgba(0,0,0,.52);
      line-height: 1.65;
      margin-bottom: 1.2rem;
    }

    .exit-offer {
      background: rgba(242, 72, 41, .06);
      border: 1px solid rgba(242, 72, 153, .22);
      border-radius: 8px;
      padding: .9rem;
      margin-bottom: 1.2rem;
    }

    .exit-offer strong {
      font-family: var(--T);
      font-weight: 800;
      font-size: 1.35rem;
      color: var(--naranja);
    }

    .exit-offer p {
      font-size: .78rem;
      color: rgba(0,0,0,0.53);
      margin: 0;
      margin-top: .2rem;
    }

    .exit-cta {
      display: block;
      width: 100%;
      background: var(--grad);
      color: #111;
      border: none;
      border-radius: 6px;
      padding: .95rem;
      font-family: var(--T);
      font-weight: 700;
      font-size: .88rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      cursor: pointer;
      margin-bottom: .75rem;
      transition: opacity .2s;
    }

    .exit-cta:hover {
      opacity: .88;
    }

    .exit-skip {
      font-size: .74rem;
      color: rgba(0,0,0,.32);
      cursor: pointer;
      background: none;
      border: none;
      text-decoration: underline;
    }

    .exit-skip:hover {
      color: rgba(0,0,0,0.55);
    }

    /* ══ RESPONSIVE ══════════════════════════════════ */
    @media(max-width:374px) {

      /* Extra small phones */
      .hero-title {
        font-size: 2.1rem;
      }

      .section-title {
        font-size: 1.5rem;
      }

      .plan-price {
        font-size: 2rem;
      }

      .plans-grid {
        gap: 1rem;
      }

      section {
        padding: 3.5rem 1rem;
      }
    }

    /* Mobile: hero centrado */
    @media(max-width:767px) {
      #hero .hero-content {
        text-align: center;
      }

      #hero .hero-actions {
        justify-content: center;
      }

      section:not(#hero) {
        text-align: left;
      }

      .section-sub {
        text-align: left;
      }

      /* Legibilidad mobile párrafos */
      p {
        font-size: 1rem;
        line-height: 1.7;
      }

      .pain-text p,
      .caso-card p,
      .service-card p,
      .valor-card p,
      .t-desc,
      .step-content p {
        font-size: 1rem;
        line-height: 1.7;
      }

      /* Trust bar centrado en hero */
      .hero-trust {
        text-align: center;
      }

      .trust-stat .lbl {
        font-size: .8rem;
      }
    }

    /* reels: 2 cols on mobile already */
    @media(min-width:640px) {
      section {
        padding: 5rem 2rem;
      }

      .services-grid {
        grid-template-columns: 1fr 1fr;
      }

      .plans-grid {
        grid-template-columns: 1fr 1fr;
      }

      .pain-grid {
        grid-template-columns: 1fr 1fr;
      }

      .casos-grid {
        grid-template-columns: 1fr 1fr;
      }

      .valor-grid {
        grid-template-columns: 1fr 1fr;
      }

      .reels-grid {
        grid-template-columns: repeat(3, minmax(0, 360px));
        max-width: 1160px;
        justify-content: center;
      }

      .form-row {
        grid-template-columns: 1fr 1fr;
      }

      .timeline-months {
        grid-template-columns: 1fr 1fr;
      }

      .form-wrap {
        padding: 2.5rem 2rem;
      }
    }

    @media(min-width:768px) {
      section {
        padding: 5.5rem 3rem;
      }
    }

    @media(min-width:1024px) {
      section {
        padding: 7rem 6rem;
      }

      #formulario {
        padding: 7rem 6rem;
      }

      footer .footer-bottom {
        padding: 1rem 6rem;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }

      /* footer-top handled by inline media queries */
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .plans-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .pain-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .casos-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .valor-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .timeline-months {
        grid-template-columns: repeat(3, 1fr);
      }

      /* testimonials carousel — single col always */
      .nosotros-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
      }

      .carousel-wrap {
        padding: 1.6rem 6rem;
      }

      .reels-grid {
        grid-template-columns: repeat(3, minmax(0, 360px));
        max-width: 1160px;
        justify-content: center;
      }


      .btn-primary,
      .btn-ghost {
        font-size: .9rem;
        padding: 1rem 2rem;
      }
    }
  
    /* ── FIX CONTRASTES TARJETAS ── */
    .card p, .card-desc, .card-body p,
    .feat-card p, .feat-desc,
    .value-card p, .pillar-desc,
    .use-case p, .result-card p,
    .plan-card p, .plan-feature,
    .process-step p, .testimonial-text,
    .tag-pill { color: rgba(0,0,0,.60) !important; }

    .card-title, .feat-title, .value-title,
    .pillar-title, .plan-name { color: #111 !important; }

    /* Fix newsletter input placeholder */
    .newsletter-input { color: #111 !important; }

    /* Footer border-top visible sobre blanco */
    footer { border-top: 1px solid rgba(0,0,0,.08) !important; }


/* ══ NAV SCROLL ACTIVE LINK ═══════════════════════════ */
.nav-links a.active, .nav-drawer a.active {
  color: var(--naranja) !important;
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

/* ══ SCROLL REVEAL ════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-32px);
  transition: opacity .7s .1s cubic-bezier(.22,1,.36,1), transform .7s .1s cubic-bezier(.22,1,.36,1); }
.reveal-left.visible  { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px);
  transition: opacity .7s .1s cubic-bezier(.22,1,.36,1), transform .7s .1s cubic-bezier(.22,1,.36,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.93);
  transition: opacity .6s .05s ease, transform .6s .05s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Delay helpers */
.d1 { transition-delay: .1s !important; }
.d2 { transition-delay: .2s !important; }
.d3 { transition-delay: .3s !important; }
.d4 { transition-delay: .4s !important; }

/* ══ CARD HOVER LIFT ══════════════════════════════════ */
.caso-card, .feat-card, .value-card, .plan-card, .result-card {
  transition: border-color .3s, transform .3s, box-shadow .3s !important;
}
.caso-card:hover, .feat-card:hover, .value-card:hover, .plan-card:hover, .result-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 36px rgba(0,0,0,.07) !important;
}

/* ══ FIX TIPOGRAFÍA — texto oscuro forzado en cards ══ */
.caso-card p, .feat-card p, .value-card p, .plan-card p,
.result-card p, .pillar-card p, .process-card p,
.testimonial-body, .testimonial-text,
section p:not(.section-sub):not(.hero-sub):not(.form-disclaimer):not(.newsletter-text p) {
  color: rgba(0,0,0,.62) !important;
}

/* ══ COUNTER ANIMATION ════════════════════════════════ */
.count-up { display: inline-block; }

    /* ── Modal title on white ── */
    .modal-title { color: #111 !important; }
    .modal-sub   { color: rgba(0,0,0,.55) !important; }

    /* ── Legal modal también blanco ── */
    .modal-overlay.center .modal-box { background: #ffffff; border-color: rgba(0,0,0,.09); }
    .legal-content h3, .legal-content p, .legal-content li { color: rgba(0,0,0,.70) !important; }
    .legal-tab { background: rgba(0,0,0,.04); color: rgba(0,0,0,.55); border: 1px solid rgba(0,0,0,.08); border-radius: 6px; padding: .45rem 1rem; font-family: var(--T); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: all .2s; }
    .legal-tab.active { background: var(--grad); color: #fff; border-color: transparent; }


/* ══ HERO KANJI ══════════════════════════════════════ */
.hero-kanji {
  display: none;
  position: absolute;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .72;
}
@media(min-width: 900px) {
  .hero-kanji {
    display: block;
    width: clamp(260px, 28vw, 420px);
    height: auto;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
    animation: heroKanjiIn .9s .5s cubic-bezier(.22,1,.36,1) both;
  }
}
@keyframes heroKanjiIn {
  0%   { opacity: 0; transform: translateY(-46%) scale(.88); }
  100% { opacity: .72; transform: translateY(-50%) scale(1); }
}

/* ══ KANJI SECTION DECORATORS ═══════════════════════
   Íconos sello rojo como decoradores editoriales.
   mix-blend-mode: multiply → fondo se funde con blanco
═══════════════════════════════════════════════════ */
.section-kanji {
  position: absolute;
  width: 160px;
  height: auto;
  opacity: .65;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  display: none;
}
@media(min-width: 768px) {
  .section-kanji {
    display: block;
    width: 200px;
  }
}
@media(min-width: 1200px) {
  .section-kanji {
    width: 280px;
  }
}

/* ══ ARROW ANIMATIONS ════════════════════════════════

   scroll-indicator → hero, 3 chevrons ∨ que aparecen y rebotan
   deco-arrows      → section titles, 3 chevrons › que se deslizan al scroll
═══════════════════════════════════════════════════ */

/* Hero: cada flecha entra con fade+slide y luego rebota */
@keyframes siIn {
  0%   { opacity: 0; transform: rotate(45deg) translate(-5px,-5px); }
  100% { opacity: 1; transform: rotate(45deg) translate(0,0); }
}
@keyframes siBounce {
  0%, 100% { transform: rotate(45deg) translate(0,0); }
  50%       { transform: rotate(45deg) translate(4px,4px); }
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 2rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.scroll-indicator .si {
  width: 13px;
  height: 13px;
  border-right: 2.5px solid;
  border-bottom: 2.5px solid;
  border-radius: 1px;
  opacity: 0;
}
.scroll-indicator .si:nth-child(1) {
  border-color: #F24829;
  animation: siIn .55s .9s cubic-bezier(.22,1,.36,1) forwards,
             siBounce 1.8s 1.55s ease-in-out infinite;
}
.scroll-indicator .si:nth-child(2) {
  border-color: #E84065;
  animation: siIn .55s 1.1s cubic-bezier(.22,1,.36,1) forwards,
             siBounce 1.8s 1.75s ease-in-out infinite;
}
.scroll-indicator .si:nth-child(3) {
  border-color: #F24899;
  animation: siIn .55s 1.3s cubic-bezier(.22,1,.36,1) forwards,
             siBounce 1.8s 1.95s ease-in-out infinite;
}

/* Sección: 3 chevrons › en fila, aparecen staggered al scroll */
@keyframes daIn {
  0%   { opacity: 0; transform: rotate(-45deg) translate(-10px, 10px); }
  100% { opacity: .85; transform: rotate(-45deg) translate(0, 0); }
}

.deco-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: .65rem;
}
.deco-arrows .da {
  width: 10px;
  height: 10px;
  border-right: 2.5px solid;
  border-bottom: 2.5px solid;
  border-radius: 1px;
  opacity: 0;
}
.deco-arrows.visible .da:nth-child(1) {
  border-color: #F24829;
  animation: daIn .45s .0s cubic-bezier(.22,1,.36,1) forwards;
}
.deco-arrows.visible .da:nth-child(2) {
  border-color: #E84065;
  animation: daIn .45s .16s cubic-bezier(.22,1,.36,1) forwards;
}
.deco-arrows.visible .da:nth-child(3) {
  border-color: #F24899;
  animation: daIn .45s .32s cubic-bezier(.22,1,.36,1) forwards;
}