/* Ajustes para desktop - tamaño óptimo */
        body {
            min-width: 320px;
        }
        .container {
            max-width: 1400px;
        }
        
        /* Animaciones y efectos */
        .article-card {
            transition: all 0.3s ease;
        }
        .article-card: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);
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease-in;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Hero con parallax */
        .hero-parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        /* Efectos especiales para el blog */
        .blog-gradient {
            background: linear-gradient(135deg, #099397 0%, #3db6aa 50%, #afd962 100%);
        }
        
        /* Categorías */
        .category-tag {
            transition: all 0.3s ease;
        }
        .category-tag:hover {
            transform: scale(1.05);
        }
        
        /* Artículos destacados */
        .featured-article {
            background: linear-gradient(135deg, rgba(9, 147, 151, 0.9) 0%, rgba(61, 182, 170, 0.9) 100%);
        }
        
        /* Búsqueda avanzada */
        .search-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-parallax {
                background-attachment: scroll;
            }
        }
        
        /* Elementos interactivos */
        .interactive-element {
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .interactive-element:hover {
            transform: scale(1.02);
        }
        
        /* Efectos de lectura */
        .reading-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(to right, #099397, #afd962);
            z-index: 1000;
            transition: width 0.3s ease;
        }
  