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

html {
    /* Mobile: Asegurar viewport limpio */
    margin: 0;
    padding: 0;
    min-height: 100%;
    width: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #2d1b69 100%);
    background-attachment: fixed; /* Fondo fijo que se extiende */
    background-size: 100% 100%; /* Cubrir todo el contenido */
    background-repeat: no-repeat; /* Evitar repetición en scroll */
    color: #fff;
    overflow-x: hidden;
    /* Mobile: Eliminar espacios que interfieran con iframe */
    margin: 0;
    padding: 0;
    min-height: 100vh; /* Altura mínima del viewport */
    /* Móvil: Forzar fondo en todos los elementos hijos */
    position: relative;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 25px;
}

.nav-links a:hover {
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.7);
    background: rgba(255, 107, 53, 0.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mobile-menu .nav-links a {
    font-size: 18px;
    padding: 10px 20px;
}

/* Spotify icons in navigation */
.nav-social {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.spotify-nav-icon {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(29, 185, 84, 0.1);
}

.spotify-nav-icon:hover {
    background: rgba(29, 185, 84, 0.2);
    transform: scale(1.1);
}

.spotify-nav-icon svg {
    transition: all 0.3s ease;
}

.spotify-nav-icon:hover svg {
    fill: #1ed760 !important;
}

/* Facebook icon */
.facebook-nav-icon {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(24, 119, 242, 0.1);
    margin-left: 8px;
}

.facebook-nav-icon:hover {
    background: rgba(24, 119, 242, 0.2);
    transform: scale(1.1);
}

.facebook-nav-icon svg {
    transition: all 0.3s ease;
}

.facebook-nav-icon:hover svg {
    fill: #166fe5 !important;
}

/* YouTube icon */
.youtube-nav-icon {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 0, 0, 0.1);
    margin-left: 8px;
}

.youtube-nav-icon:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: scale(1.1);
}

.youtube-nav-icon svg {
    transition: all 0.3s ease;
}

.youtube-nav-icon:hover svg {
    fill: #cc0000 !important;
}

/* Instagram icon */
.instagram-nav-icon {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, rgba(131, 58, 180, 0.1), rgba(253, 29, 29, 0.1));
    margin-left: 8px;
}

.instagram-nav-icon:hover {
    background: linear-gradient(45deg, rgba(131, 58, 180, 0.2), rgba(253, 29, 29, 0.2));
    transform: scale(1.1);
}

.instagram-nav-icon svg {
    transition: all 0.3s ease;
}

/* TikTok icon */
.tiktok-nav-icon {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, rgba(255, 0, 80, 0.1), rgba(0, 242, 234, 0.1));
    margin-left: 8px;
}

.tiktok-nav-icon:hover {
    background: linear-gradient(45deg, rgba(255, 0, 80, 0.2), rgba(0, 242, 234, 0.2));
    transform: scale(1.1);
}

.tiktok-nav-icon svg {
    transition: all 0.3s ease;
}

/* Mobile social */
.mobile-social {
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.spotify-mobile-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1db954;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(29, 185, 84, 0.1);
    transition: all 0.3s ease;
    font-weight: bold;
}

.spotify-mobile-icon:hover {
    background: rgba(29, 185, 84, 0.2);
    transform: scale(1.05);
}

.spotify-mobile-icon svg {
    transition: all 0.3s ease;
}

.spotify-mobile-icon:hover svg {
    fill: #1ed760 !important;
}

/* Facebook mobile icon */
.facebook-mobile-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1877f2;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(24, 119, 242, 0.1);
    transition: all 0.3s ease;
    font-weight: bold;
    margin: 0 5px;
}

.facebook-mobile-icon:hover {
    background: rgba(24, 119, 242, 0.2);
    transform: scale(1.05);
}

.facebook-mobile-icon svg {
    transition: all 0.3s ease;
}

.facebook-mobile-icon:hover svg {
    fill: #166fe5 !important;
}

/* YouTube mobile icon */
.youtube-mobile-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff0000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(255, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: bold;
    margin: 0 5px;
}

.youtube-mobile-icon:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: scale(1.05);
}

.youtube-mobile-icon svg {
    transition: all 0.3s ease;
}

.youtube-mobile-icon:hover svg {
    fill: #cc0000 !important;
}

/* Instagram mobile icon */
.instagram-mobile-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e4405f;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    background: linear-gradient(45deg, rgba(131, 58, 180, 0.1), rgba(253, 29, 29, 0.1));
    transition: all 0.3s ease;
    font-weight: bold;
    margin: 0 5px;
}

