
        * {
            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 */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2c3e50;
        }

        .img-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: #27ae60;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #2c3e50;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* 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, #27ae60 0%, #1e8449 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(39, 174, 96, 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(39, 174, 96, 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: #27ae60;
            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: #27ae60;
            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 #27ae60;
        }

        .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: #27ae60;
            box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
        }

        .result {
            background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            color: white;
            margin-top: 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
        }

        .result h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .result .amount {
            font-size: 3rem;
            font-weight: bold;
            margin: 1rem 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .result .savings {
            background: rgba(255,255,255,0.2);
            padding: 0.8rem;
            border-radius: 8px;
            margin-top: 1rem;
            font-size: 1.1rem;
            backdrop-filter: blur(10px);
        }

        /* Contact Section - Limpio */
        .contacto {
            padding: 5rem 5%;
            background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
        }

        .container {
            max-width: 700px;
            margin: 0 auto;
        }

        .contacto h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .contact-subtitle {
            text-align: center;
            color: #27ae60;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2c3e50;
            font-size: 1rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #27ae60;
            box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .btn {
            width: 100%;
            padding: 1.3rem;
            background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(39, 174, 96, 0.5);
        }

        /* Sección de prueba social - AHORA EN VERDE */
        .social-proof {
            background: linear-gradient(135deg, #27ae60 0%, #1e8449 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 #27ae60;
            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: #27ae60;
            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: #27ae60;
            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(39, 174, 96, 0.3);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(39, 174, 96, 0.2);
            border-color: #27ae60;
        }

        .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 #27ae60;
            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, #27ae60 0%, #1e8449 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: #27ae60;
            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: #27ae60;
        }

        .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: #27ae60;
        }

        .img-footer {
            width: 150px;
            margin-top: 1rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(39, 174, 96, 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;
            }
        }
