/* --- VARIABLES Y RESET --- */
        :root {
            --primary-color: #0d47a1;
            --secondary-color: #1565c0;
            --accent-color: #2e7d32;
            --whatsapp-color: #25d366;
            --text-dark: #333333;
            --bg-light: #f9f9f9;
            --shadow: 0 4px 6px rgba(0,0,0,0.1);
            --header-height: 70px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        body { line-height: 1.6; color: var(--text-dark); background-color: var(--bg-light); overflow-x: hidden; }
        a { text-decoration: none; }
        ul { list-style: none; }

        /* --- HEADER --- */
        header { background: #fff; box-shadow: var(--shadow); position: fixed; width: 100%; top: 0; z-index: 1000; height: var(--header-height); }
        .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
        .navbar { display: flex; justify-content: space-between; align-items: center; height: 100%; position: relative; }
        .logo-flex { display: flex; align-items: center; gap: 12px; }
        .nav-logo { height: 50px; width: auto; border-radius: 5px; }
        .nav-links { display: flex; gap: 20px; align-items: center; }
        .nav-links a { color: var(--text-dark); font-weight: 500; transition: 0.3s; }
        .nav-links a:hover { color: var(--primary-color); }
        .btn-header { background: var(--primary-color); color: #fff !important; padding: 8px 20px; border-radius: 5px; }
        .hamburger { display: none; cursor: pointer; font-size: 1.8rem; color: var(--primary-color); z-index: 1002; margin-left: auto; }
        .overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 998; display: none; opacity: 0; transition: opacity 0.3s ease; }
        .overlay.active { display: block; opacity: 1; }

        /* --- HERO SECTION --- */
        .hero { position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; margin-top: var(--header-height); overflow: hidden; padding: 20px; }
        .hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
        .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; }
        .slide.active { opacity: 1; }
        .hero-content { position: relative; z-index: 10; }
        .hero-content h1 { font-size: 3rem; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); line-height: 1.2; }
        .hero-content p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin: 0 auto 30px auto; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
        .btn-cta { background: var(--accent-color); color: #fff; padding: 15px 30px; font-size: 1.1rem; border-radius: 5px; font-weight: bold; display: inline-flex; align-items: center; gap: 10px; transition: transform 0.3s; }
        .btn-cta:hover { transform: scale(1.05); background: #256628; }

        /* --- TRUST BADGES --- */
        .trust-badges { background: #fff; padding: 30px 0; border-bottom: 1px solid #eee; }
        .badges-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; text-align: center; }
        .badge-item { flex: 1; min-width: 180px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .badge-item i { font-size: 1.5rem; color: var(--accent-color); }
        .badge-item span { font-weight: 700; font-size: 0.85rem; color: var(--primary-color); text-transform: uppercase; }
        .badge-item p { font-size: 0.75rem; color: #777; }

        /* --- SERVICIOS --- */
        .services { padding: 80px 0; }
        .section-title { text-align: center; margin-bottom: 50px; }
        .section-title h2 { font-size: 2.5rem; color: var(--primary-color); }
        .section-title p { max-width: 600px; margin: 0 auto; }
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
        .card { background: #fff; padding: 30px; border-radius: 10px; box-shadow: var(--shadow); text-align: center; transition: 0.3s; border-top: 5px solid var(--primary-color); }
        .card:hover { transform: translateY(-10px); }
        .card h3 { margin: 15px 0; color: var(--primary-color); }
        .card p { font-size: 0.9rem; color: #666; margin-bottom: 20px; }
        .card-btn { color: var(--primary-color); font-weight: bold; font-size: 0.9rem; }

        /* --- COBERTURA NACIONAL --- */
        .coverage { padding: 80px 0; background: #fff; border-bottom: 1px solid #eee; }
        .coverage-content { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 50px; }
        .coverage-map { flex: 1 1 300px; text-align: center; position: relative; min-height: 250px; display: flex; align-items: center; justify-content: center; }
        .coverage-map .main-icon { font-size: 12rem; color: #e3f2fd; }
        .coverage-map .pin-icon { position: absolute; color: var(--primary-color); font-size: 4rem; animation: bounce 2s infinite; }
        @keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-20px);} 60% {transform: translateY(-10px);} }
        .coverage-text { flex: 1 1 400px; }
        .coverage-text h2 { color: var(--primary-color); font-size: 2.2rem; margin-bottom: 20px; }
        .states-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 15px; margin-bottom: 30px; }
        .states-list li { font-size: 1rem; display: flex; align-items: center; gap: 10px; color: #555; }
        .states-list i { color: var(--accent-color); }
        .entities-logos { display: flex; gap: 10px; flex-wrap: wrap; }
        .entity-tag { background: #fff; padding: 8px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; color: var(--primary-color); border: 1px solid #e3f2fd; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }

        /* --- TARIFAS --- */
        .pricing { padding: 80px 0; background-color: #fff; }
        .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 40px; }
        .price-card { border: 1px solid #e0e0e0; border-radius: 15px; padding: 40px 20px; text-align: center; transition: all 0.3s ease; position: relative; overflow: hidden; }
        .price-card:hover { border-color: var(--primary-color); box-shadow: 0 10px 20px rgba(0,0,0,0.1); transform: translateY(-5px); }
        .price-card.popular { border: 2px solid var(--primary-color); background-color: #f8fbff; }
        .popular-badge { background: var(--primary-color); color: #fff; position: absolute; top: 20px; right: -35px; transform: rotate(45deg); padding: 5px 40px; font-size: 0.7rem; font-weight: bold; }
        .price-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--text-dark); }
        .price-amount { font-size: 2.5rem; font-weight: 800; color: var(--primary-color); margin-bottom: 20px; }
        .price-features { margin-bottom: 30px; text-align: left; padding-left: 20px; }
        .price-features li { margin-bottom: 10px; font-size: 0.95rem; color: #555; }
        .price-features i { color: var(--accent-color); margin-right: 10px; }
        .btn-price { display: block; background: var(--primary-color); color: #fff; padding: 12px; border-radius: 8px; font-weight: bold; transition: 0.3s; }
        .btn-price:hover { background: var(--secondary-color); }

        /* --- CÓMO FUNCIONA --- */
        .process { background: #e3f2fd; padding: 80px 0; text-align: center; }
        .steps { display: flex; justify-content: space-around; flex-wrap: wrap; margin-top: 40px; }
        .step-item { flex: 1; min-width: 250px; margin: 20px; }
        .step-number { background: var(--primary-color); color: #fff; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; margin: 0 auto 20px; }

        /* --- TRUST --- */
        .trust { padding: 100px 0; background: #fff; position: relative; overflow: hidden; }
        .trust::before { content: ''; position: absolute; top: -50px; right: -50px; width: 300px; height: 300px; background: rgba(46, 125, 50, 0.05); border-radius: 50%; z-index: 0; }
        .trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
        .trust-content h2 { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; line-height: 1.2; }
        .trust-content p { font-size: 1.1rem; color: #666; margin-bottom: 30px; }
        .trust-list { margin-top: 25px; display: flex; flex-direction: column; gap: 20px; }
        .trust-list li { display: flex; align-items: center; gap: 20px; background: #ffffff; padding: 15px 20px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-left: 5px solid var(--accent-color); transition: all 0.3s ease; }
        .trust-list li:hover { transform: translateX(10px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
        .trust-list i { color: #fff; font-size: 1.2rem; background: var(--accent-color); width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; box-shadow: 0 4px 6px rgba(46, 125, 50, 0.2); }
        .trust-text-container { display: flex; flex-direction: column; }
        .trust-list li strong { color: var(--primary-color); font-size: 1.1rem; margin-bottom: 2px; }
        .trust-list li span { font-size: 0.95rem; color: #555; line-height: 1.4; }
        .trust-image-container { position: relative; padding: 20px; }
        .trust img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0px rgba(13, 71, 161, 0.1); position: relative; z-index: 1; }
        @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
        .trust-badge { position: absolute; bottom: 0; left: 0; background: #fff; color: var(--text-dark); padding: 15px 25px; border-radius: 15px; font-weight: bold; display: flex; align-items: center; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border: 2px solid var(--accent-color); z-index: 2; animation: float 4s ease-in-out infinite; }
        .trust-badge i { color: var(--accent-color); }

        /* --- 🔹 TESTIMONIALS CAROUSEL MULTIPLE --- */
        .testimonials { padding: 80px 0; background: #f0f7ff; overflow: hidden; }
        
        .carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
            padding: 20px 0;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }

        .testimonial-slide {
            flex: 0 0 33.3333%; 
            min-width: 33.3333%;
            padding: 0 15px;
            box-sizing: border-box;
        }

        .testimonial-card { 
            background: #fff; 
            padding: 40px 30px; 
            border-radius: 20px; 
            box-shadow: 0 10px 25px rgba(13, 71, 161, 0.08); 
            text-align: center; 
            border: 1px solid #e3f2fd; 
            height: 100%; 
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .testimonial-card img { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 15px; object-fit: cover; border: 3px solid var(--primary-color); padding: 3px; }
        .testimonial-card h4 { color: var(--primary-color); font-size: 1.2rem; margin-bottom: 5px; }
        .stars { color: #ffc107; margin-bottom: 15px; font-size: 1rem; }
        .testimonial-card p { font-style: italic; color: #555; font-size: 1rem; line-height: 1.6; }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #fff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            color: var(--primary-color);
            font-size: 1.2rem;
            z-index: 10;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .carousel-btn:hover { background: var(--primary-color); color: #fff; }
        .btn-prev { left: 0px; }
        .btn-next { right: 0px; }

        .carousel-nav { display: flex; justify-content: center; margin-top: 10px; gap: 10px; }
        .carousel-indicator { border: none; width: 12px; height: 12px; background: #ccc; border-radius: 50%; cursor: pointer; transition: 0.3s; }
        .carousel-indicator.active-dot { background: var(--primary-color); transform: scale(1.2); }

        /* --- WHY US --- */
        .why-us{padding:80px 0;background:#fff}
        .why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:25px}
        .why-card{text-align:center;padding:25px;border-radius:10px;box-shadow:var(--shadow)}
        .why-card i{font-size:2rem;color:var(--primary-color);margin-bottom:10px}

        /* --- FAQ SECTION --- */
        .faq-section { padding: 80px 0; background-color: var(--bg-light); }
        .faq-container { max-width: 800px; margin: 0 auto; }
        .faq-item { background: #fff; margin-bottom: 15px; border-radius: 10px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); overflow: hidden; border: 1px solid #e0e0e0; }
        .faq-question { padding: 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; color: var(--primary-color); transition: background 0.3s; }
        .faq-question:hover { background-color: #f8fbff; }
        .faq-question i { transition: transform 0.3s ease; color: var(--accent-color); }
        .faq-item.active .faq-question i { transform: rotate(180deg); }
        .faq-item.active .faq-question { background-color: #e3f2fd; }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 20px; background: #fff; }
        .faq-answer p { padding: 20px 0; color: #555; font-size: 0.95rem; border-top: 1px solid #f0f0f0; }

        /* --- FOOTER --- */
        footer { background: var(--primary-color); color: #fff; padding: 40px 0; text-align: center; }
        .disclaimer { font-size: 0.8rem; opacity: 0.8; margin-top: 20px; max-width: 800px; margin-left: auto; margin-right: auto; }

        /* --- WHATSAPP --- */
        @keyframes pulse-animation { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); transform: scale(1); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); transform: scale(1.1); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); transform: scale(1); } }
        .whatsapp-float { position: fixed; bottom: 30px; right: 30px; background-color: var(--whatsapp-color); color: #fff; width: 65px; height: 65px; border-radius: 50%; text-align: center; font-size: 35px; z-index: 1000; display: flex; align-items: center; justify-content: center; text-decoration: none; animation: pulse-animation 2s infinite; transition: all 0.3s ease; }
        .whatsapp-float:hover { background-color: #1da851; animation: none; transform: scale(1.1); }

        /* =========================================
           --- MEDIA QUERIES (RESPONSIVE) --- 
           ========================================= */
        @media (max-width: 992px) {
            .hero-content h1 { font-size: 2.5rem; }
            .trust-grid { grid-template-columns: 1fr; gap: 40px; }
            .btn-prev { left: -10px; }
            .btn-next { right: -10px; }
            .testimonial-slide { flex: 0 0 50%; min-width: 50%; }
        }

        @media (max-width: 768px) {
            .navbar { padding: 0 20px; justify-content: space-between; }
            .nav-logo { height: 40px; }
            .hamburger { display: block; }
            .navbar nav { position: absolute; width: 0; height: 0; }
            .nav-links { position: fixed; left: -100%; top: 0; flex-direction: column; background-color: #fff; width: 75%; max-width: 300px; height: 100vh; text-align: left; padding-top: 80px; padding-left: 20px; padding-right: 20px; transition: 0.4s ease; box-shadow: 4px 0 15px rgba(0,0,0,0.1); z-index: 999; align-items: flex-start; }
            .nav-links.active { left: 0; }
            .nav-links li { width: 100%; margin: 15px 0; border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; }
            .nav-links a { font-size: 1.1rem; display: block; }
            .btn-header { display: block; text-align: center; margin-top: 20px; width: 100%; }

            .hero { min-height: auto; padding: 120px 20px 60px 20px; }
            .hero-content h1 { font-size: 1.8rem; }
            .btn-cta { width: 100%; justify-content: center; font-size: 1rem; }
            
            .coverage-content { flex-direction: column; text-align: center; gap: 30px; }
            .coverage-map { min-height: 200px; }
            .coverage-map .main-icon { font-size: 8rem; }
            .coverage-map .pin-icon { font-size: 3rem; }
            .states-list { text-align: left; }
            .entities-logos { justify-content: center; }

            .trust-image-container { margin-top: 20px; padding: 0 10px; }
            .trust-badge { padding: 10px 15px; font-size: 0.8rem; left: 50%; transform: translateX(-50%); bottom: -15px; width: 90%; justify-content: center; animation: none; }
            .whatsapp-float { width: 55px; height: 55px; font-size: 30px; bottom: 20px; right: 20px; }
            .testimonial-slide { flex: 0 0 100%; min-width: 100%; }
        }

        .popular-docs { padding: 80px 0; background: #fff; }
        .docs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
            gap: 25px;
        }
        .doc-card {
            background: #f8fbff;
            padding: 30px 20px;
            text-align: center;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: 0.3s;
        }
        .doc-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .doc-card:hover { transform: translateY(-8px); }

        /* --- DOC PREVIEW SECTION --- */
        .doc-preview { padding: 80px 0; background: #f0f7ff; overflow: hidden; }
        .preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .preview-text { padding-right: 20px; }
        .preview-text h2 { font-size: 2.2rem; color: var(--primary-color); margin-bottom: 20px; line-height: 1.2; }
        .preview-text p { font-size: 1.05rem; color: #555; margin-bottom: 30px; }
        .preview-list { margin: 25px 0; display: flex; flex-direction: column; gap: 15px; }
        .preview-list li { background: #fff; padding: 15px 20px; border-radius: 12px; box-shadow: 0 4px 10px rgba(13, 71, 161, 0.05); display: flex; align-items: center; gap: 15px; color: var(--text-dark); font-weight: 500; transition: transform 0.3s ease, box-shadow 0.3s ease; border-left: 4px solid transparent; }
        .preview-list li:hover { transform: translateX(10px); box-shadow: 0 6px 15px rgba(13, 71, 161, 0.1); border-left: 4px solid var(--accent-color); }
        .preview-list i { color: #fff; background: var(--accent-color); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 0.9rem; flex-shrink: 0; }
        .legal-note { margin-top: 30px; background: #fff; padding: 15px 20px; border-left: 5px solid var(--primary-color); border-radius: 8px; font-size: 0.9rem; display: flex; align-items: flex-start; gap: 15px; box-shadow: var(--shadow); }
        .legal-note i { font-size: 1.2rem; color: var(--primary-color); margin-top: 2px; }
        .preview-image { position: relative; display: flex; justify-content: center; align-items: center; }
        @keyframes floatImage { 0% { transform: translateY(0); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0); } }
        .preview-image img { width: 100%; max-width: 500px; height: auto; border-radius: 20px; box-shadow: 20px 20px 0 rgba(13, 71, 161, 0.1), 0 10px 20px rgba(0,0,0,0.1); border: 1px solid rgba(255,255,255,0.5); animation: floatImage 6s ease-in-out infinite; z-index: 2; }
        .preview-image::before { content: ''; position: absolute; width: 80%; height: 80%; background: var(--primary-color); opacity: 0.05; border-radius: 50%; z-index: 1; filter: blur(40px); }

        @media (max-width: 992px) { .preview-grid { gap: 40px; } .preview-text h2 { font-size: 1.8rem; } }
        @media (max-width: 768px) { .doc-preview { padding: 50px 0; } .preview-grid { grid-template-columns: 1fr; text-align: left; display: flex; flex-direction: column-reverse; gap: 30px; } .preview-text { padding-right: 0; } .preview-image img { max-width: 100%; box-shadow: 10px 10px 0 rgba(13, 71, 161, 0.1); } .preview-list li:hover { transform: none; } }

        .final-cta { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: #fff; padding: 80px 20px; text-align: center; }
        .final-cta h2 { font-size: 2.5rem; margin-bottom: 15px; }
        .final-cta p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }