:root {
    --neon: #D4FF00;
    --negro-puro: #000000;
    --negro-suave: #121212;
    --gris-card: #1e1e1e;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--negro-suave);
    color: white;
    overflow-x: hidden;
}

/* Tipografías */
.fw-black { font-family: 'Archivo Black', sans-serif; }
h1, h2, h3 { text-transform: uppercase; }

/* Colores y Botones */
.text-neon { color: var(--neon) !important; }

.btn-neon {
    background-color: var(--neon);
    color: black;
    border: none;
    transition: 0.3s ease;
}

.btn-neon:hover {
    background-color: #b8dd00;
    transform: scale(1.05);
}

.btn-outline-neon {
    border: 2px solid var(--neon);
    color: var(--neon);
    transition: 0.3s ease;
}

.btn-outline-neon:hover {
    background-color: var(--neon);
    color: black;
}

/* LOGOS (Limpiado y Unificado) */
.navbar-brand img {
    height: 50px !important;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(212, 255, 0, 0.3));
}

footer img {
    height: 100px !important;
    width: auto;
    max-width: 250px;
    margin-bottom: 20px;
    object-fit: contain;
}

/* Hero Principal */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), 
                      url('image/home-of-dance-academia-baile-malaga.webp');
    background-attachment: fixed; /* Esto es lo que hace el efecto */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-commercial {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('image/comercial-dance-home-of-dance.webp') center/cover no-repeat !important;
}

/* Imagen de fondo para la sección Kids */
.hero-kids {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('image/urban-kids-home-of-dance.webp') center/cover no-repeat !important;
}

.hero-latinos {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('image/clases-de-salsa-bachata-malaga.webp') center/cover no-repeat !important;
}

/* Usamos el ID para forzar que sea prioritario */
section.parallax-impact {
    height: 500px !important;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Separamos las propiedades para que no haya error de lectura */
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                      url('image/parallax-home-of-dance.png') !important;
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    
    border-top: 2px solid var(--neon);
    border-bottom: 2px solid var(--neon);
}
@media (max-width: 768px) {
    section.parallax-impact {
        /* Bajamos la altura para que no ocupe tanto y se vea más foto */
        height: 300px !important; 
        /* Centramos la imagen para que no se coma lo importante */
        background-position: center center !important;
        /* En móvil el fixed suele fallar, lo ponemos scroll para que cargue fluida */
        background-attachment: scroll !important;
    }
}

/* Imagen de fondo para la sección de Breaking */
.hero-breaking {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('image/break-dance-malaga.webp') center/cover no-repeat !important;
}

.shadow-text {
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 1), 0px 4px 8px rgba(0, 0, 0, 0.8);
}

/* TARJETAS Y CONTENEDORES */
.card-custom, .tarifa-card {
    background-color: var(--gris-card) !important;
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid #333 !important;
}

.card-custom:hover, .tarifa-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon) !important;
}

.active-plan {
    transform: scale(1.05);
    border: 2px solid var(--neon) !important;
}

.shadow-neon { box-shadow: 0 0 20px rgba(212, 255, 0, 0.4); }

.precio-box { display: flex; align-items: baseline; justify-content: center; }

/* CREW ESTILO PRO */
.crew-card {
    background: #111;
    border: 2px solid #333;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.4s ease;
}

.crew-img-box {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.crew-img-box img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.4s;
}

.crew-card:hover img, .crew-card.active img { filter: grayscale(0%); transform: scale(1.1); }
.crew-card:hover, .crew-card.active { border-color: var(--neon); box-shadow: 0 0 30px rgba(212, 255, 0, 0.2); }

.btn-crew {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--neon);
    color: var(--neon);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* TABLA HORARIOS */
.bg-neon-header { background-color: var(--neon) !important; }
.header-text { color: #000 !important; font-family: 'Archivo Black', sans-serif; font-weight: 900 !important; }
#horarios tbody td:first-child { color: var(--neon) !important; font-weight: bold; }

/* WHATSAPP Y CONTACTO */
.whatsapp-fixed {
    position: fixed; bottom: 30px; right: 30px;
    background-color: #25d366;
    color: white !important;
    padding: 12px 25px;
    border-radius: 50px;
    z-index: 10000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    display: flex; align-items: center; gap: 10px;
    text-decoration: none !important;
}

.map-container iframe { filter: grayscale(1) invert(1) opacity(0.8); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero, .parallax-impact { background-attachment: scroll; }
}

@media (max-width: 768px) {
    .display-1 { font-size: 3rem; }
    footer img { height: 80px !important; }
    .navbar-brand img { height: 40px !important; }
}

/* Estilos Landing Disciplina */
.discipline-hero {
    height: 80vh;
    background: url('image/hiphop-hero.jpg') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,1) 10%, rgba(0,0,0,0.3) 100%);
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 2px white;
}

.mt-n4 { margin-top: -2rem; }

