:root {
    --primary-color: #00b8d4; /* Azul piscina */
    --secondary-color: #0091ea; /* Azul agua profunda */
    --accent-color: #ffab00; /* Amarillo solar */
    --dark-color: #01579b; /* Azul oscuro */
    --light-color: #e1f5fe; /* Azul claro agua */
    --summer-green: #4caf50; /* Verde vegetación */
    --summer-orange: #ff9800; /* Naranja atardecer */
    --summer-yellow: #fdd835; /* Amarillo sol */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Header mejorado con efectos visuales y mejor integración de la imagen */
header {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), 
                url('../img/Header2.3.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden; /* Para contener los elementos decorativos */
}

/* Efecto de sobreposición para dar profundidad */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}



/* Elementos decorativos temáticos */
.header-decoration {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.sun-decoration {
    top: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,171,0,0.9) 0%, rgba(255,171,0,0.6) 50%, rgba(255,171,0,0) 70%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255,171,0,0.7);
    animation: sun-pulse 6s ease-in-out infinite alternate;
}

.cloud-decoration {
    opacity: 0.9;
    position: absolute;
}

.cloud-1 {
    top: 15%;
    left: 10%;
    width: 150px;
    height: 60px;
    animation: cloud-float 30s linear infinite;
}

.cloud-2 {
    top: 25%;
    right: 15%;
    width: 100px;
    height: 40px;
    animation: cloud-float 20s linear infinite reverse;
}

@keyframes sun-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes wave-move {
    0% { background-position-x: 0; }
    100% { background-position-x: 1000px; }
}

@keyframes wave-move-reverse {
    0% { background-position-x: 1000px; }
    100% { background-position-x: 0; }
}

@keyframes cloud-float {
    0% { transform: translateX(-30px); }
    50% { transform: translateX(30px); }
    100% { transform: translateX(-30px); }
}

.header-content {
    z-index: 10;
    color: white;
    max-width: 800px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1.5s ease-out;
}

.header-content h1 {
    font-size: 4.2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
    background: linear-gradient(45deg, #ffffff, #f5f5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}



@keyframes rotateSun {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.header-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 800px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 184, 212, 0.4);
    animation: float 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 184, 212, 0.6);
}

.btn:hover::before {
    left: 100%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo::before {
    content: "";
    display: inline-block;
    width: 90px;   /* Solo aumenta el tamaño del logo */
    height: 90px;
    background: url('../img/logo.png') no-repeat center center/contain;
    margin-right: 0;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--summer-yellow);
    text-shadow: 0 0 10px rgba(255, 171, 0, 0.6);
}

