/* --- ESTILOS BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #0f0f0f;
    color: white;
}

/* Video de fondo: Ajustes para m vil */
.video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
    overflow: hidden;
    background: #0f0f0f; 
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

header {
    padding: 10px 5%;
    background: rgba(0, 0, 0, 0.43);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    position: relative; 
}

/* BOT N HAMBURGUESA */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1100;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

.main-logo {
    height: 85px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #ddb606;
}

/* BOT N BEATS */
.btn-beats-nav {
    background: #ddb606;
    border: 1px solid #ddb606;
    padding: 8px 24px;
    border-radius: 50px;
    color: #000 !important;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.beats-icon-svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-beats-nav:hover {
    background: #000;
    color: #ddb606 !important;
    box-shadow: 0 0 15px rgba(221, 182, 6, 0.4);
    border-color: #ddb606;
}

/* --- HERO --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 105px; /* Evita que el contenido choque con el nav fijo */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(15,15,15,0.6) 0%, rgba(15,15,15,1) 90%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.badge {
    color: #ddb606;
    border: 1px solid #ddb606;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 2px;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo para mejorar lectura sobre el video */
    display: inline-block; /* Ayuda a estabilizar la píldora */
    margin-bottom: 20px; /* Separación extra con el título H1 */
}

.hero h1 { font-size: 5rem; font-weight: 900; margin: 20px 0; line-height: 1.1; }
.hero h1 span { color: #ddb606; }
.hero p { font-size: 1.1rem; color: #ccc; margin-bottom: 30px; }

.hero-btns { display: flex; gap: 15px; justify-content: center; }
.btn-main { background: #ddb606; color: #000; padding: 15px 35px; text-decoration: none; font-weight: bold; border-radius: 5px; transition: 0.3s; border: none; cursor: pointer; }
.btn-outline { background: transparent; color: #fff; border: 1px solid #fff; padding: 15px 35px; text-decoration: none; font-weight: bold; border-radius: 5px; transition: 0.3s; }
.btn-outline:hover { background: #fff; color: #000; }

.hero-stats { display: flex; justify-content: center; gap: 40px; margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; }
.stat-item strong { display: block; font-size: 1.5rem; color: #ddb606; }
.stat-item span { color: #777; font-size: 0.8rem; text-transform: uppercase; }

/* --- L NEA MET LICA --- */
.gold-separator-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 4px;
    z-index: 10;
    margin-top: -2px;
    overflow: hidden;
}

.gold-metallic-line {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, #aa8916 20%, #ffd700 50%, #aa8916 80%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
    transition: width 0.1s linear, opacity 0.1s linear;
}

/* --- CONTENEDORES --- */
.section-container { padding: 100px 5%; max-width: 1200px; margin: 0 auto; }
.bg-darker { background-color: #080808; }
.section-title { font-size: 2rem; margin-bottom: 40px; text-transform: uppercase; color: #fff; text-align: center; }

/* FONDO DE CONTACTO */
.bg-light-dark {
    background-color: #121212;
    border-top: 1px solid rgba(255,255,255,0.02);
}

/* --- BEATS --- */
.beatstars-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    background: #111;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.beatstars-wrapper:hover {
    border-color: #ddb606;
}

/* --- CAT LOGO --- */
.spotify-marquee { width: 100%; overflow: hidden; background: #121212; padding: 30px 0; border-radius: 12px; border: 1px solid #222; }
.spotify-track-list { display: flex; width: max-content; animation: spotifyScroll 40s linear infinite; }

.spotify-item { 
    width: 250px; 
    margin: 0 15px; 
    flex-shrink: 0; 
    transition: transform 0.3s; 
    position: relative; 
    border-radius: 8px;
    overflow: hidden; 
}

.spotify-item img { 
    width: 100%; 
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

/* VI ETA */
.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.9) 100%);
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* INFORMACI N */
.item-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    z-index: 2;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.item-info h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 900;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.item-info p {
    color: #ccc;
    font-size: 0.75rem;
    font-weight: 400;
}

.spotify-item:hover { transform: scale(1.03); }
.spotify-item:hover .item-overlay { opacity: 0; }

@keyframes spotifyScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- SECCI N SOBRE M  --- */
.about-wrapper { display: flex; align-items: center; gap: 60px; background: #111; padding: 50px; border-radius: 12px; border: 1px solid #222; flex-wrap: wrap; }
.about-text { flex: 1; min-width: 300px; }
.about-text .section-title { font-size: 1.5rem; margin-bottom: 20px; }
.about-text h3 { font-size: 1.3rem; margin-bottom: 20px; color: #fff; font-weight: 900; }
.about-text p { color: #ccc; margin-bottom: 15px; line-height: 1.6; font-size: 1rem; }
.about-image { flex: 1; min-width: 300px; display: flex; justify-content: center; }
.about-image img { width: 100%; max-width: 500px; border-radius: 12px; filter: grayscale(100%); transition: 0.3s; }
.about-image img:hover { filter: grayscale(0%); }
.fade-in-section { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-section.is-visible { opacity: 1; transform: translateY(0); }

/* BOTONES SOCIALES */
.about-socials { display: flex; gap: 15px; margin-top: 30px; }
.social-btn { width: 45px; height: 45px; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; color: #ccc; background: transparent; }
.social-btn svg { width: 20px; height: 20px; fill: currentColor; }
.social-btn:hover { border-color: #ddb606; background: #ddb606; color: #000; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(221, 182, 6, 0.3); }

/* --- LICENCIAS --- */
.license-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 30px; }
.license-card { background: #111; padding: 30px; border-radius: 10px; text-align: center; border: 1px solid #222; display: flex; flex-direction: column; position: relative; }
.license-card.featured { border-color: #ddb606; }
/* AQUÍ HE RESTAURADO LAS ESTRELLAS ★ POPULAR ★ */
.license-card.featured::before { content: "★ POPULAR ★"; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background-color: #D84315; color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; text-transform: uppercase; white-space: nowrap; box-shadow: 0 2px 10px rgba(216, 67, 21, 0.6); z-index: 5; border: 1px solid rgba(255,255,255,0.2); }
.license-price { font-size: 1.8rem; font-weight: bold; color: #ddb606; margin: 15px 0; }
.license-card ul { list-style: none; color: #999; line-height: 1.8; margin-bottom: 20px; flex-grow: 1; }
.btn-read-license { background-color: #ddb606; color: #000; border: 2px solid #ddb606; padding: 10px 20px; border-radius: 50px; font-weight: bold; cursor: pointer; transition: 0.3s; text-transform: uppercase; font-size: 0.8rem; margin-top: 15px; }
.btn-read-license:hover { background-color: #000; color: #ddb606; }

/* === NUEVO ESTILO: BULK DEALS (SHINING GOLD ARC) === */
.bulk-deals-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap; /* Para m vil */
}

/* El item p ldora con el efecto de arco */
.bulk-deal-pill {
    position: relative;
    width: 250px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Clave para recortar el gradiente */
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* El pseudo-elemento que gira detr s */
.bulk-deal-pill::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 500%; /* Muy alto para cubrir al rotar */
    /* Gradiente c nico: Transparente -> Oro -> Transparente crea el "arco" */
    background: conic-gradient(transparent 0deg, transparent 80deg, #ffd700 130deg, transparent 180deg);
    animation: rotateArc 4s linear infinite;
}

@keyframes rotateArc {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* El contenido interno (tapa el centro para dejar solo el borde) */
.bulk-inner {
    position: relative;
    z-index: 1;
    background: #111; /* Color de fondo del bot n */
    width: calc(100% - 3px); /* Resta para el grosor del borde */
    height: calc(100% - 3px);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bulk-inner span {
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deal-icon {
    width: 18px;
    height: 18px;
    color: #ccc;
    transform: rotate(90deg); /* Icono de etiqueta rotado */
}

/* --- SERVICIOS & CONTACTO --- */
.services-modern-container { background: #181818; border-radius: 12px; padding: 40px; display: flex; justify-content: space-between; gap: 40px; max-width: 1000px; margin: 0 auto; border: 1px solid rgba(255,255,255,0.05); }
.services-list-side, .services-form-side { flex: 1; }
.services-modern-title { font-size: 1.8rem; margin-bottom: 25px; color: #fff; }
.services-bullets { list-style: none; }
.services-bullets li { margin-bottom: 12px; color: #ccc; display: flex; align-items: center; }
/* PUNTOS AMARILLOS RESTAURADOS */
.services-bullets li::before { content: "•"; color: #ddb606; font-weight: bold; margin-right: 10px; }
.form-side-title { color: #777; font-size: 1rem; margin-bottom: 20px; text-transform: uppercase; }
.mini-contact-form { display: flex; flex-direction: column; gap: 15px; }
.mini-contact-form input, .mini-contact-form textarea { background: #222; border: 1px solid #333; padding: 12px; border-radius: 6px; color: #fff; width: 100%; }
.form-footer-text { font-size: 0.8rem; color: #555; }
.form-footer-text a { color: #ddb606; text-decoration: none; }
.btn-main-small { background: #ddb606; color: #000; padding: 10px 20px; border: none; border-radius: 4px; font-weight: bold; cursor: pointer; align-self: flex-start; }
.contact-form { max-width: 500px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea { padding: 15px; background: #181818; border: 1px solid #333; color: #fff; border-radius: 5px; }

/* --- MODAL POL TICA Y LICENCIAS --- */
.modal { display: none; position: fixed; z-index: 3000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.8); backdrop-filter: blur(5px); justify-content: center; align-items: center; }
.modal-content { background-color: #181818; margin: 5% auto; padding: 40px; border: 1px solid #333; width: 80%; max-width: 700px; border-radius: 12px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5); animation: fadeInModal 0.3s ease; max-height: 85vh; overflow-y: auto; display: flex; flex-direction: column; }
.modal-content::-webkit-scrollbar { width: 8px; }
.modal-content::-webkit-scrollbar-track { background: #222; }
.modal-content::-webkit-scrollbar-thumb { background-color: #ddb606; border-radius: 20px; }
@keyframes fadeInModal { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.close-modal { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; transition: 0.3s; align-self: flex-end; }
.close-modal:hover, .close-modal:focus { color: #ddb606; text-decoration: none; }
.modal-title { color: #ddb606; margin-bottom: 20px; font-size: 1.5rem; text-transform: uppercase; border-bottom: 1px solid #333; padding-bottom: 10px; }
.modal-body h3 { color: #fff; font-size: 1.1rem; margin-top: 20px; margin-bottom: 10px; font-weight: bold; }
.modal-body h4 { color: #ddd; font-size: 1rem; margin-top: 15px; margin-bottom: 8px; font-weight: bold; }
.modal-body p, .modal-body ul { color: #ccc; font-size: 0.95rem; line-height: 1.6; margin-bottom: 10px; }
.modal-body ul { padding-left: 20px; list-style: disc; }
.modal-footer-note { font-size: 0.8rem; color: #555; margin-top: 30px; border-top: 1px solid #222; padding-top: 10px; font-style: italic; }

/* ========================================= */
/* === WIDGET KICK (Escritorio: 400px) === */
/* ========================================= */
.kick-widget-left { position: absolute; left: 400px; top: 50%; transform: translateY(-50%); z-index: 101; transition: all 0.3s ease; }
.kick-pill { background: #0f0f0f; border: 1px solid #333; border-radius: 50px; display: flex; align-items: center; padding: 4px 10px; gap: 10px; box-shadow: 0 4px 8px rgba(0,0,0,0.4); white-space: nowrap; }
.kick-img-wrapper img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; display: block; }
.kick-info { display: flex; flex-direction: column; justify-content: center; line-height: 1.2; text-align: left; }
.kick-title { font-weight: 800; font-size: 10px; color: #fff; text-transform: uppercase; display: block; letter-spacing: 0.5px; }
.kick-subtitle { font-size: 9px; font-weight: 500; color: #888; display: block; }
.kick-play-btn { background: #1B5E20; width: 28px; height: 28px; border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 0 5px rgba(27, 94, 32, 0.4); text-decoration: none; animation: pulse-live 1.5s infinite ease-in-out; }
@keyframes pulse-live { 0% { box-shadow: 0 0 0 0 rgba(83, 252, 24, 0.7); background-color: #1B5E20; } 50% { box-shadow: 0 0 0 6px rgba(83, 252, 24, 0); background-color: #2e7d32; } 100% { box-shadow: 0 0 0 0 rgba(83, 252, 24, 0); background-color: #1B5E20; } }
.kick-play-btn:hover { transform: scale(1.1); animation: none; background-color: #2e7d32; box-shadow: 0 0 10px rgba(27, 94, 32, 0.7); }
.kick-play-btn svg { margin-left: 1px; }

/* ==================================================== */
/* === SECCI N ARTISTAS RECONOCIDOS (FLIP CARDS) === */
/* ==================================================== */
.artists-marquee { width: 100%; overflow: hidden; background: #121212; padding: 30px 0; border-radius: 12px; border: 1px solid #222; }
.artists-track-list { display: flex; width: max-content; animation: spotifyScroll 45s linear infinite; }
.artists-track-list.paused { animation-play-state: paused !important; }

.artist-flip-card { background-color: transparent; width: 220px; height: 320px; perspective: 1000px; -webkit-perspective: 1000px; margin: 0 15px; flex-shrink: 0; cursor: pointer; }

.artist-card-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.8s; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); border-radius: 12px; }
.artist-flip-card.is-flipped .artist-card-inner { -webkit-transform: rotateY(180deg); transform: rotateY(180deg); }

.artist-card-front, .artist-card-back { position: absolute; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; border-radius: 12px; overflow: hidden; }

.artist-card-front { background-color: #000; z-index: 2; }
.artist-card-front img { width: 100%; height: 100%; object-fit: cover; }

.artist-front-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); transition: background 0.4s ease; z-index: 1; pointer-events: none; }
.artist-flip-card:hover .artist-front-overlay { background: rgba(0,0,0,0.2); }

.artist-front-name { position: absolute; bottom: 15px; left: 0; width: 100%; text-align: center; color: white; font-weight: 900; font-size: 1.2rem; z-index: 2; text-transform: uppercase; text-shadow: 0 2px 4px rgba(0,0,0,0.9); letter-spacing: 1px; pointer-events: none; }

.artist-card-back { background-color: #0f0f0f; color: white; -webkit-transform: rotateY(180deg); transform: rotateY(180deg); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 15px; border: 1px solid #333; box-shadow: inset 0 0 20px rgba(0,0,0,0.8); z-index: 1; }
.artist-card-back h4 { color: #ddb606; font-size: 1.1rem; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 1px; }
.artist-card-back p { font-size: 0.8rem; line-height: 1.4; color: #fff; text-align: center; }

/* ============================================== */
/* === FOOTER MODERNO === */
/* ============================================== */
.site-footer-modern { background-color: #080808; padding: 60px 5%; border-top: 1px solid #222; }
.footer-wrapper { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer-col-brand { flex: 1; min-width: 250px; display: flex; flex-direction: column; align-items: flex-start; }
.footer-logo { height: 120px; width: auto; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 15px; }
.footer-social-btn { width: 32px; height: 32px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; color: #ccc; background: transparent; }
.footer-social-btn svg { width: 15px; height: 15px; fill: currentColor; }
.footer-social-btn:hover { border-color: #ddb606; background: #ddb606; color: #000; transform: translateY(-3px); }
.footer-col-links { flex: 1; min-width: 150px; }
.footer-col-links h4 { color: #fff; font-size: 0.9rem; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col-links ul { list-style: none; padding: 0; }
.footer-col-links ul li { margin-bottom: 12px; }
.footer-col-links ul li a { color: #999; text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; cursor: pointer; }
.footer-col-links ul li a:hover { color: #ddb606; }
.footer-bottom-bar { border-top: 1px solid #1a1a1a; margin-top: 50px; padding-top: 20px; text-align: center; }
.footer-bottom-bar p { color: #555; font-size: 0.8rem; }
@media (max-width: 768px) { .footer-wrapper { flex-direction: column; align-items: center; text-align: center; } .footer-col-brand { align-items: center; } }

/* ============================================== */
/* === RESPONSIVE DESIGN (M VIL Y TABLET) === */
/* ============================================== */

@media (max-width: 1024px) {
    nav { justify-content: space-between; padding: 0 10px; }
    .hamburger { display: flex; order: 1; }
    .logo-container { order: 2; margin-left: 15px; }
    .main-logo { height: 60px; }
    .nav-links { position: fixed; left: -100%; top: 0; flex-direction: column; background-color: rgba(0, 0, 0, 0.98); width: 70%; height: 100vh; justify-content: center; transition: 0.4s ease-in-out; z-index: 1000; box-shadow: 5px 0 15px rgba(0,0,0,0.5); }
    .nav-links.active { left: 0; }
    .nav-links li { margin: 25px 0; }
    .nav-links a { font-size: 1.2rem; }
    .hamburger.toggle .line:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.toggle .line:nth-child(2) { opacity: 0; }
    .hamburger.toggle .line:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
    .kick-widget-left { left: 50%; top: 85px; transform: translateX(-50%); width: max-content; position: absolute; }
    header { height: 120px; align-items: flex-start; padding-top: 15px; }
    .container { padding-top: 120px; }
    .hero { padding-top: 120px; } 
    .hero h1 { font-size: 2.8rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .services-modern-container { flex-direction: column; padding: 25px; }
    .about-wrapper { flex-direction: column-reverse; padding: 25px; }
    .about-image img { max-width: 100%; }
    .license-grid { grid-template-columns: 1fr; }
    .footer-container { padding: 0 20px; }

    /* 6. ARTISTAS M VIL (HORIZONTAL SCROLL) */
    .artists-marquee {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* Suavidad en iOS */
        scroll-snap-type: x mandatory;
        padding-bottom: 20px; /* Espacio para barra scroll */
    }

    .artists-track-list {
        animation: none !important; /* Desactivar animaci n autom tica */
        width: auto; /* Permitir ancho natural */
        gap: 20px; /* Espacio entre tarjetas */
        padding: 0 20px; /* Margen lateral */
        display: flex;
        flex-wrap: nowrap; /* Asegura que no se rompa la fila */
    }

    .artist-flip-card {
        scroll-snap-align: center;
        margin: 0; /* Quitar margen viejo, usar gap */
        flex: 0 0 auto; /* No encoger ni estirar */
    }
    
    /* Ocultar duplicados en m vil para no confundir scroll */
    .desktop-only {
        display: none !important;
    }
}

/* ============================================== */
/* === AÑADIDOS DE MEJORAS (NUNCA BORRAR LO ANTERIOR) === */
/* ============================================== */

/* 1. TIPOGRAFÍA DE IMPACTO PARA TÍTULOS */
h1, h2, .section-title, .hero h1, .form-side-title, .modal-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
}

/* 2. EFECTO GLOW (RESPLANDOR) EN BOTONES Y TARJETAS */
.btn-main:hover, .btn-read-license:hover, .btn-main-small:hover {
    box-shadow: 0 0 15px rgba(221, 182, 6, 0.6);
    transform: translateY(-2px);
}
.license-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.license-card:hover {
    box-shadow: 0 10px 30px rgba(221, 182, 6, 0.15);
    border-color: #ddb606;
    transform: translateY(-5px);
}

/* 3. BOTÓN FLOTANTE DE WHATSAPP */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* 4. AJUSTE RESPONSIVO DEL WIDGET KICK (Pantallas medianas) */
@media (min-width: 1025px) and (max-width: 1350px) {
    .kick-widget-left {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-right: auto;
        margin-left: 20px;
    }
}

/* 5. WHATSAPP BOTÓN Y BEATSTARS EN MÓVIL (AJUSTES) */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    /* Previene scroll doble accidental en móvil al deslizar sobre el iframe */
    #beatstars-store iframe {
        pointer-events: none;
    }
    #beatstars-store.interactable iframe {
        pointer-events: auto;
    }
}

/* ============================================== */
/* === NUEVOS ESTILOS PARA SECCIONES AÑADIDAS === */
/* ============================================== */

/* BANNER DE OFERTA */
.promo-banner {
    background-color: #ddb606;
    color: #000;
    text-align: center;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: pulse-border 2s infinite;
}
@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(221, 182, 6, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(221, 182, 6, 0); }
    100% { box-shadow: 0 0 0 0 rgba(221, 182, 6, 0); }
}

/* TESTIMONIOS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #333;
}
.stars {
    color: #ddb606;
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.testimonial-card p {
    color: #ccc;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.testimonial-card h4 {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* PREGUNTAS FRECUENTES (FAQ) */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: #ddb606;
}
.faq-icon {
    color: #ddb606;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #0f0f0f;
    border-top: 1px solid transparent;
}
.faq-answer p {
    color: #aaa;
    padding: 20px 25px;
    line-height: 1.6;
    font-size: 0.95rem;
}
.faq-item.active .faq-answer {
    max-height: 300px; /* Suficiente para el texto */
    border-top-color: #222;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .promo-banner { font-size: 0.85rem; padding: 12px; }
}