.max-w-600 { max-width: 600px; }

.icon-box-neon {
    width: 50px;
    height: 50px;
    background: var(--neon);
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%); /* Efecto inclinado */
}

.details-card-modern {
    background: #0a0a0a;
    position: relative;
    box-shadow: 20px 20px 0px var(--neon); /* Sombra rígida moderna */
}

.details-card-modern::before {
    content: "";
    position: absolute;
    top: -10px; right: -10px; width: 40px; height: 40px;
    border-top: 4px solid var(--neon);
    border-right: 4px solid var(--neon);
}

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

/* Botón Dark para el final */
.btn-dark {
    background: black;
    color: white;
    border: none;
    transition: 0.3s;
}

.btn-dark:hover {
    background: #222;
    transform: translateY(-5px);
}

/* --- FIX LANDING DISCIPLINAS --- */
.discipline-hero {
    min-height: 75vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('image/hip-hop-home-of-dancepng.png') center/cover no-repeat;
    padding-top: 100px; /* Ajuste para que el texto suba más */
    position: relative;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 2px white;
}

.mt-n2 { margin-top: -1.8rem !important; }

.lh-1 { line-height: 1 !important; }

.video-container {
    border: 2px solid var(--neon);
    background: #000;
    line-height: 0;
    overflow: hidden;
}

.details-card-modern {
    background: #0a0a0a;
    box-shadow: 15px 15px 0px var(--neon);
    border: 1px solid var(--neon);
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.4s;
}

.gallery-img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Estilos para las tarjetas de la Crew */
.profe-card {
    transition: transform 0.3s ease;
}

.profe-img-wrap {
    position: relative;
    border: 1px solid #333;
    overflow: hidden;
    line-height: 0;
}

/* El efecto blanco y negro que te gustó */
.profe-img-wrap img {
    filter: grayscale(100%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.profe-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Marco neón al pasar el ratón */
.profe-card:hover .profe-img-wrap {
    border-color: var(--neon);
    box-shadow: 0 0 25px rgba(212, 255, 0, 0.3);
}

.profe-info h2 {
    letter-spacing: -1px;
}

.profe-info a:hover {
    color: white !important;
    transform: translateY(-3px);
    display: inline-block;
}

/* Estilos para la tabla */
.custom-table {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.custom-table thead th {
    border: none;
    font-family: 'Archivo Black', sans-serif;
}

.custom-table tbody td {
    background: #0a0a0a;
    vertical-align: middle;
    padding: 20px !important;
    border: none;
}

.clase-label {
    border-left: 3px solid var(--neon);
    padding-left: 10px;
    display: inline-block;
}

.clase-label.neon-bg {
    background: var(--neon);
    color: black;
    padding: 2px 10px;
    border: none;
}

.shadow-neon-sm {
    box-shadow: 8px 8px 0px rgba(212, 255, 0, 0.2);
}

.scale-11 {
    transform: scale(1.05);
    z-index: 2;
}
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366; /* Verde oficial de WhatsApp */
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    z-index: 9999;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid var(--neon);
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    color: black;
    background-color: var(--neon);
    box-shadow: 0 0 20px var(--neon);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

/* Targetas de comentarios google  */
.review-card {
    background: #0a0a0a;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon) !important;
}

.avatar-mini {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.shadow-neon-sm {
    box-shadow: 0 0 15px rgba(212, 255, 0, 0.1);
}

.italic {
    font-style: italic;
}

.hover-neon-border:hover {
    border-color: var(--neon) !important;
    background: rgba(212, 255, 0, 0.05);
    transition: 0.3s;
}

.custom-faq .accordion-button:not(.collapsed) {
    color: var(--neon);
    background-color: transparent;
    box-shadow: none;
}

.custom-faq .accordion-button::after {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(20deg); /* Flecha en color neón */
}

.custom-faq .accordion-button:focus {
    border-color: var(--neon);
    box-shadow: 0 0 0 0.25rem rgba(212, 255, 0, 0.1);
}

.custom-faq .accordion-item {
    transition: all 0.3s ease;
}

.custom-faq .accordion-item:hover {
    border-bottom-color: var(--neon) !important;
}





.card-latinos-custom {
    border: 2px solid rgb(132, 80, 178) !important; /* Tu púrpura */
    background: rgba(132, 80, 178, 0.05);
    transition: 0.4s all ease;
}

.card-latinos-custom:hover {
    box-shadow: 0 0 20px rgba(132, 80, 178, 0.4);
    transform: translateY(-5px);
}

.text-purple-glow {
    color: rgb(132, 80, 178);
    text-shadow: 0 0 10px rgba(132, 80, 178, 0.1);
}

/* El botón mantiene el verde para que el usuario sepa dónde clicar */
.btn-mixed {
    background-color: var(--neon);
    color: black;
    box-shadow: 0 0 15px rgba(212, 255, 0, 0.3);
}