/* ============================================
   8 TIEMPOS — ESTUDIO DE DANZA
   style.css — versión final completa
   ============================================ */

/* VARIABLES */
:root {
    /* Paleta oscura */
    --dark:       #020617;
    --dark-mid:   #060e20;
    --dark-card:  rgba(255,255,255,0.05);
    --border:     rgba(255,255,255,0.08);
    --text:       #e2e8f0;
    --text-muted: #94a3b8;
    /* Paleta crema */
    --cream:      #f5f0e8;
    --cream-dark: #e8e0d0;
    --ink:        #1a1208;
    --ink-soft:   #5a4a35;
    /* Acentos */
    --pink:       #ff2f92;
    --pink-soft:  #ff69b4;
    --blue:       #5b7cff;
    --blue-soft:  #7f9cff;
    --radius:     16px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
img   { max-width: 100%; height: auto; display: block; }

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

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}


/* ============================================
   FONDO ANIMADO (canvas fijo)
   ============================================ */

.bg-canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 0%, #0f172a 0%, #020617 60%);
    pointer-events: none;
}

.bg-orb-1 {
    position: absolute;
    width: 700px; height: 700px;
    top: -200px; left: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,47,146,0.18) 0%, transparent 70%);
    animation: orbFloat1 12s ease-in-out infinite;
}
.bg-orb-2 {
    position: absolute;
    width: 800px; height: 800px;
    bottom: -300px; right: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,124,255,0.16) 0%, transparent 70%);
     
}
.bg-orb-3 {
    position: absolute;
    width: 500px; height: 500px;
    top: 40%; left: 45%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,105,180,0.08) 0%, transparent 70%);
    animation: orbFloat3 20s ease-in-out infinite;
}
.bg-grid {
    position: absolute;
    inset: 0;
    /*background-image:        Esto les da una linea de fondo
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);*/
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

@keyframes orbFloat1 {
    0%,100% { transform: translate(0,0) scale(1); }
    33%     { transform: translate(60px,40px) scale(1.05); }
    66%     { transform: translate(-30px,80px) scale(0.97); }
}
@keyframes orbFloat2 {
    0%,100% { transform: translate(0,0) scale(1); }
    40%     { transform: translate(-80px,-50px) scale(1.08); }
    70%     { transform: translate(40px,-30px) scale(0.95); }
}
@keyframes orbFloat3 {
    0%,100% { transform: translate(-50%,-50%) scale(1); }
    50%     { transform: translate(-50%,-50%) scale(1.2); }
}


/* ============================================
   SECCIONES — alternado oscuro / crema
   ============================================ */

/* Oscuro (por defecto para secciones principales) */
.section-dark {
    background: transparent; /* usa el canvas de fondo */
}

/* Labels y títulos para fondo oscuro */
.section-label {
    font-size: 11px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink-soft);
    margin-bottom: 12px;
    font-weight: 400;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

/* Labels y títulos para fondo crema */
.section-label-dark {
    font-size: 11px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
    font-weight: 400;
}

.section-title-dark {
    font-size: clamp(2rem, 5vw, 3.2rem);
    text-align: center;
    margin-bottom: 50px;
    color: var(--ink);
}


/* ============================================
   NAVBAR
   ============================================ */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 12px 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(2,6,23,0.6);
    border-bottom: 1px solid rgba(255,47,146,0.2);
    transition: background 0.3s;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.nav-left img { width: 120px; border-radius: 10px; }

.desktop-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}



.desktop-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--pink);
    transition: width 0.3s;
}

.desktop-menu a:hover        { color: white; }
.desktop-menu a:hover::after { width: 100%; }

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 10000;
}

.menu-btn span {
    display: block;
    width: 24px; height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .menu-btn      { display: flex; }
    .desktop-menu  { display: none; }
}


/* ============================================
   SIDEBAR
   ============================================ */

#sidebar {
    position: fixed;
    top: 0; right: -280px;
    width: 280px; height: 100%;
    background: #0a0f1e;
    border-left: 1px solid var(--border);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 99999;
    display: flex;
    flex-direction: column;
}

#sidebar.active { right: 0; }

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
}

