/* RESET TOTAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important; /* Mata el azul de los links */
    list-style: none;
}

:root {
    --neon: #ff0055;
    --wa-green: #25d366;
    --dark: #080808;
    --glass: rgba(255, 255, 255, 0.05);
}

body {
    background-color: var(--dark);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* FONDO ANIMADO */
.glow-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 0, 85, 0.1), transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(112, 0, 255, 0.1), transparent 40%);
    z-index: -1;
}

/* NAVBAR MODERNA */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 25px 5%;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.4rem;
    color: #fff;
}

.logo span { color: var(--neon); }

.nav-links a {
    color: #fff;
    margin-left: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--neon); }

.nav-btn-wa {
    background: var(--neon);
    padding: 10px 20px;
    border-radius: 50px;
}

/* HERO SECTION (ESPACIADO CORREGIDO) */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.badge-box { margin-bottom: 40px; } /* Espacio para que no pegue al título */

.top-badge {
    background: linear-gradient(45deg, var(--neon), #ff8000);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 3px;
}

.main-title {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2.5rem, 10vw, 6.5rem);
    line-height: 1;
    margin-bottom: 30px; /* Espacio bajo el título */
}

.main-title span {
    -webkit-text-stroke: 1.5px white;
    color: transparent;
}

.hero-text {
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 50px; /* Espacio brutal para los botones */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* BOTONES CON VIDA */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--wa-green);
    color: #fff !important;
    padding: 20px 35px;
    border-radius: 15px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff !important;
    padding: 20px 35px;
    border-radius: 15px;
    font-weight: 900;
    transition: 0.3s;
}

.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5); }
.btn-secondary:hover { background: #fff; color: #000 !important; }

/* SECCIÓN POR QUÉ ELEGIRNOS */
.features { padding: 100px 5%; background: #050505; }
.section-heading { text-align: center; margin-bottom: 60px; font-family: 'Syncopate'; font-size: 2rem; }

.grid-bento {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--glass);
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s;
}

.card:hover { border-color: var(--neon); transform: translateY(-10px); }

.card i { font-size: 3rem; color: var(--neon); margin-bottom: 20px; }
.featured-card { border: 1px solid var(--neon); background: rgba(255, 0, 85, 0.05); }

.main-footer { padding: 50px; text-align: center; color: #555; font-size: 0.8rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { height: auto; padding: 150px 20px; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* FOOTER PROFESIONAL */
.main-footer {
    background-color: #050505;
    padding: 80px 5% 0 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-col h4 {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--neon);
}

.logo-footer {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.logo-footer span { color: var(--neon); }

.footer-description {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Redes Sociales con Brillo */
.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    color: #fff !important;
    transition: 0.4s;
}

.social-links a:hover {
    background: var(--neon);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
    transform: translateY(-5px);
}

/* Listas de Enlaces */
.footer-links li, .contact-info li {
    margin-bottom: 15px;
    color: #888;
    font-size: 0.95rem;
    display: flex; align-items: center; gap: 10px;
}

.footer-links a {
    color: #888 !important;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff !important;
    padding-left: 10px;
}

/* Barra Inferior */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.85rem;
}

.legal-links a {
    margin-left: 20px;
    color: #555 !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .social-links { justify-content: center; }
    .bottom-container { flex-direction: column; gap: 15px; }
    .contact-info li { justify-content: center; }
}

/* SECCIÓN BENTO */
.bento-section {
    padding: 100px 5%;
    background: #050505;
}

.bento-title {
    font-family: 'Syncopate', sans-serif;
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.bento-title span { color: var(--neon); }

/* Configuración de la Rejilla */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo Base de las Celdas */
.bento-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    transform: scale(1.02);
    border-color: var(--neon);
    background: rgba(255, 0, 85, 0.05);
}

/* Celda Grande Destacada */
.bento-main {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(rgba(0,0,0,0.2), #000), url('img/fiesta-tematica-fieston-latino.webp') center/cover;
}
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    
    /* LA LÍNEA QUE FALTABA: Ruta de tu imagen */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('img/fieston-latino-malaga.webp');
    
    /* Ajustes para que la foto se vea profesional */
    background-size: cover;      /* La imagen cubre todo el espacio sin deformarse */
    background-position: center;  /* Centra la foto siempre */
    background-repeat: no-repeat; /* No se repite como un mosaico */
    background-attachment: fixed; /* Efecto Parallax (la foto se queda quieta al hacer scroll) */
}

.bento-main h3 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 900; }

/* Celdas Pequeñas */
.bento-item i {
    font-size: 2.5rem;
    color: var(--neon);
    margin-bottom: 20px;
}

.bento-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.bento-item p {
    color: #888;
    font-size: 0.9rem;
}

.highlight {
    border: 1px solid var(--neon);
}

.tag {
    background: var(--neon);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 15px;
}

/* Link especial sin azul */
.bento-link {
    color: var(--neon) !important;
    font-weight: 900;
    margin-top: 20px;
    display: inline-block;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .bento-main {
        grid-column: span 1;
        grid-row: span 1;
        height: 450px;
    }
}

/* Efecto Neón para Iconos del Bento */
.bento-item i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--neon), #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 5px rgba(255, 0, 85, 0.3)); /* Brillo suave inicial */
    transition: all 0.4s ease;
}

