/* RESET Y FONDOS OSCUROS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Michroma', sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    background-color: #111;
    line-height: 1.6;
    overflow-x: hidden;
    /* Background único para todo el sitio */
    background-image: url('images/background-1.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

/* COLORES Y ACENTOS (VARIABLES CSS) - ACTUALIZADO CON NUEVA PALETA */
:root {
    --color-acento: #DA9133;
    --color-secundario: #E9DE79;
    --color-terciario: #E9BA43;
    --color-fondo-oscuro: #1a1a1a;
    --color-texto-secundario: #ccc;
    --espacio-seccion: 80px;
    --espacio-elemento: 30px;
}

/* ======================================================= */
/* HEADER Y NAVEGACIÓN COMPACTO */
/* ======================================================= */
header {
    background-color: rgba(17, 17, 17, 0.98);
    padding: 15px 0;
    border-bottom: 1px solid rgba(218, 145, 51, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

header nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-container {
    flex-shrink: 0;
}

.logo-link {
    display: block;
    transition: transform 0.3s;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.8px;
    transition: all 0.3s;
    padding: 5px 0;
    position: relative;
}

header nav ul li a:hover {
    color: var(--color-acento);
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-acento);
    transition: width 0.3s;
}

header nav ul li a:hover::after {
    width: 100%;
}

/* ======================================================= */
/* SECCIÓN HERO ACTUALIZADA */
/* ======================================================= */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%);
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    /* Mismo background que todo el sitio pero con overlay */
    background-image: url('images/background-1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 600px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.cover-art {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 40px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(218, 145, 51, 0.3);
    border: 2px solid rgba(218, 145, 51, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cover-art:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(218, 145, 51, 0.4);
}

.release-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: white;
    text-shadow: 0 0 20px rgba(218, 145, 51, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

/* ======================================================= */
/* BOTONES DE PLATAFORMAS EN HERO - COLORES ACTUALIZADOS */
/* ======================================================= */
.platform-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 12px;
    border: 2px solid;
    min-width: 150px;
    text-align: center;
    color: white;
    font-family: 'Michroma', sans-serif;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 140px;
    max-width: 180px;
}

.platform-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.platform-btn:hover::before {
    left: 100%;
}

/* YouTube Music - Rojo */
.platform-btn.youtube-music {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    border-color: #FF0000;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.platform-btn.youtube-music:hover {
    background: transparent;
    color: #FF0000;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 0, 0, 0.4);
}

/* Spotify - Verde */
.platform-btn.spotify {
    background: linear-gradient(135deg, #1DB954 0%, #1AA34A 100%);
    border-color: #1DB954;
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.3);
}

.platform-btn.spotify:hover {
    background: transparent;
    color: #1DB954;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(29, 185, 84, 0.4);
}

/* Apple Music - Salmon */
.platform-btn.apple-music {
    background: linear-gradient(135deg, #FA5868 0%, #F83A4D 100%);
    border-color: #FA5868;
    box-shadow: 0 6px 20px rgba(250, 88, 104, 0.3);
}

.platform-btn.apple-music:hover {
    background: transparent;
    color: #FA5868;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(250, 88, 104, 0.4);
}

/* Tidal - Negro con detalles blancos */
.platform-btn.tidal {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-color: #000000;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.platform-btn.tidal:hover {
    background: transparent;
    color: #000000;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

/* Amazon Music - Celeste */
.platform-btn.amazon-music {
    background: linear-gradient(135deg, #00A8E1 0%, #0088B4 100%);
    border-color: #00A8E1;
    box-shadow: 0 6px 20px rgba(0, 168, 225, 0.3);
}

.platform-btn.amazon-music:hover {
    background: transparent;
    color: #00A8E1;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 168, 225, 0.4);
}

/* Deezer - Morado */
.platform-btn.deezer {
    background: linear-gradient(135deg, #FEAAEC 0%, #9B3B8C 100%);
    border-color: #FEAAEC;
    color: #000000;
    box-shadow: 0 6px 20px rgba(254, 170, 236, 0.3);
}

.platform-btn.deezer:hover {
    background: transparent;
    color: #FEAAEC;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(254, 170, 236, 0.4);
}

/* Botón YouTube - Rojo con gradiente (igual que YouTube Music) */
.platform-btn.youtube-action {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    border-color: #FF0000;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.platform-btn.youtube-action:hover {
    background: transparent;
    color: #FF0000;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 0, 0, 0.4);
}

/* ======================================================= */
/* SECCIONES DE PLATAFORMAS EN HERO */
/* ======================================================= */
.platform-section {
    margin-bottom: 30px;
}

.platform-section-title {
    color: var(--color-acento);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ======================================================= */
/* BOTÓN DE CORREO ESTILIZADO - CONSISTENTE CON LA WEB */
/* ======================================================= */
.contact-email-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 2px solid var(--color-acento);
    background: linear-gradient(135deg, var(--color-acento) 0%, #E9BA43 100%);
    color: #111;
    font-family: 'Michroma', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(218, 145, 51, 0.3);
    min-width: 280px;
}

.contact-email-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.contact-email-btn:hover::before {
    left: 100%;
}

.contact-email-btn:hover {
    background: transparent;
    color: var(--color-acento);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(218, 145, 51, 0.4);
}

/* ======================================================= */
/* CONTENEDOR PARA VIDEO - REPRODUCIBLE EN MÓVILES */
/* ======================================================= */
.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    background: #000;
    border: 2px solid rgba(218, 145, 51, 0.3);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(218, 145, 51, 0.4);
    border-color: rgba(218, 145, 51, 0.6);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    -webkit-overflow-scrolling: touch;
}

/* ======================================================= */
/* BOTONES DE ACCIÓN PARA PLATAFORMAS */
/* ======================================================= */
.platform-action-buttons {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 13px;
    border: 2px solid;
    min-width: 170px;
    text-align: center;
    color: white;
    font-family: 'Michroma', sans-serif;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.action-btn:hover::before {
    left: 100%;
}

/* Botón YouTube - Rojo con gradiente */
.action-btn.youtube-action {
    background: linear-gradient(135deg, #FF0000 0%, #FF3333 100%);
    border-color: #FF0000;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.action-btn.youtube-action:hover {
    background: transparent;
    color: #FF0000;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 0, 0, 0.5);
}

/* ======================================================= */
/* SECCIONES GENERALES */
/* ======================================================= */
.content-section {
    padding: var(--espacio-seccion) 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.dark-background {
    background-color: var(--color-fondo-oscuro);
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-acento);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-acento);
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-texto-secundario);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ======================================================= */
/* SECCIÓN VIDEOS CON PESTAÑAS - CORREGIDOS PARA MÓVILES */
/* ======================================================= */
.videos-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.videos-tabs .tab-button {
    background: transparent;
    border: 2px solid var(--color-acento);
    color: var(--color-acento);
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Michroma', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    white-space: nowrap;
}

.videos-tabs .tab-button.active,
.videos-tabs .tab-button:hover {
    background: var(--color-acento);
    color: #111;
}

.tab-content {
    display: none;
}

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

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

.video-item {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #000;
    border: 2px solid rgba(218, 145, 51, 0.2);
    /* Optimizaciones para reproducción en móviles */
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(218, 145, 51, 0.4);
    border-color: rgba(218, 145, 51, 0.4);
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    /* Habilitar reproducción en iOS */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-overflow-scrolling: touch;
}

/* ======================================================= */
/* DISCOGRAFÍA CON LINKS FUNCIONALES */
/* ======================================================= */
#musica h3 {
    font-size: 1.8rem;
    margin: 80px 0 50px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

#musica h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-acento);
}

.discografia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

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

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

/* CORRECCIÓN: El enlace debe envolver todo el contenedor */
.cover-link {
    display: inline-block;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.cover-link:hover {
    transform: translateY(-10px);
}

.cover-container {
    position: relative;
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    background: #000;
    cursor: pointer;
    transition: all 0.4s ease;
}

.cover-link:hover .cover-container {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(218, 145, 51, 0.4);
}

.cover-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
    border-radius: 12px;
}

.cover-link:hover .cover-image {
    filter: brightness(0.7) blur(1px);
    transform: scale(1.05);
}

/* OVERLAY NARANJA CON MENOS OPACIDAD */
.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(218, 145, 51, 0.7) 0%,
        rgba(218, 145, 51, 0.5) 50%,
        rgba(218, 145, 51, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.cover-link:hover .cover-overlay {
    opacity: 1;
}

.cover-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.cover-link:hover .cover-info {
    transform: translateY(0);
}

.cover-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.cover-date {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ======================================================= */
/* SECCIÓN FOTOS CON PESTAÑAS */
/* ======================================================= */
.fotos-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.fotos-tabs .tab-button {
    background: transparent;
    border: 2px solid var(--color-acento);
    color: var(--color-acento);
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Michroma', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.fotos-tabs .tab-button.active,
.fotos-tabs .tab-button:hover {
    background: var(--color-acento);
    color: #111;
}

/* Sub-pestañas para fondos */
.fondos-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.subtab-button {
    background: transparent;
    border: 1px solid var(--color-acento);
    color: var(--color-acento);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Michroma', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.subtab-button.active,
.subtab-button:hover {
    background: var(--color-acento);
    color: #111;
}

.tab-content, .subtab-content {
    display: none;
}

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

/* Galería de fotos */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.galeria-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s;
    border: 2px solid rgba(218, 145, 51, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.galeria-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(218, 145, 51, 0.3);
    border-color: rgba(218, 145, 51, 0.4);
}

/* Fondos descargables */
.fondos-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.fondos-grid.horizontal {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.fondos-grid.vertical {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.fondo-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(218, 145, 51, 0.2);
}

.fondo-image {
    width: 100%;
    display: block;
    transition: all 0.3s;
}

.fondos-grid.horizontal .fondo-image {
    height: 250px;
    object-fit: cover;
}

.fondos-grid.vertical .fondo-image {
    height: 400px;
    object-fit: cover;
}

.fondo-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;
}

.fondo-item:hover .fondo-overlay {
    opacity: 1;
}

.fondo-item:hover .fondo-image {
    transform: scale(1.05);
}

.download-button {
    background: var(--color-acento);
    color: #111;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.download-button:hover {
    background: white;
    transform: scale(1.1);
}

/* ======================================================= */
/* SECCIÓN CONECTAR - REDES Y STREAM */
/* ======================================================= */
.conectar-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 50px;
    text-align: left;
}

.conectar-categoria h3 {
    color: var(--color-acento);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.redes-lista, .stream-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* ======================================================= */
/* SOLUCIÓN DEFINITIVA - SIN CORTES Y CON ESPACIO ADECUADO */
/* ======================================================= */
.redes-link, .stream-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    position: relative;
    overflow: visible;
    /* Agregamos padding para crear un área de hover más grande */
    padding: 8px;
    margin: -8px; /* Compensamos el padding para mantener la alineación */
}

.redes-link::before, .stream-link::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.6s ease-in-out;
    z-index: 1;
    border-radius: 8px;
    transform: translateX(-110%);
}

.redes-link:hover::before, .stream-link:hover::before {
    transform: translateX(110%);
}

.redes-icon, .stream-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.1);
    /* Agregamos margen interno para el crecimiento */
    padding: 2px;
    box-sizing: content-box;
}

.redes-link:hover, .stream-link:hover {
    transform: translateY(-5px);
}

.redes-link:hover .redes-icon,
.stream-link:hover .stream-icon {
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(218, 145, 51, 0.6);
    filter: brightness(1.1);
}

/* Aumentamos el espacio entre iconos */
.redes-lista, .stream-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 25px; /* Más espacio entre iconos */
    justify-content: center;
    padding: 15px;
}

/* Aseguramos que los contenedores tengan suficiente margen */
.conectar-categoria {
    padding: 20px 10px;
}

/* ======================================================= */
/* EFECTO DE DESLIZ EN BLANCO MÁS PRONUNCIADO */
/* ======================================================= */
.redes-link, .stream-link {
    display: block;
    transition: all 0.3s;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.redes-link::before, .stream-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease-in-out;
    z-index: 1;
    border-radius: 8px;
}

.redes-link:hover::before, .stream-link:hover::before {
    left: 100%;
}

.redes-icon, .stream-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.1);
}

.redes-link:hover, .stream-link:hover {
    transform: translateY(-5px);
}

.redes-link:hover .redes-icon,
.stream-link:hover .stream-icon {
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(218, 145, 51, 0.6);
    filter: brightness(1.1);
}

/* ======================================================= */
/* SECCIÓN ACERCA DE */
/* ======================================================= */
.bio-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
    margin-top: 50px;
    text-align: left;
}

.bio-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--color-acento);
}

