
    body {
      margin: 0;
      font-family: 'Orbitron', sans-serif;
      background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
      color: #fff;
      overflow-x: hidden;
    }

    .precios-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 2rem;
      background: rgba(255,255,255,0.03);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .logo-header {
      height: 40px;
    }

    .volver-btn {
      color: #ffffff;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .precios-section {
      text-align: center;
      padding: 3rem 1rem 5rem;
    }

    .titulo-precios {
      font-size: 2rem;
      color: #ffffff;
      text-shadow: 0 0 8px #00f5ff55;
      margin-bottom: 0.5rem;
    }

    .subtitulo-precios {
      font-size: 1rem;
      color: #ccc;
      margin-bottom: 2rem;
    }

    .cards-precios {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .card-precio {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(0, 245, 255, 0.15);
      border-radius: 20px;
      padding: 2rem;
      max-width: 340px;
      width: 100%;
      text-align: left;
      box-shadow: 0 0 18px rgba(0, 245, 255, 0.07);
      transition: transform 0.3s ease;
    }

    .card-precio:hover {
      transform: scale(1.02);
      box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
    }

    .card-precio h2 {
      color: #fff;
      margin-bottom: 0.5rem;
      font-size: 1.4rem;
    }

    .precio {
      font-size: 1.8rem;
      font-weight: bold;
      color: #232ed0;
      margin: 1rem 0 0.3rem;
    }

    .precio-info {
      font-size: 0.85rem;
      color: #aaa;
      margin-bottom: 1.2rem;
    }

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

    .lista-beneficios li {
      margin: 0.4rem 0;
      font-size: 0.9rem;
      color: #ddd;
    }

    .lista-beneficios i {
      color: #232ed0;
      margin-right: 0.5rem;
    }

    .ver-mas {
      background: none;
      border: 1px solid #232ed0;
      color: #ffffff;
      padding: 0.6rem 1rem;
      border-radius: 30px;
      cursor: pointer;
      transition: background 0.3s ease, color 0.3s ease;
      font-weight: bold;
    }

    .ver-mas:hover {
      background: #232ed0;
      color: #ffffff;
    }

    .detalle-extra {
      display: none;
      font-size: 0.85rem;
      color: #bbb;
      margin-top: 1rem;
      line-height: 1.4;
    }

    .detalle-extra.visible {
      display: block;
    }

    @media (max-width: 768px) {
      .cards-precios {
        flex-direction: column;
        align-items: center;
      }
    }
    .mini-banner-img {
        width: 100%;
        height: auto;
        max-height: 160px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 1rem;
        box-shadow: 0 0 10px rgba(0, 245, 255, 0.1);
      } 
      .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }
      
      .footer-redes {
        display: flex;
        gap: 1.2rem;
        font-size: 1.6rem;
      }
      
      .footer-redes a {
        color: #0d47a1;
        transition: transform 0.3s ease, color 0.3s ease;
      }
      
      .footer-redes a:hover {
        transform: scale(1.2);
        color: #fff;
      }
      .adaptamos-footer {
        margin-top: 3rem;
      }
      
      .adaptamos-footer p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #eee;
      }
      .landing-footer-section {
        scroll-snap-align: start;
        padding: 2rem;
        background: #0f0c29;
        color: #ccc;
        text-align: center;
        min-height: auto;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .landing-footer p {
        font-size: 0.95rem;
        margin: 0;
        color: #888;
      }
      /* Animación fade-in */
@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in {
    animation: fadeIn 1s ease both;
  }
  
  /* Delay progresivo para tarjetas */
  .card-precio:nth-child(1) { animation-delay: 0.2s; }
  .card-precio:nth-child(2) { animation-delay: 0.4s; }
  
  /* Despliegue animado para los detalles */
  .detalle-extra {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  
  .detalle-extra.visible {
    opacity: 1;
    max-height: 200px;
  }
  
  /* Suavizar hover existente */
  .card-precio {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  /* ====== Hardening general para evitar desbordes ====== */
*,
*::before,
*::after { box-sizing: border-box; }

img, video { max-width: 100%; height: auto; display: block; }

.card-precio,
.card-precio * { word-wrap: break-word; overflow-wrap: anywhere; }

/* Evitar “salidas” por el hover en móviles */
@media (hover: none) {
  .card-precio:hover {
    transform: none;
    box-shadow: 0 0 18px rgba(0, 245, 255, 0.07);
  }
}

/* Reducir animaciones si el usuario lo pide */
@media (prefers-reduced-motion: reduce) {
  .fade-in { animation: none !important; }
  .card-precio { transition: none !important; }
}

/* Safe areas iOS */
:root {
  --safe-top: env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
}

/* ====== Responsive ====== */
@media (max-width: 900px) {
  .precios-section { padding: 2.5rem 1rem 3rem; }
  .cards-precios { gap: 1.2rem; }
  .card-precio { max-width: 540px; }
}

/* Teléfonos grandes (<= 600px) */
@media (max-width: 600px) {
  body { font-size: 16px; } /* base legible */

  .precios-header {
    padding: calc(0.8rem + var(--safe-top)) 1rem 0.8rem;
    gap: 0.75rem;
  }
  .logo-header { height: 32px; }
  .volver-btn { font-size: 0.9rem; }

  .precios-section { padding: 2rem 1rem 2.25rem; }
  .titulo-precios {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }
  .subtitulo-precios { font-size: 0.95rem; }

  .cards-precios {
    flex-direction: column;
    align-items: stretch;     /* que la card ocupe todo el ancho */
    gap: 1rem;
    max-width: 640px;
    margin-inline: auto;
  }

  .card-precio {
    padding: 1.25rem 1rem;
    max-width: 100%;          /* full width del contenedor */
    border-radius: 16px;
  }

  .mini-banner-img { max-height: 140px; border-radius: 10px; }

  .card-precio h2 { font-size: 1.2rem; }
  .precio { font-size: 1.6rem; margin: 0.8rem 0 0.25rem; }
  .precio-info { font-size: 0.85rem; }

  .lista-beneficios { margin-bottom: 1rem; }
  .lista-beneficios li { font-size: 0.95rem; } /* un pelín más legible */

  .ver-mas {
    width: 100%;              /* botón grande y fácil de tocar */
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .detalle-extra { font-size: 0.95rem; line-height: 1.45; }

  .landing-footer-section {
    padding: 1.5rem 1rem calc(1.5rem + var(--safe-bottom));
  }
  .footer-redes { font-size: 1.5rem; gap: 1rem; }
}

/* Teléfonos chicos (<= 380px) */
@media (max-width: 380px) {
  .precios-header {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .volver-btn { order: 2; } /* logo arriba, botón abajo si falta espacio */

  .titulo-precios { font-size: 1.4rem; }
  .subtitulo-precios { font-size: 0.9rem; }

  .card-precio {
    padding: 1rem 0.85rem;
    border-radius: 14px;
  }
  .mini-banner-img { max-height: 120px; }
  .precio { font-size: 1.45rem; }
  .lista-beneficios li { font-size: 0.9rem; }
}

/* Prevenir scroll horizontal por sombras/escala */
html, body { width: 100%; }