.bento-item:hover i {
    filter: drop-shadow(0 0 15px var(--neon)); /* Explosión de neón al pasar el ratón */
    transform: scale(1.1) rotate(-5deg); /* Pequeño giro orgánico */
}

/* Ajuste de los textos de las celdas pequeñas para que no se pierdan */
.bento-item h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.bento-item p {
    color: #999; /* Gris elegante para que el H3 resalte más */
    font-size: 0.85rem;
    line-height: 1.5;
}

.legal-section {
    padding: 150px 5% 80px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.legal-container {
    max-width: 900px;
    width: 100%;
}

.legal-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 40px;
}

.legal-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.legal-title span { color: var(--neon); }

.legal-content {
    color: #bbb;
    line-height: 1.8;
    font-size: 1rem;
}

/* Estilos para los títulos que vengan en tu texto */
.legal-content h2, .legal-content h3 {
    color: #fff;
    margin: 30px 0 15px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content strong {
    color: var(--neon);
}

/* Estilos para la página de Eventos */
.event-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.4), var(--dark)), url('img/eventos-banner.jpg') center/cover;
    text-align: center;
}

.event-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: -50px; /* Sube un poco las cartas sobre el banner */
}

.showcase-card {
    position: relative;
    height: 550px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.showcase-content h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.8rem;
    margin: 10px 0;
}

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

/* Botón pequeño elegante */
.btn-mini {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: var(--neon);
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.8rem;
    color: white !important;
}

.seo-footer-text {
    text-align: center;
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Rejilla de eventos refinada */
.event-grid-elegant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Tarjetas un poco más estrechas */
    gap: 25px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.small-card {
    height: 420px; /* Reducción de altura para elegancia */
    border-radius: 20px; /* Bordes más finos */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.small-card .showcase-content h3 {
    font-size: 1.4rem; /* Texto más contenido */
    margin: 5px 0;
}

.small-card .showcase-content p {
    font-size: 0.85rem; /* Párrafo sutil */
    color: #bbb;
}

.category-tag {
    font-size: 0.7rem;
    background: rgba(255, 0, 85, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid var(--neon);
}

/* Estilos para el botón hamburguesa */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }

    .nav-links {
        display: none; /* Oculto por defecto en móvil */
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid var(--neon);
    }

    .nav-links.active {
        display: flex; /* Se muestra al hacer click */
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 1.2rem;
    }
}

/* ESTRUCTURA EXCLUSIVA GESTIÓN */
.gestion-hero-bg {
    background: linear-gradient(rgba(0,0,0,0.7), var(--dark)), url('img/gestion-header.jpg') center/cover !important;
    height: 55vh !important;
}

.intro-gestion {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 10%;
}

.intro-gestion h2 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.subtitle-text {
    color: #888;
    margin-bottom: 40px;
}

.servicios-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    text-align: left;
}

.servicio-item {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--neon);
    padding: 25px;
    border-radius: 0 15px 15px 0;
    font-size: 0.9rem;
    transition: 0.3s;
}

.servicio-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(10px);
}

.servicio-item strong {
    display: block;
    color: var(--neon);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}