.sidebar-close {
    background: none; border: none;
    color: var(--text-muted);
    font-size: 20px; cursor: pointer;
    transition: color 0.2s;
}
.sidebar-close:hover { color: white; }

#sidebar ul { list-style: none; padding: 20px 0; }
#sidebar ul li { border-bottom: 1px solid var(--border); }

#sidebar a {
    display: block;
    padding: 16px 28px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

#sidebar a:hover {
    color: white;
    background: rgba(255,47,146,0.08);
    padding-left: 36px;
}

.sidebar-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    backdrop-filter: blur(2px);
}
.sidebar-overlay.active { display: block; }


/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bg-video-blur {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: blur(30px) brightness(0.25);
    z-index: 0;
    pointer-events: none;
}

#bg-video {
    position: absolute;
    top: 50%; left: 50%;
    height: 100%; width: auto;
    min-width: 100%;
    transform: translate(-50%,-50%);
    z-index: 1;
    pointer-events: none;
}

.control-audio {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: 1px solid #fff;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s;
}

.control-audio:hover {
    background: white;
    color: black;
}

.hero::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(2,6,23,0.97) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Contenido sobre el video */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 80px 24px 60px;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(255,47,146,0.4);
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--pink-soft);
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(10px);
    background: rgba(255,47,146,0.08);
    animation: fadeDown 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

/* Título */
.hero-titulo {
    font-size: clamp(3rem, 9vw, 6rem);
    font-family: "League Spartan", sans-serif;
    color: white;
    letter-spacing: -2px;
    font-weight: 300;
    animation: fadeDown 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

.hero-titulo em{
    color: var(--pink);
    font-style: normal;
}

/* Frase gancho */
.hero-gancho {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    animation: fadeDown 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.6s;
}

.hero-gancho strong { color: var(--pink-soft); font-weight: 600; }

/* CTAs */
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeDown 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.8s;
}

.btn-primary {
    padding: 14px 34px;
    background: var(--pink);
    color: white;
    border: none;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255,47,146,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255,47,146,0.55);
}

.btn-secondary {
    padding: 14px 34px;
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.07);
    transform: translateY(-2px);
}

/* Stats */
.hero-stats {
    display: flex;
   
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeDown 0.8s ease forwards;
    opacity: 0;
    animation-delay: 1s;
}

.stat-item { text-align: center; }

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: white;
    font-weight: 600;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    font-family: 'Poppins', sans-serif;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeDown 0.8s ease forwards;
    animation-delay: 1.3s;
}

.hero-scroll span {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
}

.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--pink-soft), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%,100% { opacity: 0.4; transform: scaleY(1); }
    50%     { opacity: 1;   transform: scaleY(1.2); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ============================================
   SECCIÓN BASE
   ============================================ */

section { padding: 90px 5%; }


/* ============================================
   SOBRE NOSOTROS
   ============================================ */

#sobre { text-align: center; }

.sobre-container {
    max-width: 760px;
    margin: 0 auto;
}

.sobre-container p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.9;
}


/* ============================================
   DIFERENCIAL OEDAM — crema
   ============================================ */

.diferencial-section {
    background: var(--cream);
    padding: 90px 5%;
    position: relative;
    overflow: hidden;
}

.diferencial-section::before {
    content: '8';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 380px;
    color: rgba(26,18,8,0.04);
    right: -40px; top: -60px;
    line-height: 1;
    pointer-events: none;
    font-weight: 600;
}

.diferencial-inner {
    max-width: 860px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    position: relative;
}

.diferencial-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,47,146,0.1);
    border: 1px solid rgba(255,47,146,0.25);
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pink);
    font-family: 'Poppins', sans-serif;
}

.diferencial-inner h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-family: "League Spartan", sans-serif;
    color: var(--ink);
    font-weight: 400;
    line-height: 1.25;
}

.diferencial-inner h2 em {
    color: var(--pink);
    font-style: normal;
}

.diferencial-inner p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.8;
    max-width: 580px;
}

.avales-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.aval-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--ink);
    color: white;
    border-radius: 100px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}


/* ============================================
   METODOLOGÍA
   ============================================ */

