/* Reseteo básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fondo principal ESTÁTICO para toda la web */
body {
    font-family: 'Inter', sans-serif;
    background-image: url('./fotos/fondo.jpg');
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 1600px 1000px;
    color: #f1f1f1;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Overlay global para mejorar legibilidad */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.8) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Títulos con fuente elegante */
h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Encabezado */
header {
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    color: #e63946;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.logo::after {
    content: '';
    position: absolute;
    top: -18px;
    left: 35%;
    transform: translateX(-50%);
    width: 260px;
    height: 110px;
    background-image: url('./fotos/Logo 2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 101;
    pointer-events: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: stickerPop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s both;
}

/* Efecto hover en el sticker */
.logo:hover::after {
    transform: translateX(-50%) scale(1.15) rotate(-2deg);
    filter: drop-shadow(0 8px 20px rgba(230, 57, 70, 0.4)) 
            drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

/* Animación de entrada del sticker */
@keyframes stickerPop {
    0% {
        transform: translateX(-50%) scale(0) rotate(180deg);
        opacity: 0;
    }
    70% {
        transform: translateX(-50%) scale(1.2) rotate(-5deg);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Hacer invisible el placeholder del logo pero mantener el espacio */
.logo {
    color: transparent;
    position: relative;
}

/* Navegación */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #f1f1f1;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e63946;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #e63946;
    transform: translateY(-2px);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section con Carousel */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* Slideshow */
.slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
}

.slideshow-item {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoom 15s linear infinite;
    z-index: 6;
}

.slideshow-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 7;
}

.slideshow-item.active {
    opacity: 1;
}

@keyframes zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* Contenido del Hero */
.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
    padding: 20px;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    color: #fff;
    font-weight: 900;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 300;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 11;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    letter-spacing: 1px;
}

.btn:hover {
    background: linear-gradient(135deg, #c1121f, #a4161a);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

/* Secciones SIN imagen de fondo propia */
#sobre-nosotros,
#fotos,
#videos,
#contacto {
    background: transparent;
    position: relative;
}

/* Animación POP UP para las secciones */
section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section-title p {
    font-size: 18px;
    color: #f1f1f1;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Sección Sobre Nosotros */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 80px;
    align-items: start;
}

.about-text {
    color: #f1f1f1;
}

.about-text h3 {
    font-size: 32px;
    color: #e63946;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #f1f1f1;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.band-members {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #333;
    gap: 20px;
}

.member-item {
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.member-item:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid #e63946;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
}

.member-photo:hover {
    border-color: #c1121f;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-photo:hover img {
    transform: scale(1.1);
}

.member-name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #e63946;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.member-role {
    font-size: 12px;
    color: #f1f1f1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Responsive para miembros */
@media (max-width: 768px) {
    .band-members {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .member-item {
        max-width: 200px;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
}

.spotify-player {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.spotify-embed {
    margin-bottom: 20px;
}

.spotify-embed iframe {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.spotify-note {
    text-align: center;
    color: #f1f1f1;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
}

.spotify-note strong {
    color: #1DB954;
    font-size: 16px;
    font-weight: 600;
}

/* Sección de No Eventos */
.no-events-section {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    border-radius: 25px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(230, 57, 70, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
}

.no-events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(230, 57, 70, 0.05) 50%, transparent 70%);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.no-events-container {
    position: relative;
    z-index: 2;
}

.no-events-icon {
    font-size: 80px;
    color: #e63946;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.3));
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.05);
        opacity: 1;
    }
}

.no-events-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #e63946, #ff6b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.no-events-message {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 300;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-events-message strong {
    color: #e63946;
    font-weight: 600;
}

.no-events-section {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Proximos Eventos */
.concerts-section {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(230, 57, 70, 0.3);
    position: relative;
    overflow: hidden;
}

.concerts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(230, 57, 70, 0.05) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.concerts-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.concerts-icon {
    font-size: 36px;
    color: #e63946;
    margin-right: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.concerts-section h3 {
    font-size: 32px;
    margin: 0;
    background: linear-gradient(135deg, #e63946, #ff6b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.concert-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(230, 57, 70, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.concert-item:last-child {
    border-bottom: none;
}

.concert-item:hover {
    background: rgba(230, 57, 70, 0.1);
    transform: translateX(10px);
    border-radius: 10px;
    padding-left: 20px;
}

.concert-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: white;
    border-radius: 15px;
    padding: 15px 20px;
    margin-right: 25px;
    min-width: 80px;
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
    position: relative;
    overflow: hidden;
}

.concert-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.concert-item:hover .concert-date::before {
    transform: translateX(100%);
}

.date-day {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.date-month {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.concert-details {
    flex: 1;
}

.concert-venue {
    font-size: 18px;
    font-weight: 600;
    color: #f1f1f1;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.concert-location {
    font-size: 14px;
    color: #ccc;
    display: flex;
    align-items: center;
}

.concert-location i {
    margin-right: 8px;
    color: #e63946;
}

.concert-status {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

/* Galería de imágenes */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 25px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(230, 57, 70, 0.8) 0%, 
        rgba(193, 18, 31, 0.9) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Modal de galería */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-close:hover {
    background-color: #e63946;
    transform: scale(1.1);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 30px;
    font-weight: bold;
    padding: 20px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1001;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav:hover {
    background-color: #e63946;
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: -80px;
}

.modal-next {
    right: -80px;
}

.image-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* Sección de videos */
.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    grid-gap: 30px;
}

.video-item {
    height: 280px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-frame {
    width: 100%;
    height: 100%;
}

/* Sección de contacto */
.contact-content {
    display: flex;
    justify-content: center;
}

.unified-contact-section {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(230, 57, 70, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
}

.unified-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(230, 57, 70, 0.05) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.contacts-icon {
    font-size: 42px;
    color: #e63946;
    margin-right: 20px;
    animation: pulse 2s infinite;
}

.unified-contact-section h3 {
    font-size: 36px;
    margin: 0;
    background: linear-gradient(135deg, #e63946, #ff6b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

/* Subsección de Contacto */
.contact-subsection {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.contact-subsection h4 {
    font-size: 22px;
    color: #e63946;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.contact-subsection h4 i {
    margin-right: 12px;
    font-size: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(230, 57, 70, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    background: rgba(230, 57, 70, 0.1);
    transform: translateX(10px);
    border-radius: 10px;
    padding-left: 20px;
}

.contact-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: white;
    border-radius: 15px;
    padding: 15px;
    margin-right: 25px;
    min-width: 60px;
    height: 60px;
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.contact-item:hover .contact-icon-wrapper::before {
    transform: translateX(100%);
}

.contact-icon-wrapper i {
    font-size: 20px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 14px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: #f1f1f1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-status {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

/* Divisor */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    position: relative;
    z-index: 2;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.5), transparent);
}

.section-divider span {
    padding: 0 30px;
    font-size: 18px;
    font-weight: 600;
    color: #e63946;
    background: linear-gradient(135deg, #e63946, #ff6b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Subsección de Redes Sociales */
.social-subsection {
    position: relative;
    z-index: 2;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.social-card {
    background: rgba(40, 40, 40, 0.8);
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.social-card:hover::before {
    transform: translateX(100%);
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.social-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.social-card:hover .social-card-icon {
    transform: scale(1.2);
}

.social-card-name {
    font-size: 14px;
    font-weight: 600;
    color: #f1f1f1;
    margin-bottom: 6px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Colores específicos para cada red social */
.youtube-card:hover { border-color: #FF0000; }
.youtube-card .social-card-icon { color: #FF0000; }

.instagram-card:hover { border-color: #E4405F; }
.instagram-card .social-card-icon { color: #E4405F; }

.twitter-card:hover { border-color: #1DA1F2; }
.twitter-card .social-card-icon { color: #1DA1F2; }

.facebook-card:hover { border-color: #1877F2; }
.facebook-card .social-card-icon { color: #1877F2; }

.tiktok-card:hover { border-color: #000000; }
.tiktok-card .social-card-icon { color: #000000; }

.bandcamp-card:hover { border-color: #629AA0; }
.bandcamp-card .social-card-icon { color: #629AA0; }

.threads-card:hover { border-color: #000000; }
.threads-card .social-card-icon { color: #000000; }

.spotify-card:hover { border-color: #1DB954; }
.spotify-card .social-card-icon { color: #1DB954; }

.soundcloud-card:hover { border-color: #FF5500; }
.soundcloud-card .social-card-icon { color: #FF5500; }

.applemusic-card:hover { border-color: #ffffff; }
.applemusic-card .social-card-icon { color: #ffffff; }

/* Footer SIN imagen de fondo */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 30px 0;
    text-align: center;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Responsive (Ajuste en Móvil) */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        padding: 15px 0;
    }
    
    .logo {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .logo::after {
    width: 80px;
    height: 80px;
    top: -15px;
    }

    .logo:hover::after {
        transform: translateX(-50%) scale(1.1) rotate(-1deg);
    }
    
    nav ul {
        margin-top: 10px;
    }
    
    nav ul li {
        margin: 0 15px;
    }
    
    .hero h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }

    .no-events-section {
    padding: 40px 20px;
    margin: 20px;
    }

    .no-events-icon {
        font-size: 60px;
    }

    .no-events-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .no-events-message {
        font-size: 16px;
    }
    
    .videos-container {
        grid-template-columns: 1fr;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }

    .concert-item {
    flex-direction: column;
    text-align: center;
    }

    .concert-date {
    margin-right: 0;
    margin-bottom: 15px;
    }
}