.instagram-mobile-icon:hover {
    background: linear-gradient(45deg, rgba(131, 58, 180, 0.2), rgba(253, 29, 29, 0.2));
    transform: scale(1.05);
}

.instagram-mobile-icon svg {
    transition: all 0.3s ease;
}

/* TikTok mobile icon */
.tiktok-mobile-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff0050;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    background: linear-gradient(45deg, rgba(255, 0, 80, 0.1), rgba(0, 242, 234, 0.1));
    transition: all 0.3s ease;
    font-weight: bold;
    margin: 0 5px;
}

.tiktok-mobile-icon:hover {
    background: linear-gradient(45deg, rgba(255, 0, 80, 0.2), rgba(0, 242, 234, 0.2));
    transform: scale(1.05);
}

.tiktok-mobile-icon svg {
    transition: all 0.3s ease;
}

/* Hero Section - Mobile First */
.hero {
    /* Mobile: 100vw/100vh coverage desde el inicio */
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative !important;
    overflow: hidden;
    /* Forzar que cubra desde el borde superior absoluto */
    top: 0;
    left: 0;
}

.hero-video {
    /* Mobile: Iframe YouTube - Centrado absoluto dentro del hero */
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -2 !important;
    border: none !important;
    outline: none !important;
    margin: 0 !important;
    padding: 0 !important;
    /* Centrado perfecto con transform y scale agresivo */
    transform: translate(-50%, -50%) scale(1.2) !important;
    transform-origin: center !important;
    object-fit: cover !important;
}



.hero-overlay {
    /* Mobile: Overlay con cobertura completa */
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 40%, rgba(255, 107, 53, 0.15) 0%, transparent 65%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.6; }
}



.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero h1,
.main-title {
    font-size: 4rem;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
    font-weight: bold;
    line-height: 1.2;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 107, 53, 0.8); }
    to { text-shadow: 0 0 40px rgba(255, 107, 53, 1), 0 0 60px rgba(255, 107, 53, 0.8); }
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    text-shadow: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}



/* Section Styles */
.section {
    padding: 80px 0;
    position: relative;
    min-height: 100vh; /* Asegurar altura mínima de viewport */
    /* Sin fondo específico - usa el fondo del body que es fijo */
}

.section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* Videos Section */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.video-thumbnail:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.video-thumbnail:hover .thumbnail-img {
    transform: scale(1.1);
    filter: brightness(0.7) saturate(1.2);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    opacity: 0;
    transition: all 0.4s ease;
}

.video-thumbnail:hover .video-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    font-size: 60px;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 107, 53, 1);
    transition: all 0.4s ease;
    transform: scale(0.8);
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.video-overlay:hover .play-button {
    transform: scale(1);
    background: rgba(255, 107, 53, 1);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 107, 53, 1);
        transform: scale(1.05);
    }
}

.watch-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.watch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.5);
}

/* Music Section */
.spotify-widget {
    margin: 40px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.spotify-widget iframe {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.music-info {
    margin-top: 40px;
}

.music-description {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(5px);
}

.music-description h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.music-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.song-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.song-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 107, 53, 0.6);
}

.song-title {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.song-preview {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    font-style: italic;
    border-left: 4px solid #ff6b35;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    height: 300px;
    background: linear-gradient(45deg, #333, #555);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Fotos reales de la galería */
.gallery-photo {
    background: none;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.gallery-photo:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-photo:hover .gallery-overlay {
    opacity: 1;
}

.gallery-view {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Placeholders para futuras fotos */
.gallery-placeholder::before {
    content: '';
}

.gallery-placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    opacity: 0.7;
    text-align: center;
}

/* ===== SECCIÓN REDES SOCIALES ===== */

/* Subtítulo de sección */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Tabs de navegación */
.social-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.tab-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.tab-btn.active {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #fff;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* Contenido de tabs */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

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

/* Grid para redes sociales */
.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
    align-items: start;
    justify-items: center;
}

/* Grid específico para Facebook */
#facebook .social-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Facebook CTA va abajo de los videos */
#facebook .social-cta {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 30px auto;
}

/* Items de redes sociales */
.social-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
}

.social-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

/* TikTok embeds */
.tiktok-item {
    max-width: 405px;
    min-width: 325px;
    margin: 0 auto;
}

.tiktok-embed {
    margin: 0 auto !important;
}

/* Facebook embeds */
.facebook-item {
    max-width: 405px;
    min-width: 325px;
    margin: 0 auto;
}

/* Facebook embeds más anchos */
#facebook .facebook-item {
    max-width: 500px;
    min-width: 400px;
    max-height: 600px;
    overflow: hidden;
}

.fb-post {
    max-width: 405px !important;
    min-width: 325px !important;
    margin: 0 auto !important;
    display: block !important;
}

/* Facebook posts más anchos pero limitando altura */
#facebook .fb-post {
    max-width: 500px !important;
    min-width: 400px !important;
    max-height: 600px !important;
    overflow: hidden !important;
}

