
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, #f8f4ff 0%, #fff5f8 100%);
            color: #2c3e50;
        }
        
        header {
            background: linear-gradient(135deg, #6B2E6E 0%, #9B4D96 50%, #D96C9C 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }
        
        .logo span {
            color: #D9FFA8;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: #D9FFA8;
        }
        
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        
        .hero {
            background: linear-gradient(135deg, rgba(107,46,110,0.85), rgba(217,108,156,0.85)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            color: white;
            padding: 120px 0 60px;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            font-family: 'Playfair Display', serif;
        }
        
        .hero p {
            font-size: 1.1rem;
            margin-top: 10px;
        }
        
        .noticias-section {
            padding: 60px 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .orden-selector {
            text-align: right;
            margin-bottom: 30px;
        }
        
        .orden-selector label {
            margin-right: 10px;
            font-weight: 500;
        }
        
        .orden-selector select {
            padding: 8px 15px;
            border-radius: 25px;
            border: 2px solid #D96C9C;
            background: white;
            font-family: 'Montserrat', sans-serif;
            cursor: pointer;
            font-weight: 500;
        }
        
        .noticias-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
        }
        
        .noticia-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(107, 46, 110, 0.1);
            transition: all 0.3s ease;
            text-align: center;
            padding: 1.5rem;
        }
        
        .noticia-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(107, 46, 110, 0.2);
        }
        
        .noticia-imagen {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
            border: 3px solid #D96C9C;
        }
        
        .noticia-card h3 {
            color: #6B2E6E;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
        
        .noticia-fecha {
            color: #9B4D96;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .noticia-descripcion {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.5;
        }
        
        .btn {
            display: inline-block;
            padding: 10px 25px;
            background: linear-gradient(135deg, #D96C9C, #9B4D96);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(107,46,110,0.3);
        }
        
        footer {
            background: linear-gradient(135deg, #6B2E6E 0%, #9B4D96 100%);
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                text-align: center;
                padding: 1rem 0;
                gap: 1rem;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .orden-selector {
                text-align: center;
            }
        }
    