/*=========================================
    RESPONSIVE.CSS
    UrgencLink - Versión Mejorada
    Índice:
    1. Hero - Responsive (todos los tipos)
    2. Pantallas grandes (1200px)
    3. Tablets (992px)
    4. Tablets pequeñas (768px)
    5. Celulares grandes (576px)
    6. Celulares pequeños (480px)
    7. Pantallas muy pequeñas (380px)
    8. Accesibilidad
    9. Impresión
    10. Página de pago / Checkout - Responsive
    11. Contratación - Wizard horizontal
    12. Instituciones - Responsive
    13. Pasos - Responsive
==========================================*/

/*=========================================
    1. HERO - RESPONSIVE (TODOS LOS TIPOS)
==========================================*/

/* ===== TABLETS (1024px) ===== */
@media (max-width: 1024px) {
    .hero {
        padding-top: 150px;
        padding-bottom: 80px;
        min-height: auto;
    }

    .hero-grid {
        gap: 50px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-image img {
        min-height: 280px;
        max-height: 400px;
        max-width: 100%;
    }

    .hero-planes h1 {
        font-size: 44px;
    }

    .hero-cookies h1 {
        font-size: 44px;
    }
}

/* ===== TABLETS (992px) ===== */
@media (max-width: 992px) {
    .hero {
        padding-top: 140px;
        padding-bottom: 70px;
        min-height: auto;
    }

    .hero-grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 50px;
        align-items: center;
        text-align: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-tags {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
        padding: 0 20px;
    }

    .hero-image img {
        max-width: 420px;
        min-height: 250px;
        max-height: 350px;
        border-radius: 16px;
    }

    .hero-centered .hero-grid {
        flex-direction: column;
        gap: 0;
    }

    .hero-centered .hero-text p {
        max-width: 600px;
    }

    .hero-planes {
        padding: 150px 0 70px;
    }

    .hero-planes h1 {
        font-size: 38px;
    }

    .hero-planes p {
        font-size: 16px;
        padding: 0 20px;
    }

    .hero-cookies {
        padding: 150px 0 60px;
        min-height: 50vh;
    }

    .hero-cookies h1 {
        font-size: 34px;
    }

    .hero-cookies p {
        font-size: 16px;
        padding: 0 15px;
    }
}

/* ===== TABLETS PEQUEÑAS (768px) ===== */
@media (max-width: 768px) {
    .hero {
        padding-top: 130px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-grid {
        gap: 35px;
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.25;
    }

    .hero p {
        font-size: 15px;
        padding: 0 5px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero .badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .hero-tags {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-tags span {
        font-size: 12px;
        padding: 6px 14px;
    }

    .hero-image {
        padding: 0 10px;
    }

    .hero-image img {
        max-width: 100%;
        min-height: 200px;
        max-height: 280px;
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        object-fit: cover;
        object-position: center 30%;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .hero-centered {
        min-height: 50vh;
        padding-bottom: 50px;
    }

    .hero-centered .hero-text {
        padding: 0 10px;
    }

    .hero-planes {
        padding: 150px 0 70px;
    }

    .hero-planes h1 {
        font-size: 34px;
    }

    .hero-planes p {
        font-size: 15px;
        padding: 0 15px;
    }

    .hero-cookies {
        padding: 150px 0 60px;
        min-height: 50vh;
    }

    .hero-cookies h1 {
        font-size: 32px;
    }

    .hero-cookies p {
        font-size: 15px;
        padding: 0 15px;
    }
}

/* ===== MÓVILES GRANDES (576px) ===== */
@media (max-width: 576px) {
    .hero {
        padding-top: 110px;
        padding-bottom: 50px;
        min-height: auto;
    }

    .hero-grid {
        gap: 25px;
        padding: 0 12px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons a {
        max-width: 280px;
        font-size: 13px;
        padding: 12px 20px;
    }

    .hero .badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .hero-tags span {
        font-size: 12px;
        padding: 6px 12px;
    }

    .hero-image {
        padding: 0 8px;
    }

    .hero-image img {
        min-height: 160px;
        max-height: 220px;
        border-radius: 14px;
        object-position: center 25%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .hero-planes {
        padding: 130px 0 50px;
    }

    .hero-planes h1 {
        font-size: 28px;
    }

    .hero-planes p {
        font-size: 15px;
        padding: 0 15px;
    }

    .hero-cookies {
        padding: 130px 0 50px;
        min-height: 40vh;
    }

    .hero-cookies h1 {
        font-size: 28px;
    }

    .hero-cookies p {
        font-size: 15px;
        padding: 0 15px;
    }

    .hero-cookies .badge {
        font-size: 12px;
        padding: 6px 16px;
    }
}

/* ===== MÓVILES PEQUEÑOS (480px) ===== */
@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 13px;
    }

    .hero .badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .hero-buttons a {
        max-width: 240px;
        font-size: 12px;
        padding: 10px 16px;
    }

    .hero-tags span {
        font-size: 11px;
        padding: 4px 10px;
    }

    .hero-image img {
        min-height: 140px;
        max-height: 180px;
        border-radius: 12px;
        object-position: center 20%;
    }

    .hero-planes h1 {
        font-size: 24px;
    }

    .hero-planes p {
        font-size: 14px;
    }

    .hero-cookies h1 {
        font-size: 24px;
    }

    .hero-cookies p {
        font-size: 14px;
    }
}

/* ===== MÓVILES MUY PEQUEÑOS (380px) ===== */
@media (max-width: 380px) {
    .hero {
        padding-top: 90px;
        padding-bottom: 35px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero p {
        font-size: 12px;
    }

    .hero-buttons a {
        max-width: 200px;
        font-size: 11px;
        padding: 8px 14px;
    }

    .hero-image img {
        min-height: 120px;
        max-height: 150px;
        border-radius: 10px;
        object-position: center 15%;
    }
}

/*=========================================
    2. PANTALLAS GRANDES (1200px)
==========================================*/

@media (max-width: 1200px) {
    .container {
        width: 92%;
    }

    .titulo h2 {
        font-size: 38px;
    }

    /* Ajuste de grids */
    .beneficios-grid,
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .planes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        gap: 40px;
    }
}

/*=========================================
    3. TABLETS (992px)
==========================================*/

@media (max-width: 992px) {
    section {
        padding: 70px 0;
    }

    .titulo {
        margin-bottom: 45px;
    }

    .titulo h2 {
        font-size: 34px;
    }

    .titulo p {
        font-size: 15px;
    }

    /* ===== GRIDS ===== */
    .beneficios-grid,
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .beneficios {
        grid-template-columns: repeat(2, 1fr);
    }

    .planes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .equipo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .pasos {
        grid-template-columns: 1fr;
    }

    .estadisticas .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .testimonios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ===== BOTONES ===== */
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 14px;
    }

    /* ===== CTA ===== */
    .cta h2 {
        font-size: 38px;
    }

    .cta p {
        font-size: 16px;
        padding: 0 20px;
    }

    /* ===== CARDS ===== */
    .card {
        padding: 28px 22px;
    }

    .card i {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .card h3 {
        font-size: 20px;
    }

    /* ===== CHATBOT ===== */
    .chat-card {
        width: 380px;
        max-height: 500px;
    }
}

/*=========================================
    4. TABLETS PEQUEÑAS (768px)
==========================================*/

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    section {
        padding: 60px 0;
    }

    /* ===== HEADER ===== */
    .navbar {
        padding: 12px 0;
        min-height: 70px;
    }

    .logo span {
        font-size: 20px;
    }

    .logo img {
        width: 42px;
        height: 42px;
    }

    .logo {
        gap: 10px;
    }

    /* ===== TÍTULOS ===== */
    .titulo {
        margin-bottom: 40px;
    }

    .titulo h2 {
        font-size: 30px;
    }

    .titulo p {
        font-size: 14px;
    }

    /* ===== GRIDS ===== */
    .beneficios-grid,
    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .beneficios {
        grid-template-columns: 1fr;
    }

    .planes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 420px;
        margin: 0 auto;
    }

    .equipo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .estadisticas .container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .dato {
        padding: 20px 0;
    }

    .dato h2 {
        font-size: 40px;
    }

    .dato p {
        font-size: 14px;
    }

    /* ===== FOOTER ===== */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .footer-links a {
        text-align: center;
        display: block;
    }

    .footer-links a:hover {
        transform: translateX(0) scale(1.02);
    }

    .footer-contact .contact-item {
        justify-content: center;
    }

    .redes {
        justify-content: center;
    }

    .footer-contacto div {
        justify-content: center;
    }

    footer {
        padding: 50px 0 0;
    }

    .footer-grid h3 {
        font-size: 22px;
    }

    .footer-grid h4 {
        font-size: 15px;
    }

    .footer-grid p {
        font-size: 14px;
    }

    .footer-grid a {
        font-size: 14px;
    }

    .copyright {
        font-size: 13px;
        padding: 18px 0;
    }

    /* ===== CTA ===== */
    .cta {
        padding: 70px 0;
    }

    .cta h2 {
        font-size: 32px;
    }

    .cta p {
        font-size: 15px;
        padding: 0 15px;
    }

    .cta .btn-primary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* ===== CARDS ===== */
    .card {
        padding: 24px 20px;
    }

    .card i {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .card h3 {
        font-size: 19px;
    }

    /* ===== CONTACTO ===== */
    .contact-item i {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .contact-item {
        font-size: 14px;
    }

    /* ===== REDES ===== */
    .redes a {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    /* ===== PLANES ===== */
    .plan-card {
        padding: 28px 22px;
    }

    .plan-card .precio {
        font-size: 38px;
    }

    .plan-card .btn-plan {
        font-size: 14px;
        padding: 12px 20px;
    }

    /* ===== CHATBOT ===== */
    .chatbot-container {
        bottom: 90px;
        right: 16px;
    }

    .chat-card {
        width: 380px;
        max-width: 88vw;
        max-height: 460px;
    }

    .chat-header {
        font-size: 16px;
        padding: 14px 18px;
    }

    .chat-box {
        min-height: 250px;
        max-height: 320px;
        padding: 16px 14px;
    }

    .msg {
        font-size: 13px;
        padding: 10px 14px;
        max-width: 90%;
    }

    .input-area {
        padding: 12px 14px;
        gap: 8px;
    }

    .input-area input {
        font-size: 13px;
        padding: 10px 14px;
    }

    .input-area button {
        font-size: 13px;
        padding: 10px 20px;
    }

    #chatbot-btn {
        width: 56px !important;
        height: 56px !important;
        font-size: 24px !important;
        bottom: 20px !important;
        right: 20px !important;
    }

    .chatbot-online {
        width: 12px;
        height: 12px;
        top: 1px;
        right: 1px;
    }

    #chatbot-btn .tooltip {
        display: none;
    }

    /* ===== WHATSAPP ===== */
    .whatsapp {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

/*=========================================
    5. CELULARES GRANDES (576px)
==========================================*/

@media (max-width: 576px) {
    .container {
        width: 94%;
        padding: 0 12px;
    }

    /* ===== TÍTULOS ===== */
    .titulo {
        margin-bottom: 35px;
    }

    .titulo h2 {
        font-size: 26px;
    }

    .titulo p {
        font-size: 13px;
    }

    /* ===== GRIDS ===== */
    .beneficios-grid,
    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .beneficios {
        grid-template-columns: 1fr;
    }

    .planes-grid {
        max-width: 100%;
        gap: 20px;
    }

    .equipo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 320px;
        margin: 0 auto;
    }

    .logos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .logos {
        grid-template-columns: 1fr;
    }

    .estadisticas .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dato h2 {
        font-size: 34px;
    }

    .dato p {
        font-size: 13px;
    }

    /* ===== FOOTER ===== */
    .footer-grid {
        gap: 30px;
    }

    .footer-grid h3 {
        font-size: 20px;
    }

    .footer-grid h4 {
        font-size: 14px;
    }

    .footer-grid p {
        font-size: 13px;
    }

    .footer-grid a {
        font-size: 13px;
    }

    .footer-contact .contact-item {
        font-size: 13px;
    }

    .contact-item i {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .redes a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* ===== CTA ===== */
    .cta {
        padding: 60px 0;
    }

    .cta h2 {
        font-size: 28px;
    }

    .cta p {
        font-size: 14px;
        padding: 0 10px;
    }

    .cta .btn-primary {
        width: 100%;
        max-width: 260px;
        font-size: 14px;
        padding: 12px 24px;
    }

    /* ===== CARDS ===== */
    .card {
        padding: 22px 18px;
    }

    .card i {
        width: 52px;
        height: 52px;
        font-size: 20px;
        margin-bottom: 14px;
    }

    .card h3 {
        font-size: 18px;
    }

    .card p {
        font-size: 14px;
    }

    .paso {
        padding: 30px 18px;
    }

    /* ===== BOTONES ===== */
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        font-size: 13px;
        padding: 12px 20px;
    }

    /* ===== PLANES ===== */
    .plan-card {
        padding: 24px 18px;
    }

    .plan-card .precio {
        font-size: 34px;
    }

    .plan-card .precio small {
        font-size: 14px;
    }

    .plan-card .btn-plan {
        font-size: 13px;
        padding: 10px 16px;
        width: 100%;
        justify-content: center;
    }

    .plan-card ul li {
        font-size: 13px;
        padding: 6px 0;
    }

    /* ===== COPYRIGHT ===== */
    .copyright {
        font-size: 12px;
        padding: 16px 0;
    }

    /* ===== WHATSAPP ===== */
    .whatsapp {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 16px;
        right: 16px;
    }

    /* ===== CHATBOT ===== */
    .chatbot-container {
        bottom: 80px;
        right: 12px;
    }

    .chat-card {
        width: 340px;
        max-width: 90vw;
        max-height: 420px;
        border-radius: 16px;
    }

    .chat-header {
        font-size: 15px;
        padding: 12px 16px;
    }

    .chat-header .chat-status {
        font-size: 12px;
    }

    .chat-box {
        min-height: 220px;
        max-height: 280px;
        padding: 14px 12px;
    }

    .msg {
        font-size: 13px;
        padding: 8px 12px;
        max-width: 92%;
    }

    .input-area {
        padding: 10px 12px;
        gap: 6px;
    }

    .input-area input {
        font-size: 13px;
        padding: 8px 12px;
    }

    .input-area button {
        font-size: 13px;
        padding: 8px 16px;
    }

    #chatbot-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
        bottom: 16px !important;
        right: 16px !important;
    }
}

/*=========================================
    6. CELULARES PEQUEÑOS (480px)
==========================================*/

@media (max-width: 480px) {
    .container {
        width: 96%;
        padding: 0 10px;
    }

    section {
        padding: 40px 0;
    }

    .titulo h2 {
        font-size: 24px;
    }

    .titulo p {
        font-size: 13px;
    }

    .dato h2 {
        font-size: 30px;
    }

    .dato p {
        font-size: 12px;
    }

    .plan-card .precio {
        font-size: 30px;
    }

    .plan-card .precio small {
        font-size: 12px;
    }

    .cta h2 {
        font-size: 24px;
    }

    .cta p {
        font-size: 13px;
    }

    .cta .btn-primary {
        max-width: 220px;
        font-size: 13px;
        padding: 10px 20px;
    }

    .btn-primary,
    .btn-secondary {
        max-width: 240px;
        font-size: 12px;
        padding: 10px 16px;
    }

    .footer-grid h3 {
        font-size: 18px;
    }

    .footer-grid h4 {
        font-size: 13px;
    }

    .footer-grid p {
        font-size: 12px;
    }

    .footer-grid a {
        font-size: 12px;
    }

    .footer-contact .contact-item {
        font-size: 12px;
    }

    .contact-item i {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .redes a {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .copyright {
        font-size: 11px;
        padding: 14px 0;
    }

    .whatsapp {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 14px;
        right: 14px;
    }

    /* ===== CHATBOT ===== */
    .chatbot-container {
        bottom: 75px;
        right: 10px;
        left: 10px;
    }

    .chat-card {
        width: 100%;
        max-width: 100%;
        max-height: 380px;
        border-radius: 14px;
    }

    .chat-header {
        font-size: 14px;
        padding: 10px 14px;
    }

    .chat-header .chat-status {
        font-size: 11px;
    }

    .chat-box {
        min-height: 180px;
        max-height: 240px;
        padding: 12px 10px;
    }

    .msg {
        font-size: 12px;
        padding: 8px 12px;
        max-width: 95%;
    }

    .input-area {
        padding: 8px 10px;
        gap: 6px;
        flex-wrap: nowrap;
    }

    .input-area input {
        font-size: 12px;
        padding: 8px 10px;
        min-width: 60px;
    }

    .input-area button {
        font-size: 12px;
        padding: 8px 14px;
        flex-shrink: 0;
    }

    #chatbot-btn {
        width: 48px !important;
        height: 48px !important;
        font-size: 18px !important;
        bottom: 14px !important;
        right: 14px !important;
    }

    .chatbot-online {
        width: 10px;
        height: 10px;
        border-width: 1.5px;
    }
}

/*=========================================
    7. PANTALLAS MUY PEQUEÑAS (380px)
==========================================*/

@media (max-width: 380px) {
    .container {
        width: 98%;
        padding: 0 8px;
    }

    section {
        padding: 30px 0;
    }

    .titulo h2 {
        font-size: 20px;
    }

    .titulo p {
        font-size: 12px;
    }

    .dato h2 {
        font-size: 28px;
    }

    .dato p {
        font-size: 11px;
    }

    .btn-primary,
    .btn-secondary {
        max-width: 200px;
        font-size: 11px;
        padding: 8px 14px;
    }

    .plan-card .precio {
        font-size: 26px;
    }

    .plan-card .precio small {
        font-size: 11px;
    }

    .cta h2 {
        font-size: 20px;
    }

    .cta p {
        font-size: 12px;
    }

    .cta .btn-primary {
        max-width: 180px;
        font-size: 12px;
        padding: 8px 16px;
    }

    .footer-grid h3 {
        font-size: 16px;
    }

    .footer-grid h4 {
        font-size: 12px;
    }

    .footer-grid p {
        font-size: 11px;
    }

    .footer-grid a {
        font-size: 11px;
    }

    .footer-contact .contact-item {
        font-size: 11px;
    }

    .contact-item i {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .redes a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .card {
        padding: 16px 14px;
    }

    .card i {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .card h3 {
        font-size: 16px;
    }

    .card p {
        font-size: 12px;
    }

    .copyright {
        font-size: 10px;
        padding: 12px 0;
    }

    .whatsapp {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 12px;
        right: 12px;
    }

    /* ===== CHATBOT ===== */
    .chatbot-container {
        bottom: 68px;
        right: 8px;
        left: 8px;
    }

    .chat-card {
        max-height: 340px;
        border-radius: 12px;
    }

    .chat-header {
        font-size: 13px;
        padding: 8px 12px;
    }

    .chat-box {
        min-height: 150px;
        max-height: 200px;
        padding: 8px;
    }

    .msg {
        font-size: 11px;
        padding: 6px 10px;
    }

    .input-area {
        padding: 6px 8px;
        gap: 4px;
    }

    .input-area input {
        font-size: 11px;
        padding: 6px 8px;
    }

    .input-area button {
        font-size: 11px;
        padding: 6px 12px;
    }

    #chatbot-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 16px !important;
        bottom: 12px !important;
        right: 12px !important;
    }
}

/*=========================================
    8. ACCESIBILIDAD
==========================================*/

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .chatbot-wave {
        animation: none !important;
        display: none !important;
    }

    .chatbot-online {
        animation: none !important;
    }

    .hero .hero-text,
    .hero .hero-image,
    .section-title,
    .card,
    .plan-card {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/*=========================================
    9. IMPRESIÓN
==========================================*/

@media print {
    header,
    footer,
    #chatbot-btn,
    .chatbot-container,
    .menu-overlay,
    #btnMenu,
    .whatsapp {
        display: none !important;
    }

    .hero {
        padding-top: 40px !important;
        min-height: auto !important;
        background: #ffffff !important;
        color: #000000 !important;
    }

    .hero h1 span {
        color: #000000 !important;
    }

    .hero .badge {
        background: #f0f0f0 !important;
        color: #000000 !important;
    }

    .container {
        max-width: 100% !important;
        width: 95% !important;
    }

    section {
        padding: 30px 0 !important;
        page-break-inside: avoid;
    }

    .btn-primary,
    .btn-secondary {
        border: 1px solid #000000 !important;
        background: transparent !important;
        color: #000000 !important;
        box-shadow: none !important;
    }

    .card,
    .plan-card {
        box-shadow: none !important;
        border: 1px solid #cccccc !important;
    }
}

/*=========================================
    10. PÁGINA DE PAGO / CHECKOUT - RESPONSIVE
==========================================*/

/*=========================================
    TABLETS (992px)
==========================================*/

@media (max-width: 992px) {
    /* ===== PAYMENT CONTAINER ===== */
    .payment-container {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .payment-summary {
        position: static !important;
        order: -1 !important;
        margin-bottom: 20px;
    }

    /* ===== AJUSTES ADICIONALES PARA PAGO ===== */
    .payment-form {
        padding: 30px 24px;
    }

    .payment-summary {
        padding: 30px 24px;
    }

    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/*=========================================
    TABLETS PEQUEÑAS (768px)
==========================================*/

@media (max-width: 768px) {
    /* ===== PERIOD OPTIONS ===== */
    .period-options {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .period-options .period-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    /* ===== PAYMENT INFO ===== */
    .payment-info {
        flex-direction: column !important;
        text-align: center !important;
        gap: 16px;
    }

    .payment-info .info-item {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .payment-info .info-item i {
        margin-bottom: 4px;
    }

    /* ===== AJUSTES ADICIONALES PARA PAGO ===== */
    .payment-form {
        padding: 24px 18px;
    }

    .payment-summary {
        padding: 24px 18px;
    }

    .payment-methods {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .payment-methods .method-btn {
        padding: 14px 16px;
        justify-content: center;
    }

    .payment-methods .method-btn i {
        font-size: 18px;
    }

    .payment-methods .method-btn span {
        font-size: 14px;
    }

    .payment-total {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .payment-total .total-label {
        font-size: 14px;
    }

    .payment-total .total-amount {
        font-size: 28px;
    }

    .payment-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 16px;
    }

    .payment-btn i {
        font-size: 18px;
    }

    .payment-secure {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .payment-secure span {
        font-size: 12px;
    }

    .payment-secure i {
        font-size: 14px;
    }
}

/*=========================================
    CELULARES GRANDES (576px)
==========================================*/

@media (max-width: 576px) {
    /* ===== PAYMENT CONTAINER ===== */
    .payment-container {
        gap: 20px;
        padding: 0 10px;
    }

    /* ===== PAYMENT FORM ===== */
    .payment-form {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .payment-form h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .payment-form .form-group {
        margin-bottom: 16px;
    }

    .payment-form .form-group label {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .payment-form .form-group input,
    .payment-form .form-group select {
        font-size: 14px;
        padding: 12px 14px;
    }

    .payment-form .form-row {
        flex-direction: column;
        gap: 12px;
    }

    /* ===== PAYMENT SUMMARY ===== */
    .payment-summary {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .payment-summary h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .payment-summary .summary-item {
        padding: 10px 0;
        font-size: 14px;
    }

    .payment-summary .summary-total {
        font-size: 16px;
        padding: 14px 0;
    }

    .payment-summary .summary-total .total-price {
        font-size: 24px;
    }

    /* ===== PERIOD OPTIONS ===== */
    .period-options {
        gap: 10px;
    }

    .period-options .period-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .period-options .period-btn .period-price {
        font-size: 13px;
    }

    .period-options .period-btn .period-save {
        font-size: 11px;
        padding: 2px 10px;
    }

    /* ===== PAYMENT INFO ===== */
    .payment-info {
        gap: 12px;
    }

    .payment-info .info-item {
        font-size: 13px;
    }

    .payment-info .info-item i {
        font-size: 18px;
    }

    /* ===== PAYMENT METHODS ===== */
    .payment-methods {
        gap: 10px;
    }

    .payment-methods .method-btn {
        padding: 12px 14px;
        font-size: 13px;
    }

    .payment-methods .method-btn i {
        font-size: 16px;
    }

    /* ===== PAYMENT TOTAL ===== */
    .payment-total {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 16px 0;
    }

    .payment-total .total-label {
        font-size: 13px;
    }

    .payment-total .total-amount {
        font-size: 24px;
    }

    /* ===== PAYMENT BUTTON ===== */
    .payment-btn {
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 12px;
    }

    .payment-btn i {
        font-size: 16px;
    }

    /* ===== PAYMENT SECURE ===== */
    .payment-secure {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .payment-secure span {
        font-size: 11px;
    }

    .payment-secure i {
        font-size: 12px;
    }

    /* ===== CUPÓN ===== */
    .payment-coupon {
        flex-direction: column;
        gap: 10px;
    }

    .payment-coupon input {
        width: 100%;
        font-size: 14px;
        padding: 10px 14px;
    }

    .payment-coupon button {
        width: 100%;
        font-size: 14px;
        padding: 10px 16px;
    }
}

/*=========================================
    CELULARES PEQUEÑOS (480px)
==========================================*/

@media (max-width: 480px) {
    .payment-container {
        gap: 16px;
        padding: 0 6px;
    }

    .payment-form {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .payment-form h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .payment-form .form-group {
        margin-bottom: 14px;
    }

    .payment-form .form-group label {
        font-size: 12px;
    }

    .payment-form .form-group input,
    .payment-form .form-group select {
        font-size: 13px;
        padding: 10px 12px;
        border-radius: 10px;
    }

    .payment-summary {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .payment-summary h3 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .payment-summary .summary-item {
        font-size: 13px;
        padding: 8px 0;
    }

    .payment-summary .summary-total {
        font-size: 14px;
        padding: 12px 0;
    }

    .payment-summary .summary-total .total-price {
        font-size: 20px;
    }

    .period-options .period-btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .payment-methods .method-btn {
        padding: 10px 12px;
        font-size: 12px;
        border-radius: 10px;
    }

    .payment-methods .method-btn i {
        font-size: 14px;
    }

    .payment-btn {
        font-size: 14px;
        padding: 12px 16px;
        border-radius: 10px;
    }

    .payment-info .info-item {
        font-size: 12px;
    }

    .payment-info .info-item i {
        font-size: 16px;
    }

    .payment-total .total-label {
        font-size: 12px;
    }

    .payment-total .total-amount {
        font-size: 20px;
    }
}

/*=========================================
    11. CONTRATACIÓN - WIZARD HORIZONTAL
    (Sobrescribe los estilos que lo hacen vertical)
==========================================*/

@media (max-width: 768px) {
    /* ===== FORZAR WIZARD HORIZONTAL ===== */
    .wizard-section .wizard {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        padding: 14px 16px !important;
        gap: 6px !important;
        border-radius: 16px !important;
    }

    .wizard-section .wizard::-webkit-scrollbar {
        display: none !important;
    }

    .wizard-section .step {
        flex: 0 0 auto !important;
        min-width: 50px !important;
        gap: 4px !important;
    }

    .wizard-section .step .circle {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.95rem !important;
    }

    .wizard-section .step span {
        font-size: 0.65rem !important;
        white-space: nowrap !important;
    }

    .wizard-section .line {
        flex: 0 0 16px !important;
        min-width: 16px !important;
        height: 3px !important;
        width: auto !important;
    }
}

@media (max-width: 480px) {
    .wizard-section .wizard {
        padding: 10px 12px !important;
        gap: 4px !important;
        border-radius: 12px !important;
    }

    .wizard-section .step {
        min-width: 40px !important;
        gap: 3px !important;
    }

    .wizard-section .step .circle {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.75rem !important;
    }

    .wizard-section .step span {
        font-size: 0.55rem !important;
    }

    .wizard-section .line {
        flex: 0 0 10px !important;
        min-width: 10px !important;
        height: 2.5px !important;
    }
}

@media (max-width: 380px) {
    .wizard-section .wizard {
        padding: 8px 10px !important;
        gap: 3px !important;
    }

    .wizard-section .step {
        min-width: 34px !important;
        gap: 2px !important;
    }

    .wizard-section .step .circle {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.65rem !important;
    }

    .wizard-section .step span {
        font-size: 0.5rem !important;
    }

    .wizard-section .line {
        flex: 0 0 8px !important;
        min-width: 8px !important;
        height: 2px !important;
    }
}

/*=========================================
    12. RESPONSIVE - INSTITUCIONES
=========================================*/

@media (max-width: 992px) {
    .instituciones-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
        margin: 0 auto;
    }

    .institucion-card {
        padding: 25px 18px;
    }

    .institucion-logo {
        max-width: 110px;
        height: 65px;
    }

    .institucion-logo img {
        height: 55px;
    }

    .instituciones-header h4 {
        font-size: 24px;
    }

    #hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .instituciones {
        padding: 60px 0;
    }

    .instituciones-grid {
        gap: 16px;
        max-width: 100%;
    }

    .institucion-card {
        padding: 20px 14px;
        border-radius: 16px;
        gap: 12px;
    }

    .institucion-logo {
        max-width: 90px;
        height: 55px;
    }

    .institucion-logo img {
        height: 45px;
    }

    .institucion-card span {
        font-size: 12px;
    }

    .instituciones-header h4 {
        font-size: 20px;
    }

    #hero-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .instituciones {
        padding: 50px 0;
    }

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

    .institucion-card {
        padding: 16px 10px;
        border-radius: 14px;
        gap: 10px;
        min-height: 100px;
    }

    .institucion-logo {
        max-width: 70px;
        height: 45px;
    }

    .institucion-logo img {
        height: 35px;
    }

    .institucion-card span {
        font-size: 11px;
    }

    .instituciones-header h4 {
        font-size: 18px;
    }

    #hero-title {
        font-size: 30px;
    }
}

@media (max-width: 400px) {
    .instituciones-grid {
        gap: 10px;
    }

    .institucion-card {
        padding: 12px 8px;
        min-height: 80px;
        border-radius: 12px;
    }

    .institucion-logo {
        max-width: 55px;
        height: 35px;
    }

    .institucion-logo img {
        height: 28px;
    }

    .institucion-card span {
        font-size: 10px;
    }

    #hero-title {
        font-size: 26px;
    }
}

/*=========================================
    13. PASOS - RESPONSIVE
=========================================*/

@media (max-width: 992px) {
    .paso-numero {
        width: 62px;
        height: 62px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .paso-numero {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .paso-numero {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}