.bio-text {
    color: var(--color-texto-secundario);
    line-height: 1.7;
}

.bio-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.bio-text strong {
    color: var(--color-acento);
}

.formato-live {
    margin: 20px 0;
    padding: 15px;
    background: rgba(218, 145, 51, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--color-acento);
}

.formato-live h4 {
    color: var(--color-acento);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.formato-live ul {
    list-style: none;
    padding-left: 0;
}

.formato-live li {
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.formato-live li:before {
    content: "•";
    color: var(--color-acento);
    position: absolute;
    left: 0;
}

/* ======================================================= */
/* BOTONES PRIMARIOS - ESTILO CONSISTENTE */
/* ======================================================= */
.button-primario {
    background: var(--color-acento);
    color: #111;
    border: 2px solid var(--color-acento);
    padding: 12px 25px;
    border-radius: 8px;
    font-family: 'Michroma', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    display: inline-block;
    text-align: center;
}

.button-primario:hover {
    background: transparent;
    color: var(--color-acento);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(218, 145, 51, 0.3);
}

/* ======================================================= */
/* FOOTER ACTUALIZADO */
/* ======================================================= */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 20px 30px;
    text-align: center;
    border-top: 1px solid rgba(218, 145, 51, 0.3);
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-logo-img:hover {
    opacity: 1;
}

footer h3 {
    color: var(--color-acento);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-description {
    color: var(--color-texto-secundario);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ======================================================= */
/* CORRECCIONES ESPECÍFICAS PARA BANDSINTOWN WIDGET */
/* ======================================================= */

/* Mejorar botón SOLICITAR UN ESPECTÁCULO en móviles */
@media (max-width: 768px) {
    .bandsintown-widget .bit-play-my-city-button {
        word-spacing: 2px;
        line-height: 1.3;
        white-space: normal;
        padding: 8px 12px;
        height: auto;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

/* Corrección del doble punto en meses */
.bandsintown-widget .bit-date-month {
    text-transform: uppercase;
    letter-spacing: normal;
}

/* ======================================================= */
/* RESPONSIVE PARA BOTONES DE PLATAFORMAS Y CORREO */
/* ======================================================= */
@media (max-width: 768px) {
    .platform-buttons {
        gap: 10px;
        padding: 0 15px;
    }
    
    .platform-btn {
        padding: 12px 15px;
        font-size: 11px;
        min-width: 120px;
        max-width: 140px;
        flex: 0 1 calc(50% - 10px);
    }
    
    .contact-email-btn {
        padding: 14px 25px;
        font-size: 13px;
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .platform-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .platform-btn {
        min-width: 100%;
        max-width: 100%;
        flex: 1;
        padding: 14px 20px;
        font-size: 12px;
    }
    
    .contact-email-btn {
        padding: 12px 20px;
        font-size: 12px;
        min-width: 220px;
    }
}

/* ======================================================= */
/* MEDIA QUERIES - RESPONSIVE DESIGN */
/* ======================================================= */

/* Para dispositivos móviles */
@media (max-width: 768px) {
    body {
        background-image: url('images/background-2.png');
        background-size: cover;
        background-attachment: fixed;
        background-position: center center;
        overflow-x: hidden;
        width: 100%;
    }
    
    html {
        overflow-x: hidden;
        width: 100%;
        scroll-padding-top: 140px;
    }
    
    /* HEADER FIJO CON DISEÑO MEJORADO - TODAS LAS SECCIONES VISIBLES */
    header {
        padding: 15px 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        background-color: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(15px);
        border-bottom: 2px solid rgba(218, 145, 51, 0.4);
        height: auto;
    }
    
    header nav {
        flex-direction: column;
        gap: 12px;
        padding: 0 15px;
        align-items: stretch;
    }
    
    .logo-container {
        text-align: center;
        margin-bottom: 5px;
    }
    
    .logo-img {
        height: 35px;
        margin: 0 auto;
    }
    
    /* NAVEGACIÓN EN GRID - TODAS LAS SECCIONES VISIBLES */
    header nav ul {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        overflow: visible;
        padding: 0;
        margin: 0;
    }
    
    header nav ul li {
        text-align: center;
    }
    
    header nav ul li a {
        font-size: 9px;
        padding: 10px 5px;
        white-space: nowrap;
        letter-spacing: 0.6px;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        border: 1px solid rgba(218, 145, 51, 0.2);
        transition: all 0.3s ease;
        display: block;
        width: 100%;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    header nav ul li a:hover {
        background: rgba(218, 145, 51, 0.15);
        border-color: var(--color-acento);
        color: var(--color-acento);
        transform: translateY(-1px);
    }
    
    /* Ajuste de padding para todas las secciones para compensar el header fijo */
    .hero-section, 
    .content-section {
        padding-top: 140px;
    }
    
    .hero-section {
        padding: 140px 15px 80px;
        min-height: 100vh;
        background-image: url('images/background-2.png');
        background-position: center center;
    }
    
    .hero-content {
        padding: 25px 20px;
        margin-top: 10px;
    }
    
    /* MEJORA: Título NUEVO LANZAMIENTO con mejor interlineado */
    .release-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
        line-height: 1.4;
        letter-spacing: 1.2px;
        padding: 0 15px;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }
    
    #musica h3 {
        font-size: 1.5rem;
        margin: 50px 0 30px;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .content-section {
        padding: 140px 15px 60px;
    }
    
    /* CORRECCIÓN PARA PESTAÑAS DE VIDEOS - MÁS GRANDES */
    .videos-tabs {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .videos-tabs .tab-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.9rem;
        letter-spacing: 1px;
        white-space: normal;
        line-height: 1.3;
        height: auto;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
    }
    
    /* CORRECCIÓN PARA VIDEOS EN MÓVIL */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .video-item {
        -webkit-perspective: 1000;
        perspective: 1000;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        margin-bottom: 15px;
    }
    
    .video-item iframe {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        width: 100%;
        height: 100%;
        max-width: 100%;
    }
    
    .video-container {
        margin: 0 15px;
        max-width: 100%;
    }
    
    .video-wrapper {
        -webkit-perspective: 1000;
        perspective: 1000;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .video-wrapper iframe {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* BOTONES DE ACCIÓN EN MÓVIL */
    .platform-action-buttons {
        margin-top: 20px;
    }
    
    .action-btn {
        padding: 12px 24px;
        font-size: 12px;
        min-width: 150px;
        letter-spacing: 0.8px;
    }
    
    .platform-section-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .platform-section {
        margin-bottom: 30px;
    }
    
    .discografia-grid, .singles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .cover-image {
        width: 100%;
        max-width: 250px;
        height: 250px;
    }
    
    .cover-title {
        font-size: 1.2rem;
    }
    
    .conectar-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .bio-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        padding: 0 15px;
    }
    
    .bio-image {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .bio-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .fondos-grid.horizontal, .fondos-grid.vertical {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .fondos-tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 0 15px;
    }
    
    .subtab-button {
        width: 100%;
        max-width: 220px;
        text-align: center;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    /* Ajustes adicionales para mejorar la legibilidad */
    .formato-live h4 {
        font-size: 1rem;
    }
    
    .formato-live {
        padding: 12px;
        margin: 18px 0;
    }
    
    /* Footer ajustado */
    footer {
        padding: 40px 15px 20px;
    }
    
    footer h3 {
        font-size: 1.5rem;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    /* Pestañas de fotos mejoradas */
    .fotos-tabs {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 15px;
    }
    
    .fotos-tabs .tab-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    /* Mejoras en iconos de redes sociales */
    .redes-icon, .stream-icon {
        width: 45px;
        height: 45px;
    }
    
    .redes-lista, .stream-lista {
        gap: 12px;
    }
}

/* Para móviles más pequeños - ajuste de grid */
@media (max-width: 480px) {
    header nav ul {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    
    header nav ul li a {
        font-size: 8px;
        padding: 8px 3px;
        min-height: 35px;
        letter-spacing: 0.5px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .videos-tabs .tab-button,
    .fotos-tabs .tab-button {
        font-size: 0.85rem;
        padding: 12px 16px;
    }
    
    .hero-section {
        padding: 130px 10px 70px;
    }
    
    .content-section {
        padding: 130px 10px 50px;
    }
    
    header {
        padding: 12px 0;
    }
    
    html {
        scroll-padding-top: 130px;
    }
    
    /* MEJORA ADICIONAL: Título aún más pequeño para móviles muy pequeños con mejor interlineado */
    .release-title {
        font-size: 1.4rem;
        line-height: 1.5;
        letter-spacing: 1px;
    }
    
    /* MEJORA ADICIONAL: Botón SOLICITAR UN ESPECTÁCULO en móviles pequeños */
    .bandsintown-widget .bit-play-my-city-button {
        font-size: 0.85rem;
        line-height: 1.4;
        word-spacing: 2px;
        padding: 6px 10px;
    }
    
    .video-container {
        margin: 0 10px;
    }
    
    /* BOTONES EN MÓVILES PEQUEÑOS */
    .action-btn {
        padding: 10px 20px;
        font-size: 11px;
        min-width: 140px;
    }
}

/* Para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .discografia-grid, .singles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .conectar-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Ajuste de header para tablets */
    header nav ul li a {
        font-size: 10px;
    }
    
    .logo-img {
        height: 35px;
    }
}

/* Scroll suave con offset para header fijo */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

/* Asegurar que el contenido no quede detrás del header fijo */
main {
    position: relative;
    z-index: 1;
}

/* Mejora visual para el header en móviles */
@media (max-width: 768px) {
    header nav ul li a {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    header nav ul li a:active {
        transform: translateY(1px);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    }
}

/* ======================================================= */
/* WIDGET BANDSINTOWN - LAYOUT HORIZONTAL FIJO */
/* ======================================================= */

.bandsintown-widget {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* ESCRITORIO - FORZAR LAYOUT HORIZONTAL */
@media (min-width: 769px) {
    .bit-event {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 20px !important;
        padding: 15px 20px !important;
        border-bottom: 1px solid rgba(218, 145, 51, 0.3) !important;
        background: rgba(0, 0, 0, 0.5) !important;
        border-radius: 10px !important;
        margin-bottom: 15px !important;
    }

    .bit-date {
        flex-shrink: 0 !important;
        width: 120px !important;
        text-align: center !important;
        padding: 12px 8px !important;
        background: linear-gradient(135deg, rgba(218, 145, 51, 0.9) 0%, rgba(233, 190, 67, 0.9) 100%) !important;
        border-radius: 8px !important;
        border: 2px solid rgba(218, 145, 51, 0.5) !important;
    }

    .bit-event-details {
        flex: 1 !important;
        min-width: 0 !important;
        text-align: left !important;
    }

    .bit-event-name {
        color: var(--color-acento) !important;
        font-weight: bold !important;
        font-size: 1.1rem !important;
        margin-bottom: 5px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .bit-event-venue, .bit-event-location {
        color: var(--color-texto-secundario) !important;
        font-size: 0.9rem !important;
        display: inline !important;
    }

    .bit-event-venue::after {
        content: " • ";
        margin: 0 8px;
        color: var(--color-acento);
    }

    /* BOTONES EN LÍNEA - ESTO ES CLAVE */
    .bit-event-actions {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .bit-event-ticket,
    .bit-event-rsvp {
        display: inline-block !important;
        margin: 0 !important;
    }
}

/* MÓVILES */
@media (max-width: 768px) {
    .bit-event {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        text-align: center !important;
        padding: 20px 15px !important;
    }
    
    .bit-date {
        width: 100% !important;
    }
    
    .bit-event-actions {
        justify-content: center !important;
        width: 100% !important;
    }
}

/* ESTILOS BOTONES */
.bit-button {
    font-family: 'Michroma', sans-serif !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    border-radius: 5px !important;
    white-space: nowrap !important;
    border: 2px solid !important;
    font-size: 11px !important;
    padding: 8px 12px !important;
}

.bit-event-ticket .bit-button {
    background: linear-gradient(135deg, var(--color-acento) 0%, #E9BA43 100%) !important;
    border-color: var(--color-acento) !important;
    color: #111 !important;
}

.bit-event-rsvp .bit-button {
    background: transparent !important;
    border-color: var(--color-acento) !important;
    color: var(--color-acento) !important;
    padding: 8px !important;
    min-width: 40px !important;
}

.bit-upcoming-header, .bit-past-header {
    color: var(--color-acento) !important;
    font-family: 'Michroma', sans-serif !important;
    text-transform: uppercase !important;
    margin-bottom: 30px !important;
    text-align: center !important;
}

.bit-play-my-city {
    display: none !important;
}
