/* --- 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: 75px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', 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%; 
        }

        /* Ajuste del Logo */
        .logo-container { display: flex; align-items: center; height: 100%; }
        .nav-logo { 
            height: 50px; 
            width: auto; 
            display: block;
            transition: transform 0.3s;
        }
        .nav-logo:hover { transform: scale(1.05); }
        
        /* Menú Desktop */
        .nav-links { display: flex; gap: 20px; align-items: center; }
        .nav-links a { color: var(--text-dark); font-weight: 500; transition: color 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; }

        /* Botón Hamburguesa */
        .hamburger { 
            display: none; 
            cursor: pointer; 
            font-size: 1.8rem; 
            color: var(--primary-color); 
            z-index: 1002;
            padding: 10px; 
        }

        .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 --- */
        .hero { position: relative; height: 60vh; min-height: 400px; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; margin-top: var(--header-height); overflow: hidden; padding: 0 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; max-width: 800px; }
        .hero-content h1 { font-size: 2.5rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); margin-bottom: 10px; }

        /* --- CONTENIDO --- */
        .detail-section { padding: 60px 0; background: #fff; }
        .detail-container { max-width: 800px; margin: 0 auto; }
        .info-card { background: #fff; padding: 30px; border-radius: 10px; box-shadow: var(--shadow); margin-bottom: 30px; border-left: 6px solid var(--primary-color); }
        .info-card h2 { color: var(--primary-color); margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-size: 1.5rem; }

        /* --- CTA BOX --- */
        .cta-box { background: #e3f2fd; padding: 40px; border-radius: 15px; text-align: center; border: 2px dashed var(--primary-color); }
        .btn-large { background: var(--accent-color); color: #fff; padding: 20px 40px; border-radius: 8px; font-weight: bold; font-size: 1.2rem; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; }

        /* --- 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 --- */
        .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; animation: pulse-animation 2s infinite; }

        @keyframes pulse-animation { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

        /* =========================================
           --- MEDIA QUERIES (RESPONSIVE) --- 
           ========================================= */

        @media (max-width: 768px) {
            .container { padding: 0 15px; }
            
            /* --- CORRECCIÓN HAMBURGUESA --- */
            .hamburger { 
                display: block; 
                margin-left: auto; /* Esto empuja el menú a la derecha extrema */
            }

            .nav-logo { height: 40px; }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 80%;
                max-width: 300px;
                background-color: #fff;
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 30px;
                transition: right 0.4s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                z-index: 999;
            }

            .nav-links.active { right: 0; }
            .nav-links li { margin: 15px 0; width: 100%; }
            .nav-links a { font-size: 1.2rem; }

            /* Ajustes de secciones */
            .hero { height: 45vh; }
            .hero-content h1 { font-size: 1.8rem; }
            .info-card { padding: 20px; }
            .btn-large { width: 100%; padding: 15px; font-size: 1.1rem; }
        }

        /* --- TARIFAS (MEJORADO) --- */
        .pricing { padding: 80px 0; background-color: #fff; }
        
        /* Centrado del grid si hay pocos elementos */
        .pricing-grid { 
            display: flex; /* Cambiado de grid a flex para centrar mejor 1 solo elemento */
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px; 
            margin-top: 40px; 
            margin-bottom: 40px; /* Espacio extra abajo */
        }
        
        .price-card { 
            flex: 0 1 350px; /* Ancho base controlado */
            border: 1px solid #e0e0e0; 
            border-radius: 15px; 
            padding: 40px 20px; 
            text-align: center; 
            transition: all 0.3s ease; 
            position: relative; 
            overflow: hidden; 
            background: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Sombra suave por defecto */
            border-top: 5px solid var(--primary-color); /* Acento superior */
        }

        .price-card:hover { 
            border-color: var(--primary-color); 
            box-shadow: 0 15px 30px rgba(13, 71, 161, 0.15); /* Sombra mejorada al hover */
            transform: translateY(-5px); 
        }

        .price-card h3 { font-size: 1.6rem; margin-bottom: 15px; color: var(--primary-color); font-weight: 700; }
        .price-amount { font-size: 2.8rem; font-weight: 800; color: var(--text-dark); margin-bottom: 25px; }
        .price-amount span { font-size: 1rem; color: #777; font-weight: normal;}
        
        /* Lista mejorada */
        .price-features { margin-bottom: 30px; text-align: left; padding: 0 10px; }
        .price-features li { 
            margin-bottom: 12px; 
            font-size: 1rem; 
            color: #555; 
            background-color: #f4f8fb; /* Fondo sutil para cada item */
            padding: 10px 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
        }
        .price-features i { color: var(--whatsapp-color); margin-right: 12px; font-size: 1.1rem; }
        
        .btn-price { 
            display: block; 
            background: var(--primary-color); 
            color: #fff; 
            padding: 15px; 
            border-radius: 50px; /* Botón más redondeado */
            font-weight: bold; 
            transition: 0.3s; 
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            box-shadow: 0 4px 10px rgba(13, 71, 161, 0.3);
        }
        .btn-price:hover { background: var(--secondary-color); transform: scale(1.02); }