        /*
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }
        */
        /* Top Banner */
        .top-banner {
            background: var(--color-secundario) ;  /* #28a745;*/
            color: white;
            text-align: center;
            padding: 10px;
            font-size: 14px;
        }

        .top-banner a {
            color: white;
            text-decoration: underline;
            font-weight: bold;
        }

        /* Contact Bar */
        .contact-bar {
            background:  var(--color-secundario);
            color: white;
            padding: 10px 0;
            font-size: 13px;
        }

        .contact-bar .container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .contact-bar a {
            color:  white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .contact-bar a:hover {
            color:white; /* #ffc107;*/
        }

        /* Header Info */
        .header-info {
            background: white;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-info .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            height: 60px;
        }

        .logo-text {
            font-size: 28px;
            font-weight: bold;
        }

        .logo-text span {
            color:#FFF500; /* #ffc107;*/
        }

        .info-sections {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .info-box {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .info-box i {
            font-size: 24px;
            color: #FFF500; /* #ffc107;*/
        }

        .info-box h4 {
            margin-bottom: 5px;
            color: #343a40;
        }

        .info-box p {
            font-size: 13px;
            color: #666;
        }

        /* Navigation */
        .navbar {
            background: #f8f9fa;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0;
            width: 100%;
            justify-content: space-between;
        }

        .nav-menu > li {
            position: relative;
            flex: 1;
            text-align: center;
        }

        .nav-menu > li > a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 15px 5px;
            color: #343a40;
            text-decoration: none;
            font-weight: 500;
            font-size: 11px;
            text-transform: uppercase;
            transition: all 0.3s;
            height: 100%;
            width: 100%;
            white-space: nowrap;
            line-height: 1.2;
        }

        .nav-menu > li > a:hover {
            background: #033C95; /* #28a745;*/
            color: white;
        }

        .nav-menu > li > a i {
            font-size: 9px;
            transition: transform 0.3s;
            flex-shrink: 0;
        }

        .nav-menu > li:hover > a i {
            transform: rotate(180deg);
        }

        /* Dropdown - CORREGIDO PARA ELIMINAR VIÑETAS */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            min-width: 280px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            z-index: 1001;
            list-style: none; /* Elimina viñetas */
            padding: 0; /* Elimina padding por defecto */
            margin: 0; /* Elimina margen por defecto */
        }

        .dropdown li {
            list-style: none; /* Elimina viñetas en items */
            margin: 0; /* Elimina margen */
            padding: 0; /* Elimina padding */
        }

        .dropdown li::before {
            display: none; /* Elimina pseudo-elementos si los hubiera */
        }

        .nav-menu > li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown li a {
            display: block;
            padding: 12px 20px;
            color: #343a40;
            text-decoration: none;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s;
            text-align: left;
            font-size: 13px;
        }

        .dropdown li a:hover {
            background: #033C95; /* #28a745;*/
            color: white;
            padding-left: 25px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            z-index: 1002;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #343a40;
            margin: 3px 0;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Slider */
        .slider {
            position: relative;
            height: 600px;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
        }

        .slide-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 20px;
            max-width: 1000px;
        }

        .slide-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-transform: uppercase;
            animation: fadeInUp 1s;
        }

        .slide-content h2 {
            font-size: 36px;
            margin-bottom: 15px;
            animation: fadeInUp 1s 0.2s both;
        }

        .slide-content h3 {
            font-size: 32px;
            animation: fadeInUp 1s 0.4s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 15px 20px;
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
        }

        .slider-btn:hover {
            background: rgb(226, 0, 14); /*rgba(40, 167, 69, 0.8);*/
        }

        .prev { left: 20px; }
        .next { right: 20px; }

        /* Sections */
        .section {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 40px;
            color: #343a40;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #DA251C; /* #28a745;*/
            margin: 15px auto;
        }

        /* Programs */
        .programs {
            background: #f8f9fa;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .program-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .program-card i {
            font-size: 48px;
            color: #033C95;
            margin-bottom: 20px;
        }

        .program-card h3 {
            color: #343a40;
            margin-bottom: 15px;
        }

        /* News */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .news-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .news-image {
            height: 200px;
            background: linear-gradient(135deg, #DA251C, #DA251C);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
        }

        .news-content {
            padding: 20px;
        }

        .news-date {
            color: #E2000E;
            font-size: 13px;
            margin-bottom: 10px;
        }

        .news-card h3 {
            color: #343a40;
            margin-bottom: 15px;
        }

        .btn {
            display: inline-block;
            padding: 10px 25px;
            background: #E2000E;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s;
        }

        .btn:hover {
            background: #E2000E;
        }

        /* Footer */
        footer {
            background: #343a40;
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: #adb5bd; /*#ffc107;*/
        }

        .footer-section p, .footer-section a {
            color: #adb5bd;
            text-decoration: none;
            line-height: 2;
        }

        .footer-section a:hover {
            color:#adb5bd; /* #28a745;*/
        }

        .footer-section i {
            margin-right: 10px;
            color: #adb5bd; /* #ffc107;*/
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border: 2px solid #adb5bd; /* #28a745; */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #adb5bd; /* #28a745;*/
            transition: all 0.3s;
            background: transparent;
        }

        .social-links a:hover {
            background: #0059AB;
            color: white;
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #495057;
            color: #adb5bd;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 0;
                flex-direction: column;
                background: #f8f9fa;
                width: 100%;
                height: 100vh;
                text-align: left;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding-top: 70px;
                overflow-y: auto;
                gap: 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu > li {
                width: 100%;
                border-bottom: 1px solid #dee2e6;
            }

            .nav-menu > li > a {
                justify-content: space-between;
                padding: 15px 20px;
                font-size: 14px;
            }

            .nav-menu > li > a i {
                font-size: 12px;
                transition: transform 0.3s;
            }

            .nav-menu > li.active > a i {
                transform: rotate(180deg);
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: #e9ecef;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-in-out;
                min-width: 100%;
            }

            .dropdown.show {
                max-height: 500px;
            }

            .dropdown li a {
                padding: 12px 30px;
                font-size: 13px;
            }

            .dropdown li a:hover {
                padding-left: 35px;
            }

            .slide-content h1 {
                font-size: 32px;
            }

            .slide-content h2 {
                font-size: 24px;
            }

            .slide-content h3 {
                font-size: 20px;
            }

            .info-sections {
                flex-direction: column;
                width: 100%;
            }

            .header-info .container {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .slider {
                height: 500px;
            }

            .slide-content h1 {
                font-size: 24px;
            }

            .slide-content h2 {
                font-size: 20px;
            }

            .slide-content h3 {
                font-size: 16px;
            }

            .section-title {
                font-size: 28px;
            }

            .nav-menu > li > a {
                padding: 12px 15px;
                font-size: 13px;
            }
        }

        @media (max-width: 1200px) {
            .nav-menu > li > a {
                font-size: 10px;
                padding: 15px 3px;
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