.info-section { padding: 90px 5%; }

.info-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: auto;
}

.info-img { flex: 1; }

.info-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.info-text { flex: 1; }

.info-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-family: "League Spartan", sans-serif;
    color: white;
    margin-bottom: 20px;
    margin-top: 12px;
}

.info-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .info-container { flex-direction: column; gap: 40px; }
}


/* ============================================
   HORARIOS — crema
   ============================================ */

.horarios-section {
    background: var(--cream);
    padding: 90px 5%;
    position: relative;
    overflow: hidden;
}

.horarios-section::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    top: -100px; right: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,47,146,0.06), transparent 70%);
    pointer-events: none;
}

.horarios-inner { max-width: 960px; margin: auto; }

.horarios-header {
    text-align: center;
    margin-bottom: 56px;
}

.horarios-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: "League Spartan", sans-serif;
    color: var(--ink);
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 10px;
}

.horarios-header p {
    color: var(--ink-soft);
    font-size: 14px;
}

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

.dia-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26,18,8,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.dia-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26,18,8,0.13);
}

.dia-header {
    background: var(--ink);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dia-icono { font-size: 18px; }

.dia-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: white;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.dia-clases { padding: 4px 0; }

.clase-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid #f0ebe0;
    gap: 16px;
    transition: background 0.2s;
}

.clase-item:last-child { border-bottom: none; }
.clase-item:hover { background: #faf8f4; }

.clase-nombre {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2px;
}

.clase-nivel {
    font-size: 11px;
    color: #8a7a65;
    font-family: 'Poppins', sans-serif;
}

.clase-horario {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--pink);
    white-space: nowrap;
    flex-shrink: 0;
}

.horarios-cta {
    text-align: center;
    margin-top: 48px;
}

.horarios-cta p {
    color: var(--ink-soft);
    font-size: 14px;
    margin-bottom: 16px;
}

.btn-inscripcion {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: var(--ink);
    color: white;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(26,18,8,0.2);
}

.btn-inscripcion:hover {
    background: var(--pink);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255,47,146,0.4);
}


/* ============================================
   BENEFICIOS — oscuro
   ============================================ */

.benefits-section { padding: 90px 5%; }

.container { max-width: 1100px; margin: auto; }

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-family: "League Spartan", sans-serif;
    color: white;
    margin-bottom: 12px;
    margin-top: 10px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 480px;
    margin: auto;
    font-size: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.7s ease forwards;
}

.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5) { animation-delay: 0.4s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }

