
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header */
   /* PASO 1: HEADER Y NAVEGACIÓN MEJORADOS */

/* Header Principal con gradiente sutil */
header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #333;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    transition: all 0.3s ease;
}

/* Header al hacer scroll - efecto blur */
header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.header-content {
    display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
}

/* Logo mejorado con animación */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Botón de menú móvil mejorado */
.mobile-menu-btn {
    display: none;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.2);
}

.mobile-menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.mobile-menu-btn:active {
    transform: translateY(0);
}

/* Navegación mejorada */
nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
}

nav a {
    color: #2c3e50;
    text-decoration: none;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

/* Efecto de hover con línea inferior animada */
nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

nav a:hover::before {
    width: 80%;
}

nav a:hover {
    background: linear-gradient(135deg, #ecf0f1 0%, #e8eef2 100%);
    color: #2980b9;
    transform: translateY(-2px);
}

/* Efecto ripple al hacer clic */
nav a:active {
    transform: translateY(0) scale(0.98);
}

/* Animación de entrada para los items del menú */
nav li {
    animation: fadeInDown 0.5s ease backwards;
}

nav li:nth-child(1) { animation-delay: 0.1s; }
nav li:nth-child(2) { animation-delay: 0.2s; }
nav li:nth-child(3) { animation-delay: 0.3s; }
nav li:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    header {
        padding: 16px;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 82px;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: calc(100vh - 82px);
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        flex-direction: column;
        padding: 2rem;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
        border-left: 3px solid #3498db;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid #ecf0f1;
        animation: slideInRight 0.3s ease backwards;
    }

    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.25s; }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 18px 0;
        font-size: 1.05rem;
    }

    .nav-menu a::before {
        display: none;
    }

    .nav-menu a:hover {
        padding-left: 10px;
        background: linear-gradient(90deg, #e8eef2 0%, transparent 100%);
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .logo img {
        width: 42px;
        height: 42px;
    }
}

/* Responsive - Móvil */
@media (max-width: 480px) {
    header {
        padding: 14px;
    }
    
    .logo-text {
        font-size: 0.85rem;
    }

    .logo img {
        width: 38px;
        height: 38px;
    }

    .mobile-menu-btn {
        padding: 8px 12px;
        font-size: 1.3rem;
    }

    .nav-menu {
        width: 85%;
        padding: 1.5rem;
    }
}

/* Overlay para cerrar menú móvil */
.nav-overlay {
    display: none;
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    height: calc(100vh - 82px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(39, 174, 96, 0.3), rgba(44, 62, 80, 0.7));
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            color: white;
            padding: 2rem;
            max-width: 1200px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content > p {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s 0.2s backwards;
        }

        /* Botón CTA principal */
        .hero-cta {
            display: inline-block;
            background: linear-gradient(135deg, #2734ae 0%, #0a043341 100%);
            color: white;
            padding: 1.5rem 3rem;
            font-size: 1.5rem;
            font-weight: bold;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(82, 39, 174, 0.5);
            animation: bounce 2s infinite, fadeInUp 1s 0.3s backwards;
            transition: all 0.3s;
        }

        .hero-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(68, 39, 174, 0.6);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            animation: fadeInUp 1s 0.4s backwards;
            margin-top: 2rem;
        }

        .feature-box {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s;
        }

        .feature-box:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .feature-box h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        /* Badges de confianza */
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .trust-badge {
            background: rgba(255, 255, 255, 0.95);
            color: #2c3e50;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .trust-badge::before {
            content: "✓";
            color: #2927ae;
            font-size: 1.5rem;
            font-weight: bold;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Simulator Section */
        .simulator {
            padding: 5rem 5%;
            background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
            position: relative;
        }

        .simulator::before {
            content: "MÁS SOLICITADO";
            position: absolute;
            top: 3rem;
            right: 5%;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
            animation: shake 1s infinite;
        }

        @keyframes shake {
            0%, 100% { transform: rotate(-3deg); }
            50% { transform: rotate(3deg); }
        }

        .simulator h2 {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .simulator-subtitle {
            text-align: center;
            color: #2729ae;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 3rem;
        }

        .simulator-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .simulator-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .simulator-box {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border: 3px solid #2729ae;
        }

        .input-group {
            margin-bottom: 1.5rem;
        }

        .input-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2c3e50;
            font-size: 1.1rem;
        }

        .input-group input,
        .input-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .input-group input:focus,
        .input-group select:focus {
            outline: none;
            border-color: #272eae;
            box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
        }


        /* Contact Section - Limpio */
      
       /* Fondo de la sección de contacto */
.contacto {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* Efecto de brillo sutil en el fondo */
.contacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contacto h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-image {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 45px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #030b2d 0%, #33095d 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive - Ocultar imagen en móvil */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-image {
        display: none;
    }

    .contacto h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .contacto {
        padding: 40px 15px;
    }

    .contacto h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }
}
        /* Sección de prueba social - AHORA EN VERDE */
        .social-proof {
            background: linear-gradient(135deg, #132852 0%, #043b68 100%);
            color: white;
            padding: 3rem 5%;
            text-align: center;
        }

        .social-proof h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .proof-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .proof-stat {
            background: rgba(255,255,255,0.2);
            padding: 2rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            transition: all 0.3s;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .proof-stat:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-5px);
        }

        .proof-number {
            font-size: 3rem;
            font-weight: bold;
            display: block;
            margin-bottom: 0.5rem;
        }

        /* Info Section */
        .info {
            padding: 5rem 5%;
            background: white;
        }

        .info-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .info-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }

        .info-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 2rem;
        }

        .stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
            border-radius: 15px;
            border: 2px solid #274bae;
            transition: all 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(39, 174, 96, 0.2);
        }

        .stat-item h3 {
            font-size: 3rem;
            color: #163591;
            margin-bottom: 0.5rem;
        }

        .info-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        /* Services Section */
        .services {
            padding: 5rem 5%;
            background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
        }

        .services h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .services-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s;
            position: relative;
            border: 2px solid transparent;
        }

        .service-card::before {
            content: "✓ DISPONIBLE";
            position: absolute;
            top: 15px;
            right: 15px;
            background: #162f93;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 1;
            box-shadow: 0 2px 10px rgba(27, 7, 90, 0.3);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(39, 174, 96, 0.2);
            border-color: #122b70;
        }

        .service-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-content {
            padding: 2rem;
        }

        .service-content h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .service-content p {
            color: #666;
            line-height: 1.8;
        }

        /* Testimonials */
        .testimonials {
            padding: 5rem 5%;
            background: white;
        }

        .testimonials h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .testimonials-subtitle {
            text-align: center;
            color: #27ae60;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 3rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-left: 5px solid #341e97;
            transition: transform 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(39, 174, 96, 0.15);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0d0468 0%, #080759 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
        }

        .testimonial-info h4 {
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-size: 1.2rem;
        }

        .stars {
            color: #f39c12;
            font-size: 1.2rem;
        }

        .testimonial-text {
            color: #555;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .verified-badge {
            display: inline-block;
            background: #272eae;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            margin-top: 0.5rem;
        }

        .verified-badge::before {
            content: "✓ ";
        }

        /* Footer - UNIFICADO */
        footer {
            background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
            color: white;
            padding: 3rem 5%;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
            color: #5627ae;
        }

        .footer-section p {
            line-height: 1.8;
            color: #bdc3c7;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #273bae;
        }

        .img-footer {
            width: 150px;
            margin-top: 1rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(59, 39, 174, 0.3);
            color: #bdc3c7;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .simulator-container,
            .info-content {
                grid-template-columns: 1fr;
            }

            .simulator-image {
                order: 2;
            }

            .info-text {
                order: 2;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content > p {
                font-size: 1.4rem;
            }

            .hero-cta {
                font-size: 1.2rem;
                padding: 1.2rem 2rem;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 70%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: -2px 0 10px rgba(0,0,0,0.1);
                transition: right 0.3s;
                gap: 0;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 1rem 0;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content > p {
                font-size: 1.2rem;
            }

            .hero-features {
                grid-template-columns: 1fr;
            }

            .trust-badges {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .simulator::before {
                top: 1.5rem;
                right: 3%;
                font-size: 0.9rem;
                padding: 0.4rem 0.8rem;
            }

            .simulator h2 {
                font-size: 2rem;
            }

            .simulator-subtitle {
                font-size: 1.1rem;
            }

            .result .amount {
                font-size: 2rem;
            }

            .proof-stats {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }

            .proof-number {
                font-size: 2rem;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .services-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .contacto h2 {
                font-size: 2rem;
            }

            .contact-subtitle {
                font-size: 1.1rem;
            }

            .contact-form {
                padding: 1.5rem;
            }

            nav {
                padding: 1rem 3%;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.5rem;
            }

            .hero-content > p {
                font-size: 1rem;
            }

            .hero-cta {
                font-size: 1rem;
                padding: 1rem 1.5rem;
            }

            .result .amount {
                font-size: 1.8rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .img-logo {
                width: 45px;
                height: 45px;
            }

            .simulator h2,
            .info-text h2,
            .services h2,
            .testimonials h2 {
                font-size: 1.8rem;
            }

            .proof-stats {
                grid-template-columns: 1fr;
            }

            .simulator-box,
            .contact-form {
                padding: 1.5rem;
            }
        }
.results-container {
            background: linear-gradient(135deg, #000000 0%, #764ba2 100%);
            border-radius: 15px;
            padding: 30px;
            color: white;
        }

        .result-item {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        .result-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .result-item h3 {
            font-size: 0.9rem;
            font-weight: 500;
            opacity: 0.9;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .result-item .amount {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .result-item .subtitle {
            font-size: 0.85rem;
            opacity: 0.8;
        }

        .total-section {
            background: rgba(255,255,255,0.15);
            border-radius: 10px;
            padding: 20px;
            margin-top: 10px;
        }

        .total-section .amount {
            font-size: 2.5rem;
        }

        .breakdown {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 15px;
        }

        .breakdown-item {
            background: rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 8px;
        }

        .breakdown-item p {
            font-size: 0.85rem;
            margin-bottom: 5px;
            opacity: 0.9;
        }

        .breakdown-item .value {
            font-size: 1.3rem;
            font-weight: 600;
        }

        @media (max-width: 968px) {
            .simulator-container {
                grid-template-columns: 1fr;
            }

            .simulator-image {
                order: -1;
            }

            h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .breakdown {
                grid-template-columns: 1fr;
            }

            .result-item .amount {
                font-size: 1.5rem;
            }

            .total-section .amount {
                font-size: 2rem;
            }
        }

        /* SECCIÓN TIPOS DE PRÉSTAMOS */
        .tipos-prestamos {
            padding: 80px 20px;
            background: white;
        }

        .tipos-prestamos h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #1a1a2e;
            margin-bottom: 20px;
        }

        .tipos-prestamos .subtitle {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 50px;
        }

        .cards-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .loan-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
            border: 2px solid #f0f0f0;
        }

        .loan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
            border-color: #667eea;
        }

        .loan-card .icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .loan-card h3 {
            font-size: 1.5rem;
            color: #1a1a2e;
            margin-bottom: 15px;
        }

        .loan-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .loan-card .features {
            list-style: none;
            margin-bottom: 25px;
        }

        .loan-card .features li {
            padding: 8px 0;
            color: #555;
            position: relative;
            padding-left: 25px;
        }

        .loan-card .features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
        }

        /* SECCIÓN TABLA SIMULADOR */
        .tabla-simulador {
            padding: 80px 20px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        }

        .tabla-simulador h2 {
            text-align: center;
            color: white;
            font-size: 2.5rem;
            margin-bottom: 50px;
        }

        .table-container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow-x: auto;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }

        thead {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        th {
            padding: 18px 12px;
            text-align: center;
            font-weight: 600;
            font-size: 0.95rem;
            white-space: nowrap;
        }

        tbody tr {
            border-bottom: 1px solid #e0e0e0;
        }

        tbody tr:hover {
            background: #f8f9fa;
        }

        td {
            padding: 16px 12px;
            font-size: 0.9rem;
            text-align: center;
        }

        .monto-col {
            font-weight: 600;
            color: #1a1a2e;
        }

        .plazo-col {
            color: #555;
        }

        .interes-col {
            font-weight: 700;
            color: #667eea;
            font-size: 1.5rem;
        }

        .pago-col {
            font-weight: 600;
            color: #764ba2;
        }

        .total-col {
            font-weight: 700;
            color: #1a1a2e;
        }

        .table-note {
            background: #f8f9fa;
            padding: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: #666;
            line-height: 1.6;
        }

        .table-note strong {
            color: #333;
        }

        /* SECCIÓN INFORMACIÓN FUNDAMENTAL */
        .info-fundamental {
            padding: 80px 20px;
            background: white;
        }

        .info-fundamental h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #1a1a2e;
            margin-bottom: 50px;
        }

        .info-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .info-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 40px;
            text-align: center;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .info-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .info-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .info-image img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            display: block;
        }

        .cta-button {
            margin: 20px;
            text-align: center;
        }

       .btn-ahora {
    display: inline-block;
    padding: 18px 55px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.btn-ahora:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 60, 114, 0.4);
}

        .btn-solicitar:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
        }

        /* FOOTER */
        footer {
            background: #1a1a2e;
            color: white;
            padding: 60px 20px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-nav h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #667eea;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 1rem;
        }

        .footer-links a:hover {
            color: #667eea;
        }

        .footer-logos {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .footer-logos h4 {
            margin-bottom: 20px;
            color: #667eea;
        }

        .logos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            align-items: center;
        }

        .logo-item {
            background: white;
            padding: 15px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 70px;
        }

        .logo-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #999;
            font-size: 0.9rem;
        }

        /* RESPONSIVE */
        @media (max-width: 968px) {
            .cards-container {
                grid-template-columns: 1fr;
            }

            .info-images {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-logos {
                align-items: flex-start;
            }

            .simulator-controls {
                flex-direction: column;
            }

            table {
                font-size: 0.8rem;
            }

            th, td {
                padding: 10px 6px;
                font-size: 0.75rem;
            }

            .interes-col {
                font-size: 1.2rem;
            }

            .table-note {
                padding: 15px;
                font-size: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .tipos-prestamos h2,
            .tabla-simulador h2,
            .info-fundamental h2 {
                font-size: 1.8rem;
            }

            .btn-solicitar {
                padding: 16px 40px;
                font-size: 1.1rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 15px;
            }

            .logos-grid {
                grid-template-columns: 1fr;
            }
        }