* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #000000 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    /* Bloqueo de selección y arrastre de imágenes */
    -webkit-user-select: none; /* Para navegadores basados en WebKit (Chrome, Safari) */
    -moz-user-select: none; /* Para Firefox */
    -ms-user-select: none; /* Para Internet Explorer/Edge */
    user-select: none; /* Estándar */
}

img {
    pointer-events: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #ff00ff;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

/* Estilos de la imagen del logo */
.logo-img {
    max-width: 70px;
    height: auto;
    filter: drop-shadow(0 0 10px #ff00ff);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: #0099ff;
    text-shadow: 0 0 5px #0099ff;
}

.cta-button {
    background: linear-gradient(45deg, #ff00ff, #0099ff);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, #1a0033 0%, #000000 70%);
    padding-top: 6rem; /* Ajuste para separar del nav */
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff00ff, #0099ff, #ff00ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

/* Carrusel de video principal */
.image-carousel { /* Cambié el nombre de .video-carousel a .image-carousel en CSS para reflejar el HTML */
    position: relative;
    width: 100%;
    max-width: 950px; /* Tamaño un poco más pequeño */
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.2);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px; /* Tamaño un poco más pequeño */
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    width: 33.333%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.video-placeholder.video1 {
    background: linear-gradient(45deg, #ff00ff, #0099ff);
}

.video-placeholder.video2 {
    background: linear-gradient(45deg, #0099ff, #ff00ff);
}

.video-placeholder.video3 {
    background: linear-gradient(45deg, #ff00ff, #000066);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #000;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.video-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.nav-dot.active {
    background: #ff00ff;
    transform: scale(1.2);
    box-shadow: 0 0 10px #ff00ff;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: rgba(255, 0, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #1a0033, #000033);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ff00ff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff00ff, #0099ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card h3 {
    color: #0099ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Servers Section */
.servers {
    padding: 5rem 0;
    background: linear-gradient(135deg, #000000, #1a0033);
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.server-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #0099ff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.server-card:hover {
    transform: scale(1.05);
    border-color: #ff00ff;
}

.server-card h3 {
    color: #ff00ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.server-stats {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0099ff;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.server-button {
    background: linear-gradient(45deg, #0099ff, #ff00ff);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.server-button:hover {
    transform: translateY(-2px);
}

/* Plans Section */
.plans {
    padding: 5rem 0;
    background: linear-gradient(135deg, #000000, #1a0033, #000000);
}

.plans-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.plan-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #0099ff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    flex: 1;
    max-width: 350px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff00ff, #0099ff);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 153, 255, 0.2);
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-header h3 {
    color: #ff00ff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #ff00ff;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.plan-price .currency {
    color: #0099ff;
    font-size: 1.5rem;
    font-weight: bold;
}

.plan-price .amount {
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 0 10px #0099ff;
}

.plan-price .period {
    color: #cccccc;
    font-size: 1.2rem;
}

.plan-features {
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features .feature {
    color: #ffffff;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.plan-features .feature:hover {
    color: #0099ff;
}

.plan-features .feature:last-child {
    border-bottom: none;
}

.whatsapp-button {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.plan-card.featured .whatsapp-button {
    background: linear-gradient(45deg, #25D366, #20B2AA);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.plan-card.featured .whatsapp-button:hover {
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a0033, #000000);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    max-width: 400px;
}

.contact-info h3 {
    color: #ff00ff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #ff00ff;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid #0099ff;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff00ff, #0099ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    color: #0099ff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #ffffff;
    margin: 0;
}

.contact-form-container {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ff00ff;
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #0099ff;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #333333;
    border-radius: 8px;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff00ff;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.submit-button {
    position: relative;
    background: linear-gradient(45deg, #ff00ff, #0099ff);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 0, 255, 0.4);
}

.submit-button span {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-button:hover .button-glow {
    left: 100%;
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0;
    border-top: 2px solid #ff00ff;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0099ff;
}

/* Animations */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 15px #ff00ff; }
    to { text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff; }
}

/* Agregando estilos para la nueva sección de Módulos */
/* Modules Section */
.modules {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a0033, #000000, #001a33);
}

.gallery-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0099ff;
    text-shadow: 0 0 10px #0099ff;
}

.modules-gallery {
    margin-bottom: 5rem;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.module-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ff00ff;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.3);
    border-color: #0099ff;
}

.module-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.module-card:hover .module-image img {
    transform: scale(1.1);
}

.module-info {
    padding: 1.5rem;
}

.module-info h4 {
    color: #ff00ff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px #ff00ff;
}

.module-info p {
    color: #cccccc;
    line-height: 1.6;
}

.videos-section {
    margin-top: 3rem;
}

/* Carrusel de módulos */
.modules-video-carousel {
    position: relative;
    width: 100%;
    max-width: 1050px; /* Tamaño un poco más pequeño */
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 153, 255, 0.2);
}

.modules-carousel-container {
    position: relative;
    width: 100%;
    height: 550px; /* Tamaño un poco más pequeño */
    overflow: hidden;
}

/* Para el carrusel de videos en la sección 'Módulos' */
.modules-carousel-slides {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.modules-carousel-slide {
    width: 20%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modules-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

/* NUEVA REGLA PARA AJUSTAR LA IMAGEN PERFECTAMENTE */
.modules-video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modules-video-placeholder.video1 {
    background: linear-gradient(45deg, #ff00ff, #0099ff);
}

.modules-video-placeholder.video2 {
    background: linear-gradient(45deg, #0099ff, #00ff99);
}

.modules-video-placeholder.video3 {
    background: linear-gradient(45deg, #ff00ff, #ff9900);
}

.modules-video-placeholder.video4 {
    background: linear-gradient(45deg, #0099ff, #ff00ff);
}

.modules-video-placeholder.video5 {
    background: linear-gradient(45deg, #00ff99, #0099ff);
}

.modules-play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modules-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.modules-play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #000;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.modules-video-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
}

.modules-carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.modules-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.modules-nav-dot.active {
    background: #0099ff;
    transform: scale(1.2);
    box-shadow: 0 0 10px #0099ff;
}

.modules-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.modules-carousel-arrow:hover {
    background: rgba(0, 153, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.modules-carousel-arrow.prev {
    left: 20px;
}

.modules-carousel-arrow.next {
    right: 20px;
}

/* *************************************** */
/* ** ESTILOS DEL MENÚ DE HAMBURGUESA ** */
/* *************************************** */
.menu-toggle {
    display: none; /* Por defecto oculto en desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001; /* Asegurar que esté sobre el menú */
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: #ff00ff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/* Estado 'active' (Cruz) */
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(13.5px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-13.5px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        padding: 0 1rem;
    }

    /* *************************************** */
    /* ** AJUSTE DE CARRUSEL EN MÓVILES ** */
    /* *************************************** */
    .image-carousel { 
        max-width: 100%; 
        margin: 1rem auto; 
    }

    .carousel-container {
        height: 300px; /* Altura más compacta */
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-arrow.prev {
        left: 10px;
    }

    .carousel-arrow.next {
        right: 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .features-grid,
    .server-grid,
    .contact-content,
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    /* Responsive para planes */
    .plans-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .plan-card {
        max-width: 100%;
        width: 100%;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }

    /* *************************************** */
    /* ** MENÚ DE HAMBURGUESA MOVIL ** */
    /* *************************************** */

    .menu-toggle {
        display: flex; /* Mostramos el botón */
    }
    
    .cta-button {
        display: none; /* Ocultamos el botón Registrarse en la barra de navegación */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%; 
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        padding-top: 6rem;
        transform: translateX(100%); /* Ocultamos fuera de la vista */
        transition: transform 0.4s ease-in-out;
        gap: 0;
    }
    
    .nav-links.active {
        transform: translateX(0); /* Mostramos el menú */
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    }
    
    .nav-links li a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    /* Responsive para módulos */
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-video-carousel {
        max-width: 100%;
        margin: 1rem;
    }
    
    .modules-carousel-container {
        height: 300px;
    }