.feature-card::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,47,146,0.06), rgba(91,124,255,0.06));
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
    border-color: rgba(255,47,146,0.3);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,47,146,0.12), rgba(91,124,255,0.12));
    border: 1px solid rgba(255,47,146,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.feature-card h3 {
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}


/* ============================================
   TESTIMONIOS — crema
   ============================================ */

.testimonios-section {
    background: var(--cream);
    padding: 90px 5%;
    position: relative;
    overflow: hidden;
}

.testimonios-inner { max-width: 1100px; margin: auto; }

.testimonios-header {
    text-align: center;
    margin-bottom: 56px;
}

.testimonios-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: "League Spartan", sans-serif;
    color: var(--ink);
    font-weight: 400;
    margin-top: 10px;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonio-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(26,18,8,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.testimonio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(26,18,8,0.13);
}

.testimonio-card::before {
    content: '"';
    position: absolute;
    top: 12px; left: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: rgba(255,47,146,0.12);
    line-height: 1;
    pointer-events: none;
}

.testimonio-estrellas {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.estrella { color: #f59e0b; font-size: 14px; }

.testimonio-texto {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonio-autora {
    display: flex;
    align-items: center;
    gap: 14px;
}

.autora-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), #8134af);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.autora-nombre {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2px;
}

.autora-nivel {
    font-size: 11px;
    color: #8a7a65;
    font-family: 'Poppins', sans-serif;
}


/* ============================================
   CARRUSEL 3D — oscuro
   ============================================ */

#carrusel { text-align: center; }

.carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 420px;
    perspective: 1000px;
    overflow: visible;
}

.carousel-track-new {
    position: relative;
    width: 100%; height: 100%;
}

.slide-new {
    position: absolute;
    top: 50%; left: 50%;
    width: 420px; height: 360px;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.slide-new img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.slide-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 50px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    border-radius: 0 0 20px 20px;
    opacity: 0;
    transition: opacity 0.4s;
}

.slide-caption span {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.slide-new.pos-center {
    transform: translateX(-50%) translateY(-50%) scale(1);
    z-index: 10;
    filter: brightness(1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.slide-new.pos-center .slide-caption { opacity: 1; }
.slide-new.pos-center img:hover { transform: scale(1.03); }

.slide-new.pos-left {
    transform: translateX(calc(-50% - 280px)) translateY(-50%) scale(0.78);
    z-index: 5;
    filter: brightness(0.4);
}

.slide-new.pos-right {
    transform: translateX(calc(-50% + 280px)) translateY(-50%) scale(0.78);
    z-index: 5;
    filter: brightness(0.4);
}

.slide-new.pos-hidden {
    transform: translateX(-50%) translateY(-50%) scale(0.5);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

.carousel-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 20;
}

.carousel-btn:hover {
    background: var(--pink);
    border-color: var(--pink);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    /* margin-top: 24px;  <-- Podés quitar esto */
    position: absolute;    /* Cambiado de relative a absolute */
    bottom: 20px;          /* Los ubica a 20px del borde inferior */
    left: 0;
    right: 0;
    z-index: 25;           /* Para que queden por encima de las fotos */
}

.carousel-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none; cursor: pointer;
    transition: all 0.3s; padding: 0;
}

.carousel-dot.active {
    background: white;
    width: 22px;
    border-radius: 4px;
}

@media (max-width: 700px) {
    .carousel-wrapper { 
        overflow: hidden; 
        height: 300px; 
        position: relative; /* Asegurate que el wrapper sea relativo */
    }
    .slide-new.pos-left, .slide-new.pos-right { display: none; }
    .slide-new.pos-center {
        width: 100%; height: 100%;
        transform: translateX(-50%) translateY(-50%);
    }
    /* Ajuste para los puntos en móvil */
    .carousel-dots { 
        bottom: 15px; 
        top: auto; /* Esto anula el top que tenías antes */
    }
}

@media (max-width: 700px) {
    .carousel-btn {
        display: none; /* Desaparecen en celular */
    }
}


/* ============================================
   GALERÍA — crema
   ============================================ */

/*------------------------ GALERIA ------------------------*/

.galeria-section {
    background: var(--cream);
    padding: 90px 5%;
    text-align: center;
}

/* GRID */
.galeria-section .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* CARD */
.img-box {
    width: 100%;
    height: 320px; /* 🔥 todas iguales */
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.img-box:hover {
    transform: translateY(-5px);
}

/* IMAGEN */
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 clave para que todas se vean iguales */
    transition: transform 0.5s ease, filter 0.3s ease;
}

.img-box:hover img {
    transform: scale(1.1);
    filter: brightness(0.85);
}

/* TEXTO */
.caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: white;
    font-size: 14px;
    text-align: left;
}

/*------------------------ MODAL ------------------------*/

.modal-galeria {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.modal-galeria img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

/* Cerrar con click */
.modal-galeria.active {
    display: flex;
}

/* ANIMACION */
@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .img-box {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .galeria-section .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .img-box {
        height: 150px;
        border-radius: 12px;
    }
}

/* ============================================
   INSTAGRAM REELS — oscuro
   ============================================ */

#videosInstagran { text-align: center; }

.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 460px));
    gap: 24px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.reel-item {
    width: 100%;
    border-radius: 10px;
    overflow: hidden; /* Esto es clave */
    position: relative;
    
    /* 🔥 ALTURA PARA COMPUTADORA */
    height: 480px; 
}

/* 🔥 AJUSTE PARA CELULAR (iPhone/Android) */
@media (max-width: 768px) {
    .reels-grid { 
        grid-template-columns: 1fr; 
        padding: 0 0px;
    }
    
    .reel-item {
        /* En el celu los embeds suelen ser más altos, 
           ajustá este número hasta que desaparezca el 'Ver más' */
        height: 560px; 
    }
}

/* Este código obliga al contenido de Instagram a quedarse arriba */
.reel-item iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    /* Le damos mucha altura al iframe para que se 'pierda' por abajo */
    height: 1000px !important; 
}

