 /* === ESTILOS CSS COMPLETOS === */
        
        /* Ajuste global para evitar scroll horizontal */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            overflow-x: hidden;
            font-family: "Arial", sans-serif;
            background: #000;
            color: white;
            scroll-behavior: smooth;
        }

        /* NAVBAR */
        .navbar {
            width: 100%;
            padding: 15px 5%;
            background: rgba(0,0,0,0.95);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid goldenrod;
            position: sticky;
            top: 0;
            z-index: 10000;
            backdrop-filter: blur(10px);
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            width: 50px;
            height: 50px;
            margin-right: 12px;
            border-radius: 50%;
            object-fit: contain;
        }

        .logo span {
            font-size: 22px;
            font-weight: bold;
            color: gold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        nav {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        /* ENLACES DEL NAVBAR - VISIBLES EN DESKTOP */
        .desktop-menu {
            display: flex;
            align-items: center;
        }

        .desktop-menu a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .desktop-menu a:not(.btn-login):not(.btn-form):hover {
            color: gold;
            transform: translateY(-2px);
        }

        .desktop-menu a:not(.btn-login):not(.btn-form)::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: gold;
            transition: width 0.3s ease;
        }

        .desktop-menu a:not(.btn-login):not(.btn-form):hover::after {
            width: 100%;
        }

        /* BOTONES COMO ENLACES */
        .desktop-menu a.btn-login,
        .desktop-menu a.btn-form {
            display: inline-block;
            text-decoration: none;
            text-align: center;
            border: 1px solid gold;
            padding: 8px 18px;
            margin-left: 15px;
            color: gold;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            white-space: nowrap;
            background: transparent;
        }

        .desktop-menu a.btn-login:hover,
        .desktop-menu a.btn-form:hover {
            background: gold;
            color: black;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
            text-decoration: none;
        }

        /* =========== MENÚ HAMBURGUESA =========== */
        /* Contenedor para el menú hamburguesa */
        .nav-right {
            display: flex;
            align-items: center;
        }

        /* MENÚ HAMBURGUESA - SOLO VISIBLE EN MÓVIL, COLOCADO A LA DERECHA */
        .menu-toggle {
            display: none;
            font-size: 24px;
            color: gold;
            cursor: pointer;
            background: none;
            border: none;
            outline: none;
            margin-left: 20px;
            z-index: 10002;
            position: relative;
            padding: 8px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .menu-toggle:hover {
            background: rgba(255, 215, 0, 0.1);
            transform: scale(1.1);
        }

        .menu-toggle:active {
            transform: scale(0.95);
        }

        /* MENÚ MÓVIL - OCULTO POR DEFECTO */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            background: rgba(0, 0, 0, 0.98);
            padding: 80px 30px 30px;
            z-index: 10001;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            border-left: 1px solid gold;
        }

        .mobile-menu.active {
            display: flex;
            flex-direction: column;
            transform: translateX(0);
        }

        /* Estilos para los enlaces del menú móvil */
        .mobile-menu a {
            display: block;
            margin: 15px 0;
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #333;
            font-size: 18px;
            width: 100%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .mobile-menu a:not(.btn-login):not(.btn-form):hover {
            color: gold;
            transform: translateX(5px);
            border-bottom-color: gold;
        }

        .mobile-menu a.btn-login,
        .mobile-menu a.btn-form {
            margin: 20px 0;
            padding: 15px;
            font-size: 16px;
            border: 1px solid gold;
            border-radius: 5px;
            background: transparent;
            color: gold;
            text-align: center;
            width: 100%;
            display: block;
        }

        .mobile-menu a.btn-login:hover,
        .mobile-menu a.btn-form:hover {
            background: gold;
            color: black;
        }

        /* Overlay cuando el menú está abierto */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            display: none;
        }

        .menu-overlay.active {
            display: block;
        }

        /* =========== HERO SECTION - CARRUSEL FUNCIONAL =========== */
        .hero {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            background: #000; /* Fondo negro para el contenedor */
        }

        /* CARRUSEL CONTAINER */
        .carousel-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        /* IMAGENES PARA DESKTOP (1920x1080) - COLOR ORIGINAL, SIN FILTROS */
        .carousel-slide .desktop-img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            /* SIN FILTROS NI OVERLAYS - COLOR ORIGINAL */
            filter: none !important;
            opacity: 1 !important;
        }

        /* IMAGENES PARA MÓVIL (OCULTAS POR DEFECTO) - COLOR ORIGINAL, SIN FILTROS */
        .carousel-slide .mobile-img {
            display: none;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            /* SIN FILTROS NI OVERLAYS - COLOR ORIGINAL */
            filter: none !important;
            opacity: 1 !important;
        }

        /* =========== FLECHAS QUE SÍ FUNCIONAN =========== */
        .carousel-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
        }

        .carousel-arrow {
            width: 60px;
            height: 60px;
            background: rgba(0, 0, 0, 0.7);
            border: 2px solid gold;
            border-radius: 50%;
            color: gold;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            pointer-events: auto;
            z-index: 1001;
            position: relative;
        }

        .carousel-arrow:hover {
            background: gold;
            color: black;
            transform: scale(1.1);
        }

        .carousel-arrow:active {
            transform: scale(0.95);
        }

        /* Puntos de navegación */
        .carousel-dots {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 1000;
        }

        .carousel-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: 2px solid rgba(255, 215, 0, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: auto;
        }

        .carousel-dot.active {
            background: gold;
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
        }

        .carousel-dot:hover {
            background: #ffd700;
            transform: scale(1.2);
        }

        /* =========== CONTENEDOR DE CONFETI =========== */
        .confetti-container {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 2; /* Debajo de flechas y puntos pero sobre imágenes */
            pointer-events: none;
        }

        .confetti {
            position: absolute;
            width: 10px;
            height: 20px;
            top: -20px;
            opacity: 0;
            animation: confettiFall 5s infinite linear;
            z-index: 2;
        }

        .confetti:nth-child(odd) {
            background: #ff6b6b;
        }
        
        .confetti:nth-child(even) {
            background: #4ecdc4;
        }
        
        .confetti:nth-child(3n) {
            background: #ffe66d;
        }
        
        .confetti:nth-child(5n) {
            background: #1a535c;
        }

        @keyframes confettiFall {
            0% {
                transform: translateY(-20px) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotate(720deg);
                opacity: 0;
            }
        }

        /* SECCIÓN SERVICIOS */
        .servicios {
            padding: 80px 5%;
            background: #0d0d0d;
            position: relative;
            overflow: hidden;
        }

        .servicios::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .section-title {
            text-align: center;
            color: gold;
            font-size: 36px;
            margin-bottom: 50px;
            position: relative;
            display: block;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: gold;
            margin: 15px auto 0;
            animation: expandWidth 2s ease-out;
        }

        @keyframes expandWidth {
            from {
                width: 0;
            }
            to {
                width: 80px;
            }
        }

        .servicios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .servicio-card {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 35px 25px;
            text-align: center;
            border: 1px solid #333;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .servicio-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .servicio-card:hover::before {
            left: 100%;
        }

        .servicio-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: gold;
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1),
                        inset 0 0 20px rgba(255, 215, 0, 0.05);
        }

        .servicio-icon {
            font-size: 45px;
            color: gold;
            margin-bottom: 25px;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .servicio-card:hover .servicio-icon {
            transform: scale(1.2) rotate(10deg);
            color: #ffd700;
        }

        .servicio-card h3 {
            color: gold;
            font-size: 24px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .servicio-card h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: gold;
            transition: width 0.3s ease;
        }

        .servicio-card:hover h3::after {
            width: 50%;
        }

        .servicio-card p {
            color: #ccc;
            line-height: 1.6;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .servicio-card:hover p {
            color: #fff;
        }

        /* SOBRE EL EVENTO */
        .sobre-evento {
            text-align: center;
            padding: 80px 5%;
            background: linear-gradient(180deg, #111, #000);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .sobre-evento::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            top: -150px;
            right: -150px;
            animation: rotate 20s infinite linear;
        }

        .sobre-evento::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            animation: rotate 15s infinite linear reverse;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .sobre-evento .container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .evento-logo {
            width: 200px;
            height: 200px;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .evento-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
        }

        .sobre-evento h2 {
            color: gold;
            font-size: 38px;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .sobre-evento h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: gold;
            border-radius: 2px;
        }

        .sobre-evento .descripcion {
            max-width: 900px;
            margin: auto;
            font-size: 19px;
            line-height: 1.8;
            color: #e6e6e6;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        /* NUEVA SECCIÓN: FLYERS Y FECHA DEL EVENTO */
        .flyers-section {
            padding: 60px 5%;
            background: linear-gradient(180deg, #000, #111);
            position: relative;
            overflow: hidden;
        }

        .flyers-section::before {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            top: -75px;
            left: -75px;
            animation: rotate 20s infinite linear;
        }

        .flyers-section::after {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
            bottom: -60px;
            right: -60px;
            animation: rotate 15s infinite linear reverse;
        }

        .flyers-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .fecha-evento {
            text-align: center;
            margin-bottom: 50px;
        }

        .fecha-evento h3 {
            color: gold;
            font-size: 32px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .fecha-evento h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: gold;
            border-radius: 2px;
        }

        .fecha-evento .fecha-destacada {
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid gold;
            border-radius: 12px;
            padding: 20px 40px;
            display: inline-block;
            margin-top: 15px;
        }

        .fecha-evento .fecha-destacada p {
            font-size: 28px;
            color: #ffd700;
            font-weight: bold;
            margin: 0;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        .flyers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .flyer-card {
            background: #1a1a1a;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            transition: all 0.4s ease;
            border: 1px solid #333;
        }

        .flyer-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: gold;
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2),
                        0 0 40px rgba(255, 215, 0, 0.1);
        }

        .flyer-img-container {
            width: 100%;
            height: 400px;
            overflow: hidden;
            position: relative;
        }

        .flyer-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .flyer-card:hover .flyer-img-container img {
            transform: scale(1.05);
        }

        .flyer-info {
            padding: 25px;
            text-align: center;
        }

        .flyer-info h4 {
            color: gold;
            font-size: 22px;
            margin-bottom: 10px;
        }

        .flyer-info p {
            color: #ddd;
            font-size: 16px;
            line-height: 1.6;
        }

        /* OBJETIVOS EN CARDS */
        .objetivos-cards {
            padding: 80px 5%;
            background: #000;
            position: relative;
            overflow: hidden;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .card {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 40px 25px;
            text-align: center;
            border-top: 4px solid gold;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .card:hover::before {
            transform: translateX(100%);
        }

        .card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15),
                        0 0 40px rgba(255, 215, 0, 0.1);
        }

        .card-icon {
            font-size: 50px;
            margin-bottom: 25px;
            display: inline-block;
            transition: all 0.3s ease;
            color: gold;
        }

        .card:hover .card-icon {
            transform: scale(1.2);
            filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
        }

        .card h3 {
            color: gold;
            font-size: 24px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .card:hover h3 {
            color: #ffd700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        .card p {
            color: #ccc;
            line-height: 1.6;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .card:hover p {
            color: #fff;
        }

        /* NUEVOS MÓDULOS - OBJETIVOS ESPECÍFICOS */
        .modulos-especificos {
            padding: 80px 5%;
            background: linear-gradient(180deg, #000, #111);
            position: relative;
        }

        .modulos-especificos::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
            pointer-events: none;
        }

        .modulos-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .modulo-item {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            border-left: 5px solid gold;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .modulo-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15);
        }

        .modulo-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            position: relative;
        }

        .modulo-icon {
            font-size: 40px;
            color: gold;
            margin-right: 20px;
            width: 70px;
            height: 70px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .modulo-item:hover .modulo-icon {
            background: rgba(255, 215, 0, 0.2);
            transform: scale(1.1);
        }

        .modulo-header h3 {
            color: gold;
            font-size: 28px;
            margin: 0;
            flex: 1;
        }

        .modulo-content {
            color: #ddd;
            line-height: 1.8;
            font-size: 17px;
        }

        .modulo-subtitle {
            color: #ffd700;
            font-weight: bold;
            font-size: 19px;
            margin: 25px 0 15px;
            position: relative;
            display: inline-block;
        }

        .modulo-subtitle::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 2px;
            background: gold;
            border-radius: 2px;
        }

        .modulo-list {
            list-style: none;
            padding: 0;
            margin: 20px 0 10px 20px;
        }

        .modulo-list li {
            margin: 15px 0;
            padding-left: 35px;
            position: relative;
            font-size: 16px;
            line-height: 1.6;
            color: #e6e6e6;
        }

        .modulo-list li:before {
            content: "✓";
            color: gold;
            font-weight: bold;
            font-size: 18px;
            position: absolute;
            left: 0;
            top: 0;
            transition: all 0.3s ease;
        }

        .modulo-list li:hover:before {
            transform: scale(1.2);
            text-shadow: 0 0 5px gold;
        }

        /* EVENTO QUE HARÁ HISTORIA - CON IMÁGENES EN LUGAR DE ICONOS */
        .historia-modulo {
            padding: 80px 5%;
            background: linear-gradient(180deg, #111, #000);
            position: relative;
            overflow: hidden;
        }

        .historia-modulo::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            top: -100px;
            left: -100px;
            animation: rotate 20s infinite linear reverse;
        }

        .historia-modulo::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
            bottom: -75px;
            right: -75px;
            animation: rotate 15s infinite linear;
        }

        .historia-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Categorías principales */
        .categoria-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px; /* Reducido de 50px a 40px para móviles */
            margin-top: 40px;
        }

        .categoria-item {
            background: #1a1a1a;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.4s ease;
            margin-bottom: 20px;
        }

        .categoria-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
        }

        .categoria-header {
            display: flex;
            align-items: center;
            padding: 20px; /* Reducido de 25px */
            background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
            border-bottom: 2px solid gold;
        }

        /* NUEVOS ESTILOS PARA IMÁGENES EN ICONOS DE CATEGORÍA */
        .categoria-img {
            width: 80px; /* Reducido de 100px para mejor adaptación */
            height: 80px; /* Reducido de 100px */
            margin-right: 20px; /* Reducido de 25px */
            background: rgba(255, 215, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
            overflow: hidden;
            border: 2px solid rgba(255, 215, 0, 0.2);
        }

        .categoria-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .categoria-img.fallback-icon {
            background: rgba(255, 215, 0, 0.15);
        }

        .categoria-img.fallback-icon i {
            font-size: 35px; /* Reducido de 40px */
            color: gold;
        }

        .categoria-item:hover .categoria-img {
            background: rgba(255, 215, 0, 0.2);
            transform: scale(1.05);
            border-color: rgba(255, 215, 0, 0.4);
        }

        .categoria-item:hover .categoria-img img {
            transform: scale(1.1);
        }

        .categoria-item:hover .categoria-img.fallback-icon i {
            transform: scale(1.1);
        }

        .categoria-header h3 {
            color: gold;
            font-size: 24px; /* Reducido de 28px */
            margin: 0;
            flex: 1;
            line-height: 1.3; /* Añadido para mejor ajuste en móvil */
        }

        .categoria-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 15px; /* Reducido de 20px */
            padding: 20px; /* Reducido de 30px */
        }

        .categoria-card {
            background: #2a2a2a;
            border-radius: 10px;
            padding: 15px; /* Reducido de 20px */
            border-left: 4px solid gold;
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-start;
            min-height: 90px; /* Reducido de 100px */
        }

        .categoria-card:hover {
            transform: translateY(-3px);
            background: #333;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
        }

        /* NUEVOS ESTILOS PARA IMÁGENES EN TARJETAS PEQUEÑAS */
        .card-img-small {
            width: 45px; /* Reducido de 50px */
            height: 45px; /* Reducido de 50px */
            margin-right: 12px; /* Reducido de 15px */
            background: rgba(255, 215, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
            overflow: hidden;
            border: 2px solid rgba(255, 215, 0, 0.2);
        }

        .card-img-small img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .card-img-small.fallback-icon {
            background: rgba(255, 215, 0, 0.15);
        }

        .card-img-small.fallback-icon i {
            font-size: 22px; /* Reducido de 24px */
            color: gold;
        }

        .categoria-card:hover .card-img-small {
            background: rgba(255, 215, 0, 0.2);
            transform: scale(1.1);
            border-color: rgba(255, 215, 0, 0.4);
        }

        .categoria-card:hover .card-img-small img {
            transform: scale(1.1);
        }

        .categoria-card:hover .card-img-small.fallback-icon i {
            transform: scale(1.1);
        }

        .card-content {
            flex: 1;
            min-width: 0; /* Añadido para evitar desbordamiento */
        }

        .card-content h4 {
            color: gold;
            font-size: 16px; /* Reducido de 18px */
            margin: 0 0 5px 0; /* Reducido de 8px */
            line-height: 1.3;
            word-wrap: break-word;
        }

        .card-content p {
            color: #ddd;
            font-size: 13px; /* Reducido de 14px */
            line-height: 1.4;
            margin: 0;
            word-wrap: break-word;
        }

        .highlight {
            color: #ffd700;
            font-weight: bold;
        }

        /* NUEVO MÓDULO: ÁREA DE NETWORKING & EXPO SHOW */
        .networking-modulo {
            padding: 80px 5%;
            background: linear-gradient(180deg, #000, #111);
            position: relative;
        }

        .networking-modulo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .networking-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .networking-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .networking-card {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 35px 25px;
            text-align: center;
            border-top: 4px solid gold;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .networking-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transition: left 0.7s ease;
        }

        .networking-card:hover::before {
            left: 100%;
        }

        .networking-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2),
                        inset 0 0 30px rgba(255, 215, 0, 0.05);
        }

        .networking-icon {
            font-size: 50px;
            color: gold;
            margin-bottom: 25px;
            width: 80px;
            height: 80px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .networking-card:hover .networking-icon {
            background: rgba(255, 215, 0, 0.2);
            transform: scale(1.15);
            color: #ffd700;
        }

        .networking-card h3 {
            color: gold;
            font-size: 24px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .networking-card h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: gold;
            transition: width 0.3s ease;
        }

        .networking-card:hover h3::after {
            width: 50%;
        }

        .networking-card p {
            color: #ccc;
            line-height: 1.6;
            font-size: 16px;
            margin-bottom: 20px;
            transition: color 0.3s ease;
        }

        .networking-card:hover p {
            color: #fff;
        }

        .networking-features {
            list-style: none;
            padding: 0;
            width: 100%;
            text-align: left;
        }

        .networking-features li {
            margin: 12px 0;
            padding-left: 25px;
            position: relative;
            color: #e6e6e6;
            font-size: 15px;
        }

        .networking-features li:before {
            content: "•";
            color: gold;
            font-weight: bold;
            font-size: 20px;
            position: absolute;
            left: 0;
            top: -2px;
        }

        .evento-publico {
            background: rgba(255, 215, 0, 0.05);
            border-radius: 15px;
            padding: 30px;
            margin-top: 50px;
            border: 2px solid gold;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .evento-publico::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.05) 50%, transparent 70%);
            animation: shine 3s infinite linear;
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        .evento-publico h3 {
            color: gold;
            font-size: 28px;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .evento-publico p {
            color: #fff;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .btn-tickets {
            background: gold;
            border: none;
            color: black;
            padding: 12px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            text-decoration: none;
            display: inline-block;
        }

        .btn-tickets:hover {
            background: #e6c200;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
            text-decoration: none;
        }

        /* CONTACTO ACTUALIZADO */
        .contacto {
            padding: 80px 5%;
            background: #0d0d0d;
            position: relative;
            overflow: hidden;
        }

        .contacto .container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .contacto-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-top: 40px;
        }

        .contacto-info h3 {
            color: gold;
            font-size: 28px;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .contacto-info h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 3px;
            background: gold;
            border-radius: 2px;
        }

        .contacto-organizador {
            background: rgba(255, 215, 0, 0.05);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            border-left: 4px solid gold;
        }

        .contacto-organizador h4 {
            color: gold;
            font-size: 22px;
            margin-bottom: 20px;
            text-align: center;
        }

        .contacto-info p {
            margin: 15px 0;
            font-size: 16px;
            display: flex;
            align-items: center;
            color: #ddd;
            transition: all 0.3s ease;
            line-height: 1.6;
        }

        .contacto-info p i {
            color: gold;
            margin-right: 15px;
            width: 20px;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .contacto-info p:hover i {
            transform: scale(1.2);
            color: #ffd700;
        }

        .contacto-info p:hover {
            color: #fff;
            transform: translateX(5px);
        }

        .contacto-detalles {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #333;
        }

        .contacto-detalles h4 {
            color: gold;
            font-size: 20px;
            margin-bottom: 15px;
        }

        /* FOOTER SIMPLIFICADO */
        .footer {
            padding: 40px 5% 20px;
            background: #000;
            border-top: 1px solid #333;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo img {
            width: 50px;
            height: 50px;
            margin-right: 15px;
            border-radius: 50%;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .footer-logo:hover img {
            transform: scale(1.1);
        }

        .footer-logo span {
            color: gold;
            font-weight: bold;
            font-size: 22px;
            transition: all 0.3s ease;
        }

        .footer-logo:hover span {
            color: #ffd700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        .copyright {
            text-align: center;
            color: #999;
            font-size: 14px;
            padding-top: 20px;
            border-top: 1px solid #333;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        /* =================== MEDIA QUERIES PARA MÓVIL =================== */

        /* MEDIA QUERY PARA MÓVILES - MENÚ HAMBURGUESA A LA DERECHA */
        @media (max-width: 768px) {
            /* AJUSTES PARA EL MENÚ HAMBURGUESA EN EL LADO DERECHO */
            .navbar {
                padding: 12px 5%;
            }
            
            /* Asegurar que el menú hamburguesa esté a la derecha */
            .nav-right {
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }
            
            /* OCULTAR MENÚ DE ESCRITORIO EN MÓVIL */
            .desktop-menu {
                display: none !important;
            }
            
            /* MOSTRAR EL BOTÓN HAMBURGUESA EN MÓVIL */
            .menu-toggle {
                display: block !important;
                order: 2;
            }
            
            /* En móvil, mostrar imágenes móviles y ocultar desktop */
            .carousel-slide .desktop-img {
                display: none !important;
            }
            
            .carousel-slide .mobile-img {
                display: block !important;
            }
            
            /* Optimizar imagen para móvil */
            .carousel-slide .mobile-img {
                object-fit: cover;
                object-position: center 30%;
            }
            
            /* HERO EN MÓVIL */
            .hero {
                height: 90vh;
            }
            
            /* Flechas más pequeñas en móvil */
            .carousel-arrow {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .carousel-arrows {
                padding: 0 10px;
            }
            
            .carousel-dots {
                bottom: 20px;
            }
            
            .carousel-dot {
                width: 12px;
                height: 12px;
            }
            
            /* Reducir cantidad de confeti en móvil */
            .confetti {
                width: 8px;
                height: 16px;
            }
            
            /* OTRAS SECCIONES */
            .contacto-grid {
                gap: 40px;
            }
            
            .modulo-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .modulo-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            /* ===== CORRECCIÓN ESPECÍFICA PARA HISTORIA MODULO EN MÓVIL ===== */
            /* HISTORIA MODULO - MEJOR ESPACIADO EN MÓVIL */
            .categoria-grid {
                gap: 30px !important; /* Reducido de 40px */
            }
            
            .categoria-item {
                margin-bottom: 25px !important;
            }
            
            .categoria-header {
                flex-direction: row !important; /* Mantener en fila, no columna */
                padding: 15px !important; /* Reducido de 20px */
                text-align: left;
                align-items: center;
            }
            
            /* Ajustar tamaño de imagen en móvil */
            .categoria-img {
                width: 60px !important;
                height: 60px !important;
                margin-right: 15px !important;
                margin-bottom: 0 !important; /* Eliminar margen inferior */
                flex-shrink: 0;
            }
            
            .categoria-img.fallback-icon i {
                font-size: 28px !important;
            }
            
            .categoria-header h3 {
                font-size: 18px !important; /* Reducido de 22px */
                text-align: left !important;
                line-height: 1.2;
                width: calc(100% - 75px); /* Ajustar ancho para evitar desborde */
            }
            
            .categoria-cards {
                grid-template-columns: 1fr !important;
                gap: 12px !important; /* Reducido de 15px */
                padding: 15px !important; /* Reducido de 20px */
            }
            
            .categoria-card {
                padding: 12px !important; /* Reducido de 15px */
                min-height: 80px !important; /* Reducido de 90px */
            }
            
            .card-img-small {
                width: 40px !important;
                height: 40px !important;
                margin-right: 10px !important; /* Reducido de 12px */
            }
            
            .card-img-small.fallback-icon i {
                font-size: 20px !important; /* Reducido de 22px */
            }
            
            .card-content h4 {
                font-size: 14px !important; /* Reducido de 16px */
                margin-bottom: 4px !important; /* Reducido de 5px */
            }
            
            .card-content p {
                font-size: 12px !important; /* Reducido de 13px */
                line-height: 1.3 !important;
            }
            
            /* NETWORKING MODULO - MEJOR ESPACIADO EN MÓVIL */
            .networking-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .networking-card {
                padding: 25px 15px;
                margin-bottom: 10px;
            }
            
            .networking-icon {
                width: 70px;
                height: 70px;
                font-size: 35px;
                margin-bottom: 20px;
            }
            
            .networking-card h3 {
                font-size: 22px;
            }
            
            .networking-card p {
                font-size: 15px;
                margin-bottom: 15px;
            }
            
            .networking-features li {
                font-size: 14px;
                margin: 10px 0;
                padding-left: 22px;
            }
            
            /* EVENTO PÚBLICO EN MÓVIL */
            .evento-publico {
                padding: 20px 15px;
                margin-top: 40px;
            }
            
            .evento-publico h3 {
                font-size: 22px;
            }
            
            .evento-publico p {
                font-size: 16px;
            }
            
            /* FLYERS EN MÓVIL */
            .flyers-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .flyer-img-container {
                height: 350px;
            }
            
            .fecha-evento h3 {
                font-size: 28px;
            }
            
            .fecha-evento .fecha-destacada p {
                font-size: 24px;
                padding: 15px 25px;
            }
            
            /* Ajustar el logo en móvil para dejar espacio para el menú */
            .logo span {
                font-size: 18px;
            }
            
            .logo img {
                width: 40px;
                height: 40px;
            }
            
            /* MÓDULOS ESPECÍFICOS EN MÓVIL */
            .modulo-item {
                padding: 25px 20px;
                margin-bottom: 30px;
            }
            
            .modulo-header h3 {
                font-size: 22px;
            }
            
            .modulo-content {
                font-size: 15px;
            }
            
            .modulo-list li {
                font-size: 14px;
                margin: 12px 0;
                padding-left: 30px;
            }
        }

        /* MEDIA QUERY PARA TELÉFONOS MÁS PEQUEÑOS (MENOS DE 576px) */
        @media (max-width: 576px) {
            .carousel-slide .mobile-img {
                object-position: center 25%;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .servicios-grid,
            .cards-container {
                grid-template-columns: 1fr;
            }
            
            .modulo-item {
                padding: 20px;
            }
            
            .modulo-header h3 {
                font-size: 20px;
            }
            
            .modulo-icon {
                width: 60px;
                height: 60px;
                font-size: 30px;
            }
            
            .contacto-grid {
                grid-template-columns: 1fr;
            }
            
            .evento-logo {
                width: 150px;
                height: 150px;
            }
            
            /* ===== CORRECCIÓN ESPECÍFICA PARA TELÉFONOS PEQUEÑOS ===== */
            .categoria-grid {
                gap: 25px !important; /* Reducido de 30px */
            }
            
            .categoria-item {
                margin-bottom: 20px !important;
                border-radius: 12px !important;
            }
            
            .categoria-header {
                padding: 12px 15px !important; /* Más reducido */
            }
            
            .categoria-header h3 {
                font-size: 16px !important; /* Más pequeño */
                line-height: 1.1 !important;
            }
            
            .categoria-img {
                width: 50px !important; /* Más pequeño */
                height: 50px !important; /* Más pequeño */
                margin-right: 12px !important; /* Más reducido */
            }
            
            .categoria-img.fallback-icon i {
                font-size: 24px !important; /* Más pequeño */
            }
            
            .categoria-cards {
                padding: 12px !important; /* Más reducido */
                gap: 10px !important; /* Más reducido */
            }
            
            .categoria-card {
                padding: 10px !important; /* Más reducido */
                min-height: 70px !important; /* Más reducido */
                border-left-width: 3px !important; /* Más delgado */
            }
            
            .card-img-small {
                width: 35px !important; /* Más pequeño */
                height: 35px !important; /* Más pequeño */
                margin-right: 8px !important; /* Más reducido */
            }
            
            .card-img-small.fallback-icon i {
                font-size: 18px !important; /* Más pequeño */
            }
            
            .card-content h4 {
                font-size: 13px !important; /* Más pequeño */
                margin-bottom: 3px !important; /* Más reducido */
            }
            
            .card-content p {
                font-size: 11px !important; /* Más pequeño */
                line-height: 1.2 !important;
            }
            
            /* NETWORKING EN TELÉFONOS PEQUEÑOS */
            .networking-card {
                padding: 20px 12px;
            }
            
            .networking-icon {
                width: 60px;
                height: 60px;
                font-size: 30px;
                margin-bottom: 15px;
            }
            
            .networking-card h3 {
                font-size: 20px;
                margin-bottom: 10px;
            }
            
            .networking-card p {
                font-size: 14px;
            }
            
            .networking-features li {
                font-size: 13px;
                margin: 8px 0;
                padding-left: 20px;
            }
            
            .flyer-img-container {
                height: 300px;
            }
            
            .fecha-evento h3 {
                font-size: 24px;
            }
            
            .fecha-evento .fecha-destacada p {
                font-size: 20px;
                padding: 12px 20px;
            }
            
            /* Optimización para móviles */
            .servicios::before,
            .sobre-evento::before,
            .sobre-evento::after,
            .historia-modulo::before,
            .historia-modulo::after,
            .modulos-especificos::before,
            .networking-modulo::before,
            .footer::before,
            .flyers-section::before,
            .flyers-section::after {
                display: none;
            }
            
            .evento-publico h3 {
                font-size: 20px;
            }
            
            .evento-publico p {
                font-size: 14px;
            }
            
            /* Flechas más pequeñas en móviles pequeños */
            .carousel-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            
            /* Reducir aún más el confeti en móviles pequeños */
            .confetti {
                width: 6px;
                height: 12px;
            }
            
            /* Menú móvil más ancho en teléfonos pequeños */
            .mobile-menu {
                width: 85%;
                padding: 70px 20px 20px;
            }
            
            /* Ajustar tamaño del logo en móviles pequeños */
            .logo span {
                font-size: 16px;
            }
            
            .logo img {
                width: 35px;
                height: 35px;
                margin-right: 8px;
            }
        }

        /* MEDIA QUERY PARA TELÉFONOS MUY PEQUEÑOS (MENOS DE 400px) */
        @media (max-width: 400px) {
            .section-title {
                font-size: 28px;
            }
            
            /* ===== CORRECCIÓN PARA TELÉFONOS MUY PEQUEÑOS ===== */
            .categoria-header {
                padding: 10px 12px !important; /* Aún más reducido */
                flex-wrap: nowrap !important; /* Evitar que se envuelva */
            }
            
            .categoria-header h3 {
                font-size: 14px !important; /* Aún más pequeño */
                line-height: 1.1 !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
            }
            
            .categoria-img {
                width: 45px !important; /* Aún más pequeño */
                height: 45px !important; /* Aún más pequeño */
                margin-right: 10px !important; /* Aún más reducido */
            }
            
            .categoria-img.fallback-icon i {
                font-size: 22px !important; /* Aún más pequeño */
            }
            
            .categoria-cards {
                padding: 10px !important; /* Aún más reducido */
                gap: 8px !important; /* Aún más reducido */
            }
            
            .categoria-card {
                padding: 8px !important; /* Aún más reducido */
                min-height: 65px !important; /* Aún más reducido */
            }
            
            .card-img-small {
                width: 32px !important; /* Aún más pequeño */
                height: 32px !important; /* Aún más pequeño */
                margin-right: 8px !important; /* Aún más reducido */
            }
            
            .card-img-small.fallback-icon i {
                font-size: 16px !important; /* Aún más pequeño */
            }
            
            .card-content h4 {
                font-size: 12px !important; /* Aún más pequeño */
            }
            
            .card-content p {
                font-size: 10px !important; /* Aún más pequeño */
                line-height: 1.1 !important;
            }
            
            .logo span {
                font-size: 15px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: 150px;
            }
            
            .categoria-card {
                padding: 10px;
            }
            
            .card-img-small {
                width: 35px;
                height: 35px;
                margin-right: 8px;
            }
            
            .networking-card {
                padding: 18px 10px;
            }
            
            .networking-icon {
                width: 55px;
                height: 55px;
                font-size: 25px;
            }
            
            .networking-card h3 {
                font-size: 18px;
            }
            
            .flyer-info h4 {
                font-size: 20px;
            }
            
            .flyer-info p {
                font-size: 14px;
            }
            
            /* Flechas aún más pequeñas para móviles muy pequeños */
            .carousel-arrow {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
            
            /* Menú móvil más estrecho en teléfonos muy pequeños */
            .mobile-menu {
                width: 90%;
                padding: 60px 15px 15px;
            }
            
            .mobile-menu a {
                padding: 12px;
                font-size: 16px;
            }
            
            .menu-toggle {
                font-size: 20px;
                margin-left: 15px;
                padding: 6px;
            }
        }

        /* MEDIA QUERY PARA DISPOSITIVOS EN MODO LANDSCAPE (HORIZONTAL) */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                height: 120vh;
            }
            
            .carousel-slide .mobile-img {
                object-position: center 20%;
            }
            
            .carousel-dots {
                bottom: 15px;
            }
            
            .carousel-arrow {
                top: 60%;
            }
            
            /* Menú móvil más bajo en landscape */
            .mobile-menu {
                height: 100vh;
                overflow-y: auto;
                padding-top: 60px;
            }
            
            /* Ajustes para landscape */
            .categoria-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .networking-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Optimización para monitores 1920x1080 */
        @media (min-width: 1920px) {
            .hero {
                min-height: 1080px;
            }
            
            .carousel-container {
                height: 1080px;
            }
            
            .carousel-slide .desktop-img {
                min-height: 1080px;
            }
        }

        @media (max-width: 1200px) {
            .categoria-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .section-title {
                font-size: 32px;
            }
            
            .servicio-card, .card {
                padding: 30px 20px;
            }
            
            .modulo-item {
                padding: 30px;
            }
            
            .modulo-header h3 {
                font-size: 24px;
            }
            
            .categoria-img {
                width: 80px;
                height: 80px;
                margin-right: 20px;
            }
            
            .categoria-header h3 {
                font-size: 24px;
            }
            
            .networking-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .flyers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* MEDIA QUERY PARA TABLETS (ENTRE 769px Y 1024px) */
        @media (min-width: 769px) and (max-width: 1024px) {
            /* Mostrar menú de escritorio en tablets */
            .desktop-menu {
                display: flex !important;
            }
            
            /* Ocultar menú hamburguesa en tablets */
            .menu-toggle {
                display: none !important;
            }
            
            /* Ocultar menú móvil en tablets */
            .mobile-menu {
                display: none !important;
            }
            
            /* Ajustar márgenes en tablets */
            .desktop-menu a {
                margin: 0 10px;
                font-size: 15px;
            }
            
            .desktop-menu a.btn-login,
            .desktop-menu a.btn-form {
                padding: 8px 15px;
                margin-left: 10px;
                font-size: 14px;
            }
            
            .logo span {
                font-size: 20px;
            }
        }

        /* MEDIA QUERY PARA ESCRITORIO (MÁS DE 1024px) */
        @media (min-width: 1025px) {
            /* Mostrar menú de escritorio */
            .desktop-menu {
                display: flex !important;
            }
            
            /* Ocultar menú hamburguesa */
            .menu-toggle {
                display: none !important;
            }
            
            /* Ocultar menú móvil */
            .mobile-menu {
                display: none !important;
            }
        }

        /* TRANSICIÓN PARA EL MENÚ MÓVIL */
        .mobile-menu {
            animation: slideInRight 0.3s ease forwards;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(0);
            }
        }

        /* ANIMACIÓN PARA CERRAR EL MENÚ */
        .mobile-menu.closing {
            animation: slideOutRight 0.3s ease forwards;
        }

        @keyframes slideOutRight {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(100%);
            }
        }
        
        /* ANIMACIONES DE APARICIÓN */
        .servicio-card, .card, .modulo-item, .categoria-item, .networking-card, .flyer-card {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        
        .servicio-card.visible, .card.visible, .modulo-item.visible, .categoria-item.visible, .networking-card.visible, .flyer-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        