/* 
   ========================================
   SPINTO MÚSICA - CSS SYSTEM
   ========================================
*/

:root {
    /* Colors */
    --color-bg: #000000;
    --color-text: #ffffff;
    --color-text-muted: #b3b3b3;
    --color-cyan: #00FFFF;
    --color-magenta: #FF00FF;
    --color-glass: rgba(255, 255, 255, 0.05);
    --color-glass-border: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    
    /* Transitions & Shadow */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-neon-cyan: 0 0 15px rgba(0, 255, 255, 0.5);
    --shadow-neon-magenta: 0 0 15px rgba(255, 0, 255, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 
   ========================================
   UTILITIES
   ========================================
*/
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.section {
    padding: 6rem 0;
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title.left-align {
    text-align: left;
}

/* Typography styles */
h1, h2, h3, h4 {
    line-height: 1.2;
}

p {
    color: var(--color-text-muted);
}

/* 
   ========================================
   BUTTONS
   ========================================
*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--color-magenta), var(--color-cyan));
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-cyan);
    color: var(--color-cyan);
}

.btn-outline:hover {
    background: var(--color-cyan);
    color: var(--color-bg);
    box-shadow: var(--shadow-neon-cyan);
}

/* 
   ========================================
   GLASSMORPHISM CARDS
   ========================================
*/
.glass-card {
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--color-glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* 
   ========================================
   HEADER & NAV
   ========================================
*/
.header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.logo {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 40px;
    width: auto;
}

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

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

.nav-list li a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    color: white;
    transition: var(--transition-fast);
}

.nav-list li a:hover {
    color: var(--color-cyan);
    text-shadow: var(--shadow-neon-cyan);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-cyan);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-neon-cyan);
}

.nav-list li a:hover::after {
    width: 100%;
}

/* Nav Portal Button specific */
.nav-portal {
    color: var(--color-magenta) !important;
    text-shadow: var(--shadow-neon-magenta) !important;
}

.nav-portal::after {
    background: var(--color-magenta) !important;
    box-shadow: var(--shadow-neon-magenta) !important;
}

.nav-portal:hover {
    color: white !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.8) !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 
   ========================================
   HERO SECTION
   ========================================
*/
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(45deg, var(--color-magenta), var(--color-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 80vh;
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.bw-artist-img {
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    /* Dramatic B&W filter */
    filter: grayscale(100%) contrast(150%) brightness(0.9) drop-shadow(0 0 30px rgba(0,0,0,0.8));
    position: relative;
    z-index: 2;
}

.hero-neon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Cyan and Magenta gradient overlay */
    background: linear-gradient(45deg, rgba(255,0,255,0.4), rgba(0,255,255,0.4));
    mix-blend-mode: overlay;
    z-index: 3;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

/* Organic Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: blob-float 10s infinite alternate ease-in-out;
}

.magenta-blob {
    background: var(--color-magenta);
    width: 400px;
    height: 400px;
    top: 20%;
    right: 15%;
    opacity: 0.6;
}

.cyan-blob {
    background: var(--color-cyan);
    width: 350px;
    height: 350px;
    bottom: 10%;
    right: 5%;
    opacity: 0.5;
    animation-delay: -5s;
}

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 50px) scale(1.1); }
}

/* 
   ========================================
   GRID SYSTEM
   ========================================
*/
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* 
   ========================================
   DIFERENCIALES
   ========================================
*/
.accent-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.accent-icon.cian { color: var(--color-cyan); text-shadow: var(--shadow-neon-cyan); }
.accent-icon.magenta { color: var(--color-magenta); text-shadow: var(--shadow-neon-magenta); }

.diferenciales .card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.diferenciales .card:hover .accent-icon {
    transform: scale(1.1) translateY(-5px);
}

/* 
   ========================================
   CURSOS
   ========================================
*/
.course-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.course-header {
    padding: 2rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.course-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.magenta-bg {
    background: linear-gradient(135deg, rgba(255,0,255,0.2), transparent);
}

.cian-bg {
    background: linear-gradient(135deg, rgba(0,255,255,0.2), transparent);
}

.badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.course-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-body ul {
    margin-bottom: 2rem;
    flex: 1;
}

.course-body li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.course-body li i {
    color: var(--color-cyan);
}

/* Plan EVC (Canto Expanded) */
.canto-card-expanded {
    grid-column: 1 / -1; 
}

.evc-desc {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #ccc;
    font-weight: 500;
}

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

.evc-level {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.evc-level:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.1);
}

.evc-level:nth-child(2):hover {
    background: rgba(255, 0, 255, 0.05);
    border-color: rgba(255, 0, 255, 0.5);
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.1);
}

.evc-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cian-text { color: var(--color-cyan); text-shadow: var(--shadow-neon-cyan); }
.magenta-text { color: var(--color-magenta); text-shadow: var(--shadow-neon-magenta); }

.evc-info h4 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.evc-info p {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.btn-sm {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    width: 100%;
}

/* 
   ========================================
   PRODUCTORA (ESTÁTICA PREMIUM)
   ========================================
*/
.productora-estatica {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productora-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.productora-bg {
    width: 100%;
    height: 100%;
    background-image: url('assets/banner-shows-final.png');
    background-size: cover;
    background-position: center;
}

.productora-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, #000 0%, transparent 20%),
        linear-gradient(to top, #000 0%, transparent 20%),
        linear-gradient(to right, #000 0%, transparent 20%),
        linear-gradient(to left, #000 0%, transparent 20%);
    background-color: transparent; /* Solo aplicamos los bordes */
    z-index: 2;
    pointer-events: none;
}

.productora-estatica .container {
    position: relative;
    z-index: 3;
    background: rgba(0,0,0,0.6);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.productora-subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 600px;
   margin: 0 auto;
}

/* 
   ========================================
   DIRECTORES (PRESENTACIÓN CENTRADA)
   ========================================
*/
.director-presentation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.director-image-centered {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.director-img-wrapper-centered {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.director-img-clean {
    width: 100%;
    max-height: 550px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    /* Imagen transparente original: sin recortes, sin filtros adicionales */
}

.small-blob-centered {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    z-index: 0;
}

.director-info-centered {
    width: 100%;
    max-width: 1000px;
}

.director-profile-inline {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.profile-box {
    flex: 1;
    min-width: 300px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    transition: var(--transition-fast);
}

.profile-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.profile-box:nth-child(2):hover {
    border-color: rgba(255, 0, 255, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.1);
}

.profile-box .name {
    font-size: 1.8rem;
    color: var(--color-cyan);
    margin-bottom: 0.2rem;
    text-shadow: var(--shadow-neon-cyan);
}

.profile-box:nth-child(2) .name {
    color: var(--color-magenta);
    text-shadow: var(--shadow-neon-magenta);
}

.profile-box .role {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    font-style: italic; /* Cargo en cursiva elegante */
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.profile-box .bio {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

.bio-synergy {
    font-size: 1.1rem;
    color: white;
    padding-left: 0;
    margin-top: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-4 { margin-bottom: 3rem; }
.pt-0 { padding-top: 0 !important; }

/* 
   ========================================
   RESEÑAS ALUMNOS
   ========================================
*/
.resenas {
    position: relative;
    z-index: 1;
}

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

.resena-card {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-fast);
}

.resena-card.border-cian {
    border-bottom: 3px solid var(--color-cyan);
}

.resena-card.border-magenta {
    border-bottom: 3px solid var(--color-magenta);
}

.resena-card:hover {
    transform: translateY(-10px);
}

.resena-card.border-cian:hover {
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.3);
}

.resena-card.border-magenta:hover {
    box-shadow: 0 15px 30px rgba(255, 0, 255, 0.15);
    border-color: rgba(255, 0, 255, 0.3);
}

.stars {
    color: #FFD700; /* Dorado neón */
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.resena-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #eee;
    line-height: 1.6;
}

.btn-google {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    padding: 1rem 2rem;
}

.btn-google:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

/* 
   ========================================
   NUESTRAS REDES & MAPA
   ========================================
*/
.redes {
    background: #050505;
}

.neon-social-mosaic {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 3rem 0;
    flex-wrap: wrap;
}

.mosaic-item {
    font-size: 4rem;
    color: white;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: transparent;
    border: 2px solid;
    transition: var(--transition-slow);
    text-decoration: none;
}

.mosaic-ig { border-color: var(--color-magenta); color: var(--color-magenta); }
.mosaic-ig:hover { background: var(--color-magenta); color: white; box-shadow: var(--shadow-neon-magenta); transform: translateY(-10px); }

.mosaic-tk { border-color: white; color: white; }
.mosaic-tk:hover { background: white; color: black; box-shadow: 0 0 25px rgba(255,255,255,0.5); transform: translateY(-10px); }

.mosaic-yt { border-color: var(--color-cyan); color: var(--color-cyan); }
.mosaic-yt:hover { background: var(--color-cyan); color: black; box-shadow: var(--shadow-neon-cyan); transform: translateY(-10px); }

/* MAPA */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--color-cyan);
    box-shadow: var(--shadow-neon-cyan);
    position: relative;
    background: #111;
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    box-shadow: inset 0 0 20px rgba(0,255,255,0.3);
    border-radius: 20px;
}

/* 
   ========================================
   FOOTER
   ========================================
*/
.footer {
    background: #050505;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 1.2rem;
}

.footer-socials a:hover {
    background: var(--color-cyan);
    color: black;
    box-shadow: var(--shadow-neon-cyan);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
}

/* 
   ========================================
   FLOATING WHATSAPP
   ========================================
*/
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    transition: var(--transition-fast);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* 
   ========================================
   ANIMATIONS (REVEAL)
   ========================================
*/
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

/* 
   ========================================
   SVG / CSS ART GENERATIVE
   ========================================
*/
/* COURSE ART */
.course-art {
    height: 200px;
    background: #000;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.course-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.course-card:hover .course-img {
    transform: scale(1.05);
}

/* 
   ========================================
   RESPONSIVE
   ========================================
*/
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        height: 50vh;
        width: 100%;
        justify-content: center;
    }
    
    .director-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-title.left-align {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        padding: 2rem 0;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .show-title {
        font-size: 2.5rem;
    }

    /* FIX HERO MÓVIL 100VH */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 100vh;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* Texto abajo */
        align-items: center;
        background: #000;
    }

    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        margin: 0;
        padding: 0;
    }

    .hero-image-wrapper {
        width: 100%;
        height: 100%;
    }

    .bw-artist-img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
        object-position: center top !important; /* Centrado para rostros */
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 3rem 1.5rem 4rem 1.5rem; /* Padding base para evitar pegar el botón */
        background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0) 100%); /* Degradado superpuesto */
        margin-bottom: 0;
        text-align: center;
    }

    /* FIX SHOWS MÓVIL */
    .productora-estatica {
        padding: 8rem 0;
        min-height: 50vh;
    }
    
    .productora-bg {
        background-size: cover !important;
        background-position: center center !important;
    }
    
}
