    /* Variables CSS usando EXACTAMENTE los colores del documento */
        :root {
            --primary-bg: #1A1A1A;    /* Fondo principal, texto claro */
            --secondary-bg: #DCDCDC;  /* Fondo secundario, bordes */
            --dark-text: #2E2E2E;     /* Texto principal, fondo oscuro */
            --accent: #EAE7DC;        /* Detalles, botones sutiles */
            --hover: #A9A9A9;         /* Hover, separadores, sombras */
            --light-text: #FFFFFF;    /* Para texto sobre fondos oscuros */
        }

        /* Modo oscuro - invirtiendo colores como especifica el documento */
        .dark-mode {
            --primary-bg: #EAE7DC;    /* Fondo oscuro */
            --secondary-bg: #1A1A1A;  /* Fondo secundario más oscuro */
            --dark-text: #F5F5F5;     /* Texto en color original de fondo principal */
            --accent: #2E2E2E;        /* Acento más oscuro */
            --hover: #3a3a3a;         /* Hover más claro */
            --light-text: #A9A9A9;    /* Texto claro */
        }

        /* Reset y estilos base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Bahnschrift Light Semicondensed', 'Segoe UI', sans-serif;
            background-color: var(--secondary-bg);
            color: var(--dark-text);
            line-height: 1.6;
            transition: all 0.3s ease;
        }

        h1, h2, h3, h4 {
            font-family: 'Rockwell', serif;
            font-weight: normal;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--accent);
            color: var(--dark-text);
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Bahnschrift Light Semicondensed', sans-serif;
            font-size: 1rem;
        }

        .btn:hover {
            background-color: var(--hover);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-primary {
            background-color: var(--primary-bg);
            color: var(--light-text);
        }

        .btn-primary:hover {
            background-color: var(--hover);
            color: var(--dark-text);
        }

        /* Header y Navegación */
        header {
            background-color: var(--secondary-bg);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--hover);
        }

        .header-scrolled {
            padding: 10px 0;
            background-color: var(--secondary-bg);
        }

        .dark-mode .header-scrolled {
            background-color: var(--secondary-bg);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-family: 'Rockwell', serif;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--dark-text);
        }

        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-link {
            position: relative;
            padding: 5px 0;
            transition: color 0.3s ease;
            font-family: 'Rockwell', serif;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-bg);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-text);
        }

        .theme-toggle {
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            color: var(--dark-text);
            margin-left: 20px;
        }

        /* Hero Section para Noticias */
        .news-hero {
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(46, 46, 46, 0.7), rgba(46, 46, 46, 0.7)), url('https://images.unsplash.com/photo-1513475382585-d06e58bcb0e0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: var(--light-text);
            text-align: center;
            padding: 0 20px;
            margin-top: 80px;
        }

        .news-hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .news-hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Sección de Calendario */
        .calendar-section {
            padding: 80px 0;
            background-color: var(--accent);
            overflow: scroll;
        }

        .calendar-section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            position: relative;
        }

        .calendar-section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background-color: var(--primary-bg);
            margin: 15px auto;
        }

        .calendar-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        /* Calendario */
        .calendar {
            background: var(--secondary-bg);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            box-sizing: content-box;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .calendar-nav {
            background: var(--primary-bg);
            color: var(--light-text);
            border: none;
            padding: 8px 12px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .calendar-nav:hover {
            background: var(--hover);
        }

        .calendar-month {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .calendar-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
            margin-bottom: 15px;
            text-align: center;
            font-weight: bold;
        }

        .calendar-weekday {
            padding: 10px;
            font-size: 0.9rem;
        }

        .calendar-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
        }

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.9rem;
        }

        .calendar-day.empty {
            background: transparent;
            cursor: default;
        }

        .calendar-day.normal {
            background: var(--accent);
        }

        .calendar-day.event {
            background: var(--primary-bg);
            color: var(--light-text);
            font-weight: bold;
        }

        .calendar-day.event::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: var(--light-text);
            border-radius: 50%;
        }

        .calendar-day.today {
            background: #FF5F55;
            color: white;
            font-weight: bold;
        }

        .calendar-day:hover:not(.empty) {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Eventos del Calendario */
        .calendar-events {
            background: var(--secondary-bg);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .calendar-events h3 {
            margin-bottom: 25px;
            font-size: 1.5rem;
            text-align: center;
        }

        .event-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .event-item {
            background: var(--accent);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--primary-bg);
            transition: all 0.3s ease;
        }

        .event-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .event-date {
            color: var(--primary-bg);
            font-weight: bold;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .event-title {
            font-size: 1.1rem;
            margin-bottom: 5px;
            font-family: 'Rockwell', serif;
        }

        .event-description {
            font-size: 0.9rem;
            color: var(--dark-text);
            opacity: 0.8;
        }

        /* Sección Principal de Noticias */
        .news-main {
            padding: 80px 0;
            background-color: var(--secondary-bg);
        }

        .news-section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            position: relative;
        }

        .news-section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background-color: var(--primary-bg);
            margin: 15px auto;
        }

        /* Grid de Noticias */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .news-article {
            background-color: var(--accent);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid var(--hover);
        }

        .news-article:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .news-article.featured {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .news-article-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .news-article.featured .news-article-img {
            height: 100%;
            min-height: 350px;
        }

        .news-article-content {
            padding: 30px;
        }

        .news-article.featured .news-article-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .news-date {
            color: var(--primary-bg);
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .news-article h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-family: 'Rockwell', serif;
        }

        .news-article.featured h3 {
            font-size: 2rem;
        }

        .news-article.featured>.news-article-content>.btn{
            display: none;
        }

        .news-article p {
            margin-bottom: 20px;
            color: var(--dark-text);
            line-height: 1.7;
        }

        .news-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .news-tag {
            background-color: var(--primary-bg);
            color: var(--light-text);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        /* Sección de Newsletter */
        .newsletter-section {
            padding: 80px 0;
            background-color: var(--accent);
            text-align: center;
        }

        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .newsletter-content p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid var(--hover);
            border-radius: 4px;
            font-family: 'Bahnschrift Light Semicondensed', sans-serif;
            background-color: var(--secondary-bg);
            color: var(--dark-text);
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary-bg);
        }

        /* Footer */
        footer {
            background-color: var(--dark-text);
            color: var(--light-text);
            padding: 50px 0 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-column h3 {
            margin-bottom: 20px;
            color: var(--accent);
            font-family: 'Rockwell', serif;
        }

        .footer-column ul li {
            margin-bottom: 10px;
            font-family: 'Bahnschrift Light Semicondensed', sans-serif;
        }

        .footer-column ul li a:hover {
            color: var(--primary-bg);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--accent);
            color: var(--dark-text);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary-bg);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--hover);
            font-family: 'Bahnschrift Light Semicondensed', sans-serif;
        }

        .overflow-hidden{
            max-height: 5rem;
            overflow: hidden;
        }

        .overflow-hidden::before{
            content: ' ... ';
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background-color: var(--secondary-bg);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
                z-index: 999;
                border-top: 1px solid var(--hover);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-toggle {
                display: block;
            }

            .news-hero {
                height: 50vh;
                margin-top: 70px;
            }

            .news-hero-content h1 {
                font-size: 2.5rem;
            }

            .calendar-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .calendar {
                padding: 20px;
            }

            .calendar-day {
                font-size: 0.8rem;
            }

            .news-article.featured {
                grid-template-columns: 1fr;
            }

            .news-article.featured .news-article-img {
                height: 250px;
            }

            .newsletter-form {
                flex-direction: column;
            }
        }