      
	   *{
            font-family: 'Poppins', sans-serif;
        }
	  /* Ajustes para desktop - tamaño óptimo */
        body {
            min-width: 320px;
        }
        .container {
            max-width: 1400px;
        }
        
        /* Animaciones y efectos */
        .fade-in {
            animation: fadeIn 0.8s ease-in;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .slide-in-left {
            animation: slideInLeft 0.8s ease-out;
        }
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .slide-in-right {
            animation: slideInRight 0.8s ease-out;
        }
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        /* Efectos hover */
        .hover-lift {
            transition: all 0.3s ease;
        }
        .hover-lift:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(9, 147, 151, 0.15);
        }
        
        .btn-hover-effect {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .btn-hover-effect:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        /* Gradientes personalizados */
        .hero-gradient {
            background: linear-gradient(135deg, #099397 0%, #3db6aa 50%, #afd962 100%);
        }
        
        .stats-gradient {
            background: linear-gradient(135deg, rgba(9, 147, 151, 0.9) 0%, rgba(61, 182, 170, 0.9) 100%);
        }
        
        /* Efectos especiales */
        .timeline-line {
            position: relative;
        }
        .timeline-line::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #099397, #afd962);
            transform: translateX(-50%);
        }
        
        /* Mapa interactivo */
        .coverage-map {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        
        /* Certificaciones */
        .cert-badge {
            transition: all 0.3s ease;
        }
        .cert-badge:hover {
            transform: scale(1.05) rotate(2deg);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .timeline-line::before {
                left: 20px;
            }
        }