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

    :root {
      --blue-dark: #001D3D;
      --blue-mid: #1565A8;
      --blue-light: #00A3E0;
      --yellow: #F39C12;
      --yellow-pale: #FEF9E7;
      --white: #FFFFFF;
      --off-white: #F5F7FA;
      --dark: #1A1A23;
      --blue-pale: #EAF3FB;
      --blue-tint: #D6E8F7;
      --text-body: #000000;
      --text-muted: #000000;
      --border: #D8E4EE;
      --green: #27AE60;
      --green-pale: #E8F8EE;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--white);
      color: var(--text-body);
      overflow-x: hidden;
      line-height: 1.65;
    }

    /* ============================================================
       HEADER
    ============================================================ */

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: 75px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      padding: 0 2.5rem;
      justify-content: space-between;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }

    .logo-wrap img {
      width: 55px;
      height: 65px;
      object-fit: contain;
      margin-left: 10px;
    }

    .logo-name {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 2rem;
      color: var(--blue-dark);
      letter-spacing: -0.01em;
      margin-left: -5px;
      line-height: 1;
    }

    .logo-name span {
      color: var(--yellow);
    }

    .brand-lockup,
    .footer-brand {
      display: flex;
      flex-direction: column;
    }

    .logo-tagline {
      margin-top: 0.15rem;
      color: var(--text-muted);
      font-size: 0.70rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      line-height: 1.15;
      text-transform: uppercase;
      white-space: nowrap;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    nav a {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    nav a:hover {
      color: var(--blue-mid);
    }

    .btn-nav {
      background: var(--blue-mid);
      color: white !important;
      padding: 0.55rem 1.5rem;
      border-radius: 50px;
      font-weight: 600 !important;
      font-size: 0.99rem !important;
      transition: background 0.2s, transform 0.15s !important;
    }

    .btn-nav:hover {
      background: var(--blue-dark) !important;
      transform: translateY(-1px);
    }


    /* ============================================================
       HERO — diseño asimétrico con grid de fondo
    ============================================================ */

    .page-hero {
      margin-top: 50px;
      background: linear-gradient(180deg, #031a33 0%, #082846 100%);
      padding: 4rem 2.5rem 2.4rem;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }

    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(243, 156, 18, 0.08), transparent 26%);
      opacity: 1;
      pointer-events: none;
    }

    .page-hero::after {
      content: '';
      position: absolute;
      left: 2.5rem;
      right: 2.5rem;
      bottom: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.32), transparent);
      pointer-events: none;
    }

    .page-hero-inner {
      max-width: 1080px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 680px) minmax(250px, 320px);
      gap: 2.5rem;
      align-items: center;
      justify-content: space-between;
    }

    .hero-left {
      max-width: 680px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: none;
      padding: 0;
      font-size: 0.875rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.68);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 0.85rem;
    }

    .hero-tag::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--yellow);
      border-radius: 50%;
    }

    .page-hero h1 {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: clamp(3.5rem, 4vw, 3.6rem);
      color: var(--off-white);
      line-height: 1.04;
      margin-bottom: 0.9rem;
      letter-spacing: -0.03em;
      text-wrap: balance;
      max-width: 640px;
    }

    .page-hero h1 em {
      font-style: italic;
      color: var(--yellow);
    }

    .page-hero-desc {
      font-size: 1.25rem;
      color: rgba(234, 243, 251, 0.74);
      line-height: 1.75;
      margin-bottom: 1rem;
      max-width: 620px;
    }

    .hero-actions,
    .hero-highlights {
      display: none;
    }


    .page-hero {
      display: flex;
      justify-content: flex-end;
      align-self: center;
    }


    /* ============================================================
       QUÉ SON LOS PLANOS
    ============================================================ */

    .que-son {
      padding: 3rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .que-son-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      align-items: center;
    }

    .photo-placeholder {
      display: contents;
    }

    /* Placeholder media */

    .photo-placeholder img {
      grid-column: 1;
      grid-row: 1 / span 2;
      width: 90%;
      height: 90%;
      object-fit: cover;
      border-radius: 16px;
      margin-bottom: 0.5rem;
      border: 5px solid var(--blue-tint);
    }

    .que-son-copy {
      grid-column: 2;
      grid-row: 1;
      align-self: start;
    }


    .section-eyebrow {
      font-size: 0.80rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--blue-light);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 0.75rem;
    }

    .section-eyebrow::before {
      content: '';
      width: 24px;
      height: 3px;
      background: var(--yellow);
      border-radius: 2px;
    }

    .section-h {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 2.1rem;
      color: var(--blue-dark);
      margin-bottom: 0.75rem;
    }

    .beneficios-lista {
      list-style: none;
      padding: 0;
      margin: 1.2rem 0 0;
    }

    .beneficios-lista li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 18px;
      color: var(--text-body);
      line-height: 1.7;
    }

    .beneficios-lista i {
      color: #fcb900;
      font-size: 1.3rem;
      width: 26px;
      text-align: center;
      flex-shrink: 0;
      margin-top: 3px;
    }

    .beneficios-lista strong {
      color: var(--text-title);
    }

    .aviso-eaab {
      grid-column: 2;
      grid-row: 2;
      background: var(--yellow-pale);
      border-left: 4px solid var(--yellow);
      border-radius: 0 12px 12px 0;
      padding: 1rem 1rem;
      margin-top: 0.25rem;
      display: flex;
      align-items: flex-start;
      gap: 1px;
    }

    .aviso-eaab svg {
      width: 17px;
      height: 17px;
      stroke: #9A6008;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
      margin-top: 2px;
      margin-right: 10px;
    }

    .aviso-eaab p {
      font-size: 0.9rem;
      color: #7A4F00;
      line-height: 1.6;
      margin: 0;
    }

    .aviso-eaab strong {
      color: #5A3800;
    }

    /* ============================================================
   PRECIOS
    ============================================================ */

    .precios {
      padding: 1rem 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .precio-fila {
      display: flex;
      align-items: center;
      gap: 2rem;
      background: white;
      border: 1px solid var(--blue-light);
      border-radius: 16px;
      padding: 1.4rem 1.8rem;
      margin-top: 1.5rem;

    }

    .precio-monto {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-shrink: 0;
      border-right: 1px solid var(--border);
      padding-right: 2rem;
      min-width: 150px;
    }

    .precio-numero {
      font-family: 'Fraunces', serif;
      font-size: 3rem;
      color: var(--yellow);
      line-height: 1;
    }

    .precio-sub {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-muted);
      margin-top: 4px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .precio-lista {
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      flex: 1;
    }

    /* Línea vertical */
    .precio-lista::before {
      content: "";
      position: absolute;
      top: 24px;
      bottom: 24px;
      left: 50%;
      width: 1px;
      background: var(--yellow);
      transform: translateX(-50%);
    }

    /* Línea horizontal */
    .precio-lista::after {
      content: "";
      position: absolute;
      left: 28px;
      right: 28px;
      top: 50%;
      height: 1px;
      background: var(--yellow);
      transform: translateY(-50%);
    }

    .precio-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 0.5rem 0.9rem;
      font-size: 1rem;
      color: #000;
      line-height: 1.55;
      position: relative;
      z-index: 2;
    }

    .precio-check {
      width: 18px;
      height: 18px;
      stroke: var(--green);
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .precio-cta {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 5px;
      background: linear-gradient(135deg, #1565A8 0%, #0b4f82 100%);
      color: white;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      padding: 0.7rem 1.4rem;
      border-radius: 50px;
      text-decoration: none;
      white-space: nowrap;
      border-left: 1px solid var(--border);
      margin-left: 0.5rem;
      padding-left: 1.5rem;
      transition: background 0.2s, transform 0.15s;
      box-shadow: 0 8px 24px rgba(21, 101, 168, 0.2);
    }

    .precio-cta:hover {
      background: linear-gradient(135deg, #0f558d 0%, #001D3D 100%);
      transform: translateY(-1px);
    }

    .precio-cta svg {
      width: 12px;
      height: 12px;
      stroke: white;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .precio-fila {
        flex-direction: column;
        align-items: stretch;
        gap: 1.2rem;
        padding: 1.4rem;
      }

      .precio-monto {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 1.2rem;
        flex-direction: row;
        align-items: baseline;
        gap: 0.75rem;
      }

      .precio-cta {
        border-left: none;
        margin-left: 0;
        justify-content: center;
        padding: 0.8rem 1.4rem;
      }
    }

    @media (max-width: 600px) {
      .precios {
        padding: 2rem 1.25rem;
      }

      .precio-lista {
        grid-template-columns: 1fr;
      }
    }


    /* ============================================================
       VIDEO YOUTUBE
    ============================================================ */

    .video-section {
      background: linear-gradient(160deg, #031a33 0%, #082846 100%);
      padding: 3.5rem 2.5rem;
      position: relative;
      overflow: hidden;
    }

    .video-section::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(243, 156, 18, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .video-section::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 260px;
      height: 260px;
      background: radial-gradient(circle, rgba(0, 163, 224, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .video-section-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    /* Eyebrow */
    .video-text .section-eyebrow {
      color: var(--yellow);
      margin-bottom: 1rem;
    }

    .video-text .section-eyebrow::before {
      background: var(--yellow);
      width: 22px;
      height: 2px;
    }

    /* Heading */
    .video-text .section-h {
      color: #f0f6ff;
      font-size: clamp(3rem, 3vw, 2.2rem);
      margin-bottom: 0.6rem;
    }

    /* Descripción */
    .video-text>p {
      font-size: 1.35rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    /* Grid de features — 2 columnas */
    .video-features {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      /* antes 1fr 1fr */
      gap: 0.55rem 1.2rem;
    }

    .video-feature {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.5;
    }


    /* Punto amarillo en lugar del SVG check */
    .video-feature::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--yellow);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 5px;
    }

    /* Ocultar el SVG original si lo dejas en el HTML */
    .video-feature svg {
      display: none;
    }

    /* Columna derecha: video + caption */
    .video-col {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    /* Card del video */
    .video-link-card {
      display: block;
      text-decoration: none;
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .video-link-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 32px 72px rgba(0, 0, 0, 0.6);
    }

    /* Thumbnail */
    .video-thumb {
      position: relative;
      aspect-ratio: 16 / 9;
      background: #0a2a48;
    }

    .video-thumb img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: none;
      /* elimina el scale(1.14) anterior */
    }

    /* Gradiente sobre el thumbnail */
    .video-thumb::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(3, 26, 51, 0.1) 0%, rgba(3, 26, 51, 0.55) 100%);
    }

    /* Botón play */
    .video-play-btn {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      background: transparent;
    }

    .video-play-btn svg {
      width: auto;
      height: auto;
      background: none;
      padding: 0;
      border-radius: 0;
    }

    .play-circle {
      width: 64px;
      /* antes 52px */
      height: 64px;
      background: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .video-link-card:hover .play-circle {
      transform: scale(1.1);
      box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.25), 0 12px 40px rgba(0, 0, 0, 0.5);
    }

    /* Caption informativa */
    .video-caption {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      padding: 0.75rem 1rem;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.4;
    }

    .caption-icon {
      width: 28px;
      height: 28px;
      background: rgba(243, 156, 18, 0.12);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .caption-icon svg {
      width: 14px;
      height: 14px;
      stroke: var(--yellow);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }


    /* ============================================================
        — línea de tiempo horizontal
    ============================================================ */

    .proceso {
      padding: 2rem 1rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .proceso-header {
      text-align: center;
      margin-bottom: 2.5rem;
      transform: translateX(-1.5rem);
    }

    .proceso-eyebrow {
      justify-content: center;
    }

    .proceso-timeline {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: -1rem;
      margin-bottom: 3.5rem;
    }

    /* Línea conectora */
    .proceso-timeline::before {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(12.5% + 14px);
      right: calc(12.5% + 14px);
      height: 2px;
      background: var(--yellow);
      z-index: 0;
    }

    .paso {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 1rem;
      position: relative;
      z-index: 1;
    }

    .paso-circle {
      width: 60px;
      height: 60px;
      background: var(--white);
      border: 2px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      transition: background 0.3s, border-color 0.3s;
      flex-shrink: 0;
      animation: pasoCirclePulse 4.8s ease-in-out infinite;
    }

    .paso-circle svg {
      width: 21px;
      height: 21px;
      stroke: var(--text-muted);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke 0.3s;
      animation: pasoIconPulse 5s ease-in-out infinite;
    }

    .paso:hover .paso-circle {
      background: var(--blue-pale);
      border-color: var(--blue-mid);
    }

    .paso:hover .paso-circle svg {
      stroke: var(--blue-mid);
    }

    .paso:nth-child(2) .paso-circle,
    .paso:nth-child(2) .paso-circle svg {
      animation-delay: 1.2s;
    }

    .paso:nth-child(3) .paso-circle,
    .paso:nth-child(3) .paso-circle svg {
      animation-delay: 2.4s;
    }

    .paso:nth-child(4) .paso-circle,
    .paso:nth-child(4) .paso-circle svg {
      animation-delay: 3.6s;
    }

    @keyframes pasoCirclePulse {

      0%,
      12% {
        background: var(--blue-pale);
        border-color: var(--blue-mid);
        box-shadow: 0 0 0 10px rgba(21, 101, 168, 0.08);
      }

      18%,
      100% {
        background: var(--white);
        border-color: var(--black);
        box-shadow: 0 0 0 rgba(21, 101, 168, 0);
      }
    }

    @keyframes pasoIconPulse {

      0%,
      12% {
        stroke: var(--blue-mid);
      }

      18%,
      100% {
        stroke: var(--text-muted);
      }
    }

    .paso h3 {
      font-family: 'Fraunces', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--blue-dark);
      margin-bottom: 0.5rem;
    }

    .paso p {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--blue-dark);
      padding: 1rem 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      padding-bottom: 1.25rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-inner .logo-name {
      color: white;
      font-size: 2rem;
      text-decoration: none;
    }

    .footer-brand {
      text-decoration: none;
    }

    .footer-logo .logo-tagline {
      color: rgba(255, 255, 255, 0.72);
      font-size: .70rem;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
    }

    .footer-links a {
      font-size: 0.90rem;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: white;
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 1rem auto 0;
      text-align: center;
      font-size: 0.90rem;
      color: rgba(255, 255, 255, 0.3);
    }

    .social-links {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s ease;
    }

    .social-links a:hover {
      background: var(--blue-mid);
      transform: translateY(-3px);
    }

    .social-links img {
      width: 35px;
      height: 35px;
      object-fit: contain;
    }

    .footer-copy {
      font-size: 0.90rem;
      color: rgba(255, 255, 255, 0.3);
    }


    /* ============================================================
       RESPONSIVE
    ============================================================ */

    /* ============================================================
   RESPONSIVE
============================================================ */

    /* ---------- TABLET ---------- */

    @media (max-width:1024px) {

      header {
        padding: 0 1.5rem;
        height: auto;
        min-height: 75px;
        flex-wrap: wrap;
        gap: 1rem;
      }

      .logo-wrap {
        gap: 10px;
      }

      .logo-wrap img {
        width: 48px;
        height: 58px;
        margin-left: 0;
      }

      .logo-name {
        font-size: 1.7rem;
        margin-left: 0;
      }

      .logo-tagline {
        font-size: .62rem;
      }

      nav {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 1rem;
      }

      nav a {
        font-size: .95rem;
      }

      .page-hero {
        margin-top: 90px;
      }

      .page-hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .que-son-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .photo-placeholder img,
      .que-son-copy,
      .aviso-eaab {
        grid-column: 1;
      }

      .photo-placeholder img {
        grid-row: 1;
        width: 100%;
        height: auto;
      }

      .que-son-copy {
        grid-row: 2;
      }

      .aviso-eaab {
        grid-row: 3;
        margin-top: 0;
      }

      .precio-fila {
        flex-direction: column;
        align-items: stretch;
      }

      .precio-monto {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 1rem;
      }

      .precio-lista {
        grid-template-columns: 1fr;
      }

      .precio-cta {
        border-left: none;
        margin-left: 0;
        justify-content: center;
      }

      .video-section-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .video-features {
        grid-template-columns: 1fr 1fr;
      }

      .proceso-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }

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


    /* ---------- CELULAR ---------- */

    @media (max-width:768px) {

      header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        height: auto;
      }

      .logo-wrap {
        justify-content: center;
      }

      nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: .8rem 1.2rem;
      }

      nav a {
        display: block;
        font-size: .95rem;
        white-space: nowrap;
      }

      .page-hero {
        margin-top: 150px;
        padding: 3rem 1.5rem;
      }

      .page-hero h1 {
        font-size: 2.8rem;
      }

      .page-hero-desc {
        font-size: 1.05rem;
      }

      .que-son,
      .precios,
      .proceso {
        padding: 2.5rem 1.5rem;
      }

      .video-section {
        padding: 3rem 1.5rem;
      }

      .video-features {
        grid-template-columns: 1fr;
      }

      .proceso-header {
        transform: none;
      }

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

      .footer-inner {
        flex-direction: column;
        text-align: center;
      }

      .social-links {
        justify-content: center;
      }
    }


    /* ---------- CELULARES PEQUEÑOS ---------- */

    @media (max-width:480px) {

      header {
        padding: .8rem;
      }

      .logo-wrap {
        flex-direction: column;
        gap: .4rem;
      }

      .brand-lockup {
        align-items: center;
      }

      .logo-wrap img {
        width: 44px;
        height: 52px;
      }

      .logo-name {
        font-size: 1.55rem;
      }

      .logo-tagline {
        font-size: .55rem;
        text-align: center;
      }

      nav {
        gap: .6rem;
      }

      nav a {
        font-size: .88rem;
      }

      .page-hero {
        margin-top: 185px;
        padding: 2.5rem 1.2rem;
      }

      .page-hero h1 {
        font-size: 2.2rem;
      }

      .page-hero-desc {
        font-size: 1rem;
      }

      .section-h {
        font-size: 1.7rem;
      }

      .precio-numero {
        font-size: 2.3rem;
      }

      .video-text .section-h {
        font-size: 2rem;
      }

      .video-text>p {
        font-size: 1rem;
      }

      .footer-bottom {
        font-size: .8rem;
      }
    }


    /* ---------- REDUCIR ANIMACIONES ---------- */

    @media (prefers-reduced-motion:reduce) {

      .paso-circle,
      .paso-circle svg {
        animation: none;
      }

    }