/* Asegurar que los embeds se centren */
.tiktok-embed, .fb-post {
    clear: both;
    overflow: hidden;
}

/* Controlar altura de iframes de Facebook */
#facebook .fb-post iframe {
    max-height: 500px !important;
}

#facebook .facebook-item iframe {
    max-height: 500px !important;
}

/* Call to action */
.social-cta {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    max-width: 350px;
    margin: 0 auto;
    justify-self: center;
}

.social-cta h3 {
    color: #ff6b35;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.social-cta p {
    opacity: 0.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Botones de redes sociales */
.social-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ff6b35;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.social-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.tiktok-btn {
    background: linear-gradient(45deg, #ff0050, #000);
}

.tiktok-btn:hover {
    background: linear-gradient(45deg, #e6004a, #333);
}

.facebook-btn {
    background: #1877f2;
}

.facebook-btn:hover {
    background: #166fe5;
}



/* Events Section */
.events-container {
    margin-top: 50px;
}

.event-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border-left: 5px solid #ff6b35;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.event-date {
    font-size: 1.2rem;
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 10px;
}

.event-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.event-location {
    opacity: 0.8;
    margin-bottom: 15px;
}

.event-description {
    opacity: 0.9;
    line-height: 1.6;
}

/* Band Story Section */
.band-story {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid rgba(255, 107, 53, 0.3);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.band-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e8e8e8;
}

.band-story p:last-child {
    margin-bottom: 0;
}

.band-intro strong {
    color: #ff6b35;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.band-evolution {
    font-style: italic;
    color: #d0d0d0;
}

.band-resilience {
    font-weight: 500;
    color: #f0f0f0;
}

/* Band Members Section */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.members-grid-single {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: 100%;
}

.members-grid-single .member-card {
    max-width: 300px;
    width: 100%;
    flex-shrink: 0;
}

.member-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, #333, #555);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 3px solid #ff6b35;
    overflow: hidden;
    transition: all 0.3s ease;
}

.member-photo:hover {
    transform: scale(1.05);
    border-color: #f7931e;
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.6);
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.member-photo:hover .member-img {
    transform: scale(1.1);
}

.member-name {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 10px;
}

.member-role {
    font-weight: bold;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 50px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.social-links a {
    color: #fff;
    font-size: 2rem;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.social-links a:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.social-links a svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: all 0.3s ease;
}

/* Contact Section */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ff6b35;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.contact-item h3 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-element:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 45%; left: 92%; animation-delay: 2s; }
.floating-element:nth-child(3) { top: 75%; left: 85%; animation-delay: 4s; }

/* Desktop overrides - Revert mobile-first styles for larger screens */
@media (min-width: 769px) {
    .hero {
        /* Desktop: Usa % en lugar de vw/vh para evitar problemas de scroll */
        width: 100%;
    }
    
    .members-grid-single {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        width: 100%;
    }
    
    .members-grid-single .member-card {
        max-width: 300px;
        width: 300px;
        flex-shrink: 0;
    }
    
    .hero-video {
        /* Desktop: Iframe YouTube comportamiento estándar - RESET completo */
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 100% !important;
        height: 100% !important;
        transform: translate(-50%, -50%) !important; /* Centrado sin scale en desktop */
        transform-origin: center !important;
    }
    

    
    .hero-overlay {
        /* Desktop: Overlay estándar */
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
    }
    
    /* Redes sociales desktop */
    .social-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Facebook layout específico desktop */
    #facebook .social-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 1000px;
        gap: 40px;
    }
    
    #facebook .social-item {
        max-width: 480px;
        max-height: 600px;
    }
    
    #facebook .social-cta {
        max-width: 700px;
        grid-column: 1 / -1;
    }
    
    .social-item {
        max-width: 350px;
    }
    
    .social-cta {
        max-width: 300px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: white;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Eliminar espacios en blanco en móvil */
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-social {
        display: none;
    }
    
    /* Logo responsive */
    .logo {
        height: 45px;
    }
    
    .logo-img {
        height: 35px;
        max-width: 150px;
    }
    
    /* Improved mobile menu */
    .mobile-menu {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }
    
    .mobile-menu .nav-links {
        display: flex;
        padding: 10px 0;
    }
    
    .mobile-menu .nav-links a {
        font-size: 16px;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    }
    
    .mobile-menu .nav-links a:last-child {
        border-bottom: none;
    }
    
    /* Asegurar que las siguientes secciones no se solapen */
    #videos {
        margin-top: 0;
        position: relative;
        z-index: 10;
    }
    
    .hero h1,
    .main-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .hero-content {
        padding: 0 20px;
        /* Asegurar que el contenido esté centrado con el video a pantalla completa */
        z-index: 10;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: calc(100% - 40px);
        text-align: center;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    

    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .videos-grid,
    .music-grid,
    .gallery-grid,
    .members-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Band story responsive */
    .band-story {
        padding: 20px 15px;
        margin: 30px 0;
    }
    
    .band-story p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    /* Member photos responsive */
    .member-photo {
        width: 120px;
        height: 120px;
        margin: 0 auto 15px;
    }
    
    /* Members grid single responsive */
    .members-grid-single {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        width: 100%;
    }
    
    .members-grid-single .member-card {
        max-width: 280px;
        width: 100%;
        flex-shrink: 0;
    }
    
    /* Floating elements responsive */
    .floating-element {
        width: 15px;
        height: 15px;
    }
    
    .floating-element:nth-child(1) { top: 12%; left: 5%; }
    .floating-element:nth-child(2) { top: 35%; left: 95%; }
    .floating-element:nth-child(3) { top: 65%; left: 90%; }
    
    /* Galería responsive en móvil */
    .gallery-item {
        height: 250px;
    }
    
    .gallery-view {
        font-size: 1rem;
    }
    
    .gallery-placeholder-text {
        font-size: 1rem;
    }
    
    /* Redes sociales responsive */
    .social-tabs {
        gap: 5px;
        margin-bottom: 30px;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 20px;
        padding: 0 10px;
    }
    
    .social-item {
        padding: 15px;
        margin-bottom: 0;
        width: 100%;
    }
    
    .tiktok-item, .facebook-item {
        max-width: 100%;
        min-width: auto;
    }
    
    /* Facebook móvil */
    #facebook .social-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    #facebook .facebook-item {
        max-width: 100%;
        min-width: auto;
        max-height: 500px;
        overflow: hidden;
    }
    
    #facebook .social-cta {
        max-width: 100%;
        grid-column: 1;
    }
    
    .fb-post {
        max-width: 100% !important;
        min-width: auto !important;
    }
    
    #facebook .fb-post {
        max-width: 100% !important;
        min-width: auto !important;
    }
    
    .social-cta {
        padding: 20px 15px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .social-cta h3 {
        font-size: 1.3rem;
    }
    
    .social-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    /* Spotify responsive */
    .spotify-widget {
        margin: 30px 0;
        padding: 15px;
    }
    
    .spotify-widget iframe {
        height: 300px;
        border-radius: 8px;
    }
    
    .music-description {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .music-description h3 {
        font-size: 1.5rem;
    }
    
    .music-description p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .music-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    
    .song-card {
        padding: 20px;
    }
    
    .song-title {
        font-size: 1.3rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .social-links a {
        font-size: 1.5rem;
        padding: 8px;
        margin: 0 5px;
    }
    
    .social-links a svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .video-card {
        padding: 15px;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .play-button {
        font-size: 50px;
        width: 70px;
        height: 70px;
    }
}

/* Medium devices (tablets) */
@media (max-width: 992px) and (min-width: 769px) {
    .members-grid-single {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 25px;
        width: 100%;
    }
    
    .members-grid-single .member-card {
        max-width: 320px;
        width: 320px;
        flex-shrink: 0;
    }
}
@media (max-width: 992px) and (min-width: 769px) {
    .hero h1,
    .main-title {
        font-size: 3.5rem;
        margin-bottom: 28px;
    }
}

/* Small devices (landscape tablets) */
@media (max-width: 991px) and (min-width: 481px) {
    .hero h1,
    .main-title {
        font-size: 3rem;
        margin-bottom: 27px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero h1,
    .main-title {
        font-size: 2rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .nav-links a {
        font-size: 12px;
        padding: 6px 8px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Logo extra small devices */
    .logo {
        height: 40px;
    }
    
    .logo-img {
        height: 30px;
        max-width: 120px;
    }
    
    .video-thumbnail {
        height: 150px;
    }
    
    .play-button {
        font-size: 40px;
        width: 60px;
        height: 60px;
    }
    
    .watch-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    /* WhatsApp Button responsive */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 24px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Reglas específicas para móviles muy pequeños - Iframe YouTube */
@media (max-width: 480px) and (orientation: portrait) {
    .hero-video {
        /* Móvil: MÁXIMA cobertura con centrado perfecto */
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 100vw !important;
        height: 100vh !important;
        transform: translate(-50%, -50%) scale(1.3) !important;
        transform-origin: center !important;
    }
    
    .hero {
        /* Móvil: Hero sin restricciones */
        width: 100vw !important;
        height: 100vh !important;
        position: relative !important;
        overflow: hidden !important;
    }
}

/* Landscape móvil específico */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-video {
        /* Landscape: Centrado perfecto para pantalla ancha */
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 100vw !important;
        height: 100vh !important;
        transform: translate(-50%, -50%) scale(1.15) !important;
        transform-origin: center !important;
    }
}

/* Prevenir scroll horizontal en móvil debido al iframe escalado */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
        position: relative !important;
    }
    
    html {
        overflow-x: hidden !important;
    }
    
    .hero {
        overflow: hidden !important;
    }
}

/* Lightbox/Modal para la galería */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    text-align: center;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 10px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #ff6b35;
    transform: scale(1.2);
}

.lightbox-caption {
    margin: 20px auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 107, 53, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #ff6b35;
    transform: scale(1.1);
}

/* Video Modal Popup */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-in;
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.video-modal-close {
    position: absolute;
    top: -10px;
    right: 10px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    background: rgba(255, 107, 53, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.video-modal-close:hover {
    background: #ff6b35;
    transform: scale(1.1);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

/* Responsive para modal de video */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 15px;
    }
    
    .video-modal-close {
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .video-thumbnail:hover {
        transform: none; /* Desactivar hover en móvil */
    }
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .lightbox {
        padding-top: 20px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox-image {
        max-height: 70vh;
    }
    
    .lightbox-close {
        top: -30px;
        right: 5px;
        font-size: 30px;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        padding: 8px 15px;
        margin: 10px auto;
    }
    
    .lightbox-nav {
        padding: 0 10px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 10px 15px;
        font-size: 16px;
    }
} 

/* Corrección para secciones con fondo blanco en móviles */
@media (max-width: 768px) {
    /* SOLUCIÓN GLOBAL: Forzar fondo en toda la página móvil */
    html {
        background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #2d1b69 100%) !important;
        background-attachment: fixed !important;
        background-size: 100% 100% !important;
        background-repeat: no-repeat !important;
        min-height: 100vh !important;
    }

    /* Forzar fondo en el body para móvil */
    body {
        background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #2d1b69 100%) !important;
        background-attachment: fixed !important;
        background-size: 100% 100% !important;
        background-repeat: no-repeat !important;
        position: relative !important;
    }

    /* Pseudoelemento para asegurar cobertura completa */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #2d1b69 100%);
        z-index: -9999;
        pointer-events: none;
    }

    /* Eliminar cualquier fondo blanco de elementos específicos */
    *, *::before, *::after {
        background-color: transparent !important;
    }

    /* Restaurar fondos necesarios para elementos específicos */
    .video-card,
    .member-card,
    .song-card,
    .event-card,
    .contact-form,
    .contact-item,
    .band-story,
    .social-item {
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px) !important;
    }

    /* TikTok y Facebook embeds */
    .tiktok-embed, 
    .fb-post {
        background: rgba(0, 0, 0, 0.8) !important;
        position: relative;
        color: #fff !important;
    }

    /* Forzar color de texto en todas las secciones para móvil */
    .section {
        color: #fff !important;
        background: transparent !important;
    }

    /* Ajuste para el contenedor de tabs en responsive */
    .tab-content {
        background: transparent !important;
    }

    /* Spotify widget manteniendo funcionalidad */
    .spotify-widget {
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1)) !important;
    }

    /* Header móvil */
    header {
        background: rgba(0, 0, 0, 0.9) !important;
    }

    /* Mobile menu */
    .mobile-menu {
        background: rgba(0, 0, 0, 0.95) !important;
    }

    /* Footer */
    footer {
        background: rgba(0, 0, 0, 0.9) !important;
    }
} 