section {
    padding: 100px 20px;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.features {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/swimming-pool.png');
    opacity: 0.1;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    padding: 30px;
    border-radius: 10px;
    background: linear-gradient(145deg, white, rgba(255, 255, 255, 0.9));
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.dates {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dates::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('https://www.transparenttextures.com/patterns/wave-opacity.png');
    background-size: contain;
    opacity: 0.3;
}

.dates-container {
    max-width: 800px;
    margin: 0 auto;
}

.date-card {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.date-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.25);
}

.location {
    background-color: white;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.location-info {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

.location-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.location-info ul {
    list-style-type: none;
}

.location-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.location-info i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.testimonials {
    background: linear-gradient(135deg, var(--dark-color), #01579b);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/pool-table.png');
    opacity: 0.05;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial {
    text-align: center;
    padding: 20px;
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--accent-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.registration {
    background: url('https://images.unsplash.com/photo-1501426026826-31c667bdf23d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1336&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.registration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

footer {
    background: linear-gradient(to bottom, var(--dark-color), #003c6c);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: url('https://www.transparenttextures.com/patterns/wave-opacity.png');
    background-size: contain;
    opacity: 0.2;
}

/* Estilos para la sección de actividades actualizados para tema de agua y verano */
.activities {
    background: linear-gradient(135deg, var(--light-color), white);
    position: relative;
}

.activities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/swimming-pool.png');
    opacity: 0.05;
    z-index: 0;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-card {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
    position: relative;
    z-index: 1;
}

.activity-image {
    height: 250px;
}

.activity-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.activity-card:hover::after {
    transform: scaleX(1);
}

.activity-card:hover {
    transform: translateY(-15px);
}

/* Efectos adicionales para elementos de agua */
.countdown {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.countdown-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
    border-radius: 10px;
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.countdown-item p {
    margin-top: 5px;
    font-size: 0.9rem;
}

.gallery {
    background: linear-gradient(to bottom, var(--light-color), white);
    position: relative;
    overflow: hidden;
}


.gallery::after {
    content: '☀️';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.2;
    animation: float 4s ease-in-out infinite;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    /* Mejora el tap en móviles */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Galería: overlay y efecto de descripción compatible con todos los navegadores */
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: none !important; /* Elimina la transición para que abra/cierre instantáneo */
    z-index: 2;
    font-size: 1.1rem;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

/* Mostrar overlay en hover (desktop) */
.gallery-item:hover .gallery-overlay,
.gallery-item:focus .gallery-overlay,
.gallery-item.active .gallery-overlay {
    opacity: 1 !important;
    pointer-events: auto;
    transition: none !important;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #01579b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(1, 87, 155, 0.3);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #ffab00;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 171, 0, 0.4);
}

.back-to-top i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Responsive styles for back to top button */
@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
    
    .back-to-top i {
        font-size: 1.2rem;
    }
}

/* Media queries mejoradas para responsividad total */

/* Dispositivos grandes (laptops/desktops, 1200px y más) */
@media (max-width: 1200px) {
    .container, .activities-grid, .gallery-container, .features-container {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .header-content h1 {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Dispositivos medianos (tablets horizontales, 992px y más) */
@media (max-width: 992px) {
    .header-content h1 {
        font-size: 3.5rem;
    }
    
    .header-content p {
        font-size: 1.3rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn {
        padding: 12px 25px;
    }
    
    .activity-card, .feature-item {
        margin-bottom: 20px;
    }
    
    .location-container {
        flex-direction: column;
    }
    
    .map, .location-info {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .map {
        height: 350px;
    }
    
    section {
        padding: 80px 20px;
    }
}

/* Tablets y dispositivos móviles grandes (768px y más) */
@media (max-width: 768px) {
    header {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .header-content {
        padding-top: 60px;
    }
    
    .header-content h1 {
        font-size: 2.8rem;
    }
    
    .header-content p {
        font-size: 1.1rem;
    }
    
    nav {
        padding: 15px;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .nav-links {
        display: none;
    }
    
    /* Menú hamburguesa para móviles */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 100;
    }
    
    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: white;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .mobile-menu a {
        display: block;
        color: white;
        font-size: 1.5rem;
        margin: 20px 0;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .mobile-menu a:hover {
        color: var(--primary-color);
    }
    
   
    .countdown-item {
        min-width: calc(50% - 20px);
        margin-bottom: 20px;
    }
}

/* Dispositivos móviles (576px y menos) */
@media (max-width: 576px) {
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .header-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .activity-image {
        height: 180px;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .map {
        height: 250px;
    }
    
    .date-card {
        padding: 20px 15px;
    }
    
    .date-card h3 {
        font-size: 1.4rem;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input, .form-group textarea, .form-group select {
        padding: 10px;
    }
    
    footer {
        padding: 20px;
    }
    
    footer h3 {
        font-size: 1.4rem;
    }
}

/* Dispositivos móviles pequeños (375px y menos) */
@media (max-width: 375px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .stat-block {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .countdown-item {
        min-width: 100%;
    }
    
    .activity-image {
        height: 160px;
    }
    
    .activity-content {
        padding: 15px;
    }
    
    .activity-content h3 {
        font-size: 1.3rem;
    }
    
    .social-links a {
        margin: 0 5px;
    }
}

/* Fondo borroso cuando el menú móvil está abierto */
.menu-blur #main,
.menu-blur header,
.menu-blur section,
.menu-blur footer {
    filter: blur(6px) brightness(0.95);
    transition: filter 0.4s;
}

/* Overlay del menú móvil */
#mobile-menu-overlay {
    display: block;
}

/* Menú móvil innovador centrado vertical y horizontalmente */
.mobile-menu.animated-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 85vw;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #00b8d4 80%, #ffab00 100%);
    box-shadow: -8px 0 40px rgba(0,0,0,0.18);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Cambia de center a stretch para ocupar todo el ancho */
    justify-content: flex-start; /* Cambia de center a flex-start para que el contenido no se vaya arriba */
    padding: 60px 30px 30px 30px; /* Más espacio arriba para el logo y botón cerrar */
    text-align: center;
    gap: 0;
}

.mobile-menu.animated-menu.show {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-logo {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: logo-pop 1s cubic-bezier(.77,0,.18,1);
    justify-content: center;
    width: 100%;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s;
}
.mobile-menu .close-btn:hover {
    color: #ffe082;
}

.mobile-menu .mobile-link {
    display: block;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 18px 0;
    padding: 16px 0;
    width: 100%;
    border-radius: 12px;
    box-sizing: border-box;
    background: rgba(255,255,255,0.07);
    transition: background 0.3s, color 0.3s, transform 0.3s;
    position: relative;
    left: 0;
    animation: slideInLink 0.7s cubic-bezier(.77,0,.18,1) both;
    text-align: center;
}
.mobile-menu .mobile-link:hover {
    background: rgba(255,255,255,0.18);
    color: #ffe082;
    transform: scale(1.05);
}
@keyframes slideInLink {
    0% { opacity: 0; left: 40px; }
    100% { opacity: 1; left: 0; }
}

/* Efecto de parpadeo en el botón hamburguesa */
.menu-toggle-animated {
    animation: menuPulse 2s infinite;
}
.menu-toggle-animated.blink span {
    background: linear-gradient(90deg, #ffab00 40%, #00b8d4 100%);
    box-shadow: 0 0 8px #ffab00, 0 0 12px #00b8d4;
}
@keyframes menuPulse {
    0%, 100% { transform: scale(1);}
    50% { transform: scale(1.08);}
}

/* Asegura que el menú móvil y overlay estén por encima de todo */
.mobile-menu, #mobile-menu-overlay {
    z-index: 2000 !important;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
    }
}

@keyframes particleFade {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.particle {
    position: absolute;
    pointer-events: none;
    mix-blend-mode: screen;
    transition: all 0.3s ease;
}