/* ============================================
   VIDEOS — crema
   ============================================ */

.videos-section {
    background: var(--cream);
    padding: 90px 5%;
    text-align: center;
}

.videos-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.contenedor-video {
    position: relative;
    width: 100%;
    max-width: 360px;
}

.video-danza {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--cream-dark);
    box-shadow: 0 20px 40px rgba(26,18,8,0.15);
}

.capa-protectora {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 85%;
    z-index: 10;
    background: transparent;
}


/* ============================================
   FOOTER
   ============================================ */

footer {
    background: #060c1a;
    border-top: 1px solid var(--border);
    padding: 50px 5%;
}

.footer-inner {
    max-width: 560px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: white;
    letter-spacing: 2px;
}

.footer-inner p { color: var(--text-muted); font-size: 14px; }

.footer-links {
    display: flex;
    gap: 16px;
    margin: 8px 0;
}

.footer-links a {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.footer-links a:hover {
    border-color: var(--pink);
    color: var(--pink);
    transform: translateY(-3px);
}

.footer-copy { font-size: 12px !important; color: rgba(148,163,184,0.5) !important; }


/* ============================================
   MODAL MEJORADO
   ============================================ */
.modal-x {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-x:hover {
    background: rgba(255,255,255,0.3);
}


.modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(10px);
    padding: 20px;
}

.modal-v2-content {
    background: #0d1526;
    border: 1px solid rgba(255,47,146,0.2);
    border-radius: 28px;
    max-width: 420px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.7);
    animation: modalPop 0.45s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-banner {
    background: linear-gradient(135deg, #ff2f92, #c2185b);
    padding: 32px 32px 26px;
    text-align: center;
}

.modal-banner-tag {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

.modal-banner h2 {
    font-size: 2.2rem;
    color: white;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.modal-urgencia {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    background: rgba(0,0,0,0.2);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    font-family: 'Poppins', sans-serif;
}

.dot-pulse {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #7fff7f;
    animation: dotPulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes dotPulse {
    0%,100% { opacity: 1; }
    50%     { opacity: 0.4; }
}

.modal-body { padding: 28px 32px 32px; text-align: center; }

.modal-body p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.modal-body p strong { color: var(--text); }

.btn-whatsapp-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
    margin-bottom: 12px;
}

.btn-whatsapp-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(37,211,102,0.45);
}

.btn-cerrar-modal {
    background: none; border: none;
    color: var(--text-muted);
    font-size: 13px; cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: color 0.2s; padding: 4px;
}
.btn-cerrar-modal:hover { color: var(--text); }


/* ============================================
   BOTONES FLOTANTES
   ============================================ */

.social-float {
    position: fixed;
    right: 24px; bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.social-float.active {
    opacity: 1;
    transform: translateY(0);
}

.float-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 16px 36px rgba(0,0,0,0.35);
}

.whatsapp  { background: linear-gradient(135deg, #25D366, #128C7E); }
.instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }

.tooltip {
    position: absolute;
    right: 68px;
    background: #0f172a;
    border: 1px solid var(--border);
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 8px;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.3s;
    pointer-events: none;
}

.float-btn:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37,211,102,0.3);
    animation: pulse 2.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0%   { transform: scale(1); opacity: 0.8; }
    70%  { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}


/* ============================================
   RESPONSIVE GLOBAL
   ============================================ */

@media (max-width: 768px) {
    section { padding: 70px 5%; }
    .horarios-grid    { grid-template-columns: 1fr; }
    .testimonios-grid { grid-template-columns: 1fr; }
    .avales-row       { flex-direction: column; align-items: center; }
    .hero-stats       { gap: 24px; }
    .stat-num         { font-size: 1.7rem; }
    .modal-banner h2  { font-size: 1.8rem; }
    .modal-body       { padding: 20px 22px 26px; }
    .modal-banner     { padding: 24px 22px 20px; }
}