
  
        @font-face {
            font-family: 'inter';
            src: url('../../fonts/inter-regular.woff') format('woff'),
                 url('../../fonts/inter-regular.woff2') format('woff2'),
                 url('../../fonts/inter-regular.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        @font-face {
            font-family: 'inter';
            src: url('../../fonts/inter-bold.woff') format('woff'),
                 url('../../fonts/inter-bold.woff2') format('woff2'),
                 url('../../fonts/inter-bold.ttf') format('truetype');
            font-weight: bold;
            font-style: normal;
        }

        :root {
            --primary-color: #1a1a1a;
            --accent-color: #c9a145;
            --accent-light: #d8b96c;
            --text-light: #e8e8e8;
            --text-dark: #0a0a0a;
            --transition: all 0.3s ease;
            --header-height: 80px;
            --section-padding: 6rem 5%;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'inter', sans-serif;
            background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: var(--header-height);
        }

        .header {
            padding: 1rem 5%;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(201, 161, 69, 0.2);
        }

        .nav {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'inter','Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: normal;
            color: #b3d9e9;
            text-decoration: none;
            z-index: 1002;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            gap: 0.7rem;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1.1rem;
            transition: var(--transition);
            padding: 0.5rem 1rem;
            border-radius: 3px;
            white-space: nowrap;
            position: relative;
        }

        .nav-links a:hover {
            color: #b3d9e9;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: #b3d9e9;
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* --- SECCIÓN HERO MEJORADA --- */
        .hero {
            min-height: calc(100vh - var(--header-height));
            display: flex;
            align-items: center;
            padding: var(--section-padding);
            position: relative;
            background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(26,26,26,0.8) 100%), 
                        url('../../img/circulo.webp') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;            
        }

        .hero-container {
            display: flex;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            gap: 5%;
            align-items: center;
        }

        .hero-content {
            flex: 1;
            min-width: 300px;
            padding-right: 5%;
            position: relative;
            z-index: 2;
        }

        .hero-content::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 1px;
            background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
            opacity: 0.3;
        }
        
        .album-title {
            font-family: 'inter', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: bold;
            margin-bottom: 1rem;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: 1px;
            color:rgb(255, 255, 255);
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .composers-list {
            color: #b3d9e9;
            margin-top: 1rem;
            font-size: clamp(1.1rem, 1.8vw, 1.5rem);
        }

        .hero-content p {
            margin-top: 1.5rem;
            font-size: clamp(1rem, 1.2vw, 1.2rem);
            line-height: 1.7;
            max-width: 90%;
        }

        .cta-button {
            font-family: 'inter', sans-serif;
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--accent-color);
            color: var(--text-dark);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            border-radius: 3px;
            margin-top: 3rem;
            font-size: clamp(0.9rem, 1.1vw, 1.1rem);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(201, 161, 69, 0.6);
            background: var(--accent-light);
        }

        .album-cover {
            flex: 1;
            max-width: 40%;
            min-width: 300px;
            height: auto;
            aspect-ratio: 1/1;
            border-radius: 10px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.5);
            object-fit: cover;
            position: relative;
            z-index: 1;
            border: 1px solid rgba(201, 161, 69, 0.5);
            transition: transform 0.5s ease;
        }

        .album-cover:hover {
            transform: scale(1.02);
        }
        /* --- FIN SECCIÓN HERO MEJORADA --- */

        /* SECCIÓN DE NOTAS DE PRENSA MEJORADA */
        .press-section {
            background: linear-gradient(135deg, rgba(15,15,15,0.95) 0%, rgba(30,30,30,0.95) 100%);
            padding: var(--section-padding);
            position: relative;
            overflow: hidden;
        }

        .press-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?q=80&w=2070') no-repeat center center;
            background-size: cover;
            opacity: 0.05;
            z-index: -1;
        }

        .press-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-subtitle {
            font-family: 'inter', sans-serif;
            font-size: 1.2rem;
            color: var(--accent-color);
            margin-top: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .press-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 2rem;
        }

        .press-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(201, 161, 69, 0.2);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .press-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(201, 161, 69, 0.4);
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.08);
        }

        .press-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--accent-color);
        }

        .press-logo {
            height: 40px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }

        .press-logo img {
            max-height: 100%;
            max-width: 180px;
            filter: grayscale(100%) brightness(150%);
            transition: var(--transition);
        }

        .press-card:hover .press-logo img {
            filter: grayscale(0) brightness(100%);
        }

        .press-quote {
            font-family: Georgia, serif;
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 1.5rem;
            flex-grow: 1;
        }

        .press-quote:before {
            content: '"';
            position: absolute;
            top: -15px;
            left: 0;
            font-size: 3rem;
            color: rgba(201, 161, 69, 0.3);
            font-family: Georgia, serif;
        }

        .press-author {
            font-weight: bold;
            color: var(--accent-color);
            text-align: right;
            font-size: 0.95rem;
        }

        .press-source {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            text-align: right;
            margin-top: 0.3rem;
        }

        .press-highlight {
            background: rgba(201, 161, 69, 0.15);
            padding: 0.3rem 0.5rem;
            border-radius: 3px;
            font-weight: bold;
        }
        /* FIN SECCIÓN NOTAS DE PRENSA MEJORADA */

        .section {
            padding: var(--section-padding);
            scroll-margin-top: calc(var(--header-height) + 20px);
        }

        .section-title {
            font-family: 'inter', sans-serif;
            font-weight: bold;
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--accent-color);
            margin: 15px auto;
        }

        /* --- SECCIÓN BIOGRAFÍA MEJORADA --- */
        .bio-section {
            background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(26,26,26,0.95) 100%);
            position: relative;
            overflow: hidden;
        }

        .bio-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
            z-index: -1;
        }

        .bio-container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            gap: 4rem;
            align-items: center;
        }

        .bio-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.5);
            position: relative;
            z-index: 2;
            aspect-ratio: 1/1;
            border: 0.1px solid var(--accent-color);
        }

        .bio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .bio-image:hover img {
            transform: scale(1.05);
        }

        .bio-content {
            flex: 2;
        }

        .bio-name {
            font-family: 'inter', sans-serif;
            font-weight: bold;
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            color: #b3d9e9;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .bio-name:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60%;
            height: 3px;
            background: var(--accent-color);
        }

        .bio-text {
            margin-top: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .bio-highlight {
            color: var(--accent-color);
            font-weight: bold;
        }

.bio-quote {
    margin: 2rem 0;
    padding: 2rem;
    border-left: 3px solid var(--accent-color);
    background: rgba(201, 161, 69, 0.1);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
    position: relative;
    border-radius: 0 8px 8px 0;
}

.bio-quote:before {
    content: "";
    position: absolute;
    top: -15px;
    left: 10px;
    font-size: 5rem;
    color: rgba(201, 161, 69, 0.2);
    font-family: Georgia, serif;
}

.bio-signature {
    text-align: right;
    
}

.bio-signature img {
    height: 98px; /* Ajusta según el tamaño deseado */
    width: auto;
    max-width: 325px; /* Controla el ancho máximo */
}
        /* --- FIN SECCIÓN BIOGRAFÍA MEJORADA --- */

        /* NUEVA SECCIÓN DE DISCOGRAFÍA (REEMPLAZA TRACKLIST) */
        .discography-section {
            background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(26,26,26,0.95) 100%);
            padding: var(--section-padding);
            position: relative;
            overflow: hidden;
        }

        .discography-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?q=80&w=2070') no-repeat center center;
            background-size: cover;
            opacity: 0.05;
            z-index: -1;
        }

        .discography-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .albums-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2.5rem;
            margin-top: 2rem;
        }

       .album-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
            position: relative;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            border: 1px solid rgba(201, 161, 69, 0.1);
            display: flex;
            flex-direction: column;
            height: 100%; /* Asegura que todas las cards tengan la misma altura */
        }

        .album-cover-container {
            position: relative;
            aspect-ratio: 1/1;
            overflow: hidden;
            display: flex; /* Nuevo: para centrar la imagen */
            justify-content: center; /* Centrado horizontal */
            align-items: center; /* Centrado vertical */
            background: rgba(0,0,0,0.1); /* Fondo por si la imagen no carga */
        }

        .album-cover {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block; /* Elimina espacio fantasma debajo de la imagen */
        }

        /* Mejoras para el hover */
        .album-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(201, 161, 69, 0.3);
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.05);
        }

        .album-card:hover .album-cover {
            transform: scale(1.05);
        }

        /* Overlay mejorado */
        .album-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 10, 0.85);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 1.5rem;
            z-index: 1;
            text-align: center; /* Asegura que el texto también esté centrado */
        }

        .album-card:hover .album-overlay {
            opacity: 1;
        }

        .album-info {
            padding: 1.5rem;
        }

        .album-name {
            font-family: 'inter', sans-serif;
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #b3d9e9;
            text-align: center;
        }

        .album-year {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .album-description {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            text-align: center;
            margin-bottom: 1rem;
            min-height: 60px;
        }

        .spotify-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.6rem 1.2rem;
            background: #1DB954;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 0.9rem;
            transition: var(--transition);
            margin-top: 0.5rem;
            gap: 0.5rem;
        }

        .spotify-link:hover {
            background: #1ED760;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(29, 185, 84, 0.4);
        }

        .spotify-icon {
            width: 20px;
            height: 20px;
            fill: white;
        }
        /* FIN SECCIÓN DISCOGRAFÍA */

        .section {
            padding: var(--section-padding);
            scroll-margin-top: calc(var(--header-height) + 20px);
        }

        .section-title {
            font-family: 'inter', sans-serif;
            font-weight: bold;
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--accent-color);
            margin: 15px auto;
        }

        /* --- SECCIÓN PLATAFORMAS DE STREAMING MEJORADA --- */
        .platforms-section {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            padding: 4rem 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .platforms-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .platforms-title {
            font-family: 'inter', sans-serif;
            font-weight: bold;
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            margin-bottom: 3rem;
            position: relative;
            color: #b3d9e9;
        }

        .platforms-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--accent-color);
            margin: 15px auto;
        }

        .platforms-grid {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .platform-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 2rem;
            min-width: 250px;
            max-width: 300px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(201, 161, 69, 0.3);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .platform-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(201, 161, 69, 0.4);
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.08);
        }

        .platform-logo {
            width: 120px;
            height: 120px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            transition: var(--transition);
        }

        .platform-card:hover .platform-logo {
            background: rgba(201, 161, 69, 0.2);
            transform: scale(1.1);
        }

        .platform-logo img {
            width: 70%;
            height: auto;
            filter: brightness(0) invert(1);
        }

        .platform-name {
            font-family: 'inter', sans-serif;
            font-weight: bold;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #b3d9e9;
        }

        .platform-button {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background: var(--accent-color);
            color: var(--text-dark);
            text-decoration: none;
            font-weight: bold;
            border-radius: 30px;
            transition: var(--transition);
            margin-top: 1rem;
            font-size: 1rem;
            border: 2px solid var(--accent-color);
        }

        .platform-button:hover {
            background: transparent;
            color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(201, 161, 69, 0.4);
        }

        .platform-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(201,161,69,0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }

        .platform-card:hover::before {
            opacity: 1;
        }
        /* --- FIN SECCIÓN PLATAFORMAS MEJORADA --- */

        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .social-card {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            aspect-ratio: 1;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: var(--transition);
        }

        .social-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(201, 161, 69, 0.3);
        }

        .social-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .social-card:hover img {
            transform: scale(1.1);
        }

        /* NUEVA SECCIÓN DE CONTACTO */
        .contact-section {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            padding: 6rem 5%;
            text-align: center;
            position: relative;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-text {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            color: #b3d9e9;
            line-height: 1.7;
        }

        .social-contact {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .social-contact a {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            transition: var(--transition);
            width: 180px;
            padding: 1.5rem;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(201, 161, 69, 0.3);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .social-contact a:hover {
            transform: translateY(-10px);
            background: rgba(201, 161, 69, 0.1);
            box-shadow: 0 15px 30px rgba(201, 161, 69, 0.3);
            border-color: var(--accent-color);
        }

        .social-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }

        .social-contact a:hover .social-icon {
            transform: scale(1.1);
        }

        .instagram-icon {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }

        .youtube-icon {
            background: #ff0000;
        }

        .spotify-icon-contact {
            background: #1DB954;
        }

        .social-icon svg {
            width: 36px;
            height: 36px;
            fill: white;
        }

        .social-name {
            font-family: 'inter', sans-serif;
            font-weight: bold;
            font-size: 1.3rem;
            color: #b3d9e9;
            margin-bottom: 0.5rem;
        }

        .social-cta {
            color: var(--accent-color);
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .social-contact a:hover .social-cta {
            color: #b3d9e9;
        }

        footer {
            background: #000;
            padding: 3rem 5%;
            text-align: center;
            border-top: 1px solid rgba(201, 161, 69, 0.2);
        }

        .footer-links {
            margin-top: 1.5rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
            position: relative;
        }

        .footer-links a:hover {
            color: #b3d9e9;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 1px;
            background: #b3d9e9;
            transition: var(--transition);
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        .copyright {
            margin-top: 2rem;
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
            fill: #b3d9e9;
        }

        .footer-social a:hover svg {
            fill: #000;
        }

        /* Menú Hamburguesa - SOLO visible en móvil/tablet */
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--text-light);
            cursor: pointer;
            transition: var(--transition);
            z-index: 1001;
            position: relative;
            background: rgba(0,0,0,0.3);
            padding: 0.5rem;
            border-radius: 3px;
        }

        /* Animaciones */
        [data-animate] {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        [data-animate].animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .no-scroll {
            overflow: hidden;
        }

        /* --- CARRUSEL SIMPLIFICADO DE VIDEOS --- */
        .video-carousel {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
        }

        .carousel-container {
            position: relative;
            background: #000;
            border-radius: 12px;
            aspect-ratio: 16/9;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .video-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .carousel-nav {
            display: flex;
            justify-content: space-between;
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            z-index: 10;
            padding: 0 20px;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(201, 161, 69, 0.8);
            border: none;
            color: #000;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background: var(--accent-color);
            transform: scale(1.1);
        }

        .carousel-thumbnails {
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 20px 0;
            flex-wrap: wrap;
        }

        .thumbnail {
            width: 100px;
            height: 60px;
            border-radius: 5px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.6;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .thumbnail:hover, .thumbnail.active {
            opacity: 1;
            border-color: var(--accent-color);
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-info {
            text-align: center;
            margin-top: 15px;
            padding: 0 20px;
            font-size: 1.1rem;
            color: #b3d9e9;
        }

        /* Nuevo breakpoint para tablet landscape */
        @media (min-width: 769px) and (max-width: 992px) {
            .hero-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 3rem;
            }
            
            .hero-content, .album-cover {
                max-width: 90%;
                flex: none;
                padding-right: 0;
                text-align: center;
            }
            
            .hero-content::after {
                display: none;
            }
            
            .album-cover {
                max-width: 400px;
                margin-top: 1rem;
            }
            
            .nav-links {
                gap: 1rem;
            }
            
            .nav-links a {
                font-size: 0.95rem;
                padding: 0.5rem 0.8rem;
            }
            
            .section-title {
                margin-bottom: 2.5rem;
            }
            
            .bio-container {
                flex-direction: column;
                text-align: center;
            }
            
            .bio-name:after {
                left: 50%;
                transform: translateX(-50%);
                width: 40%;
            }

            .platforms-grid {
                gap: 2rem;
            }
        }

        /* Versión responsive - Tablet y Mobile */
        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
                padding: 0 20px;
                gap: 2.5rem;
            }
            
            .hero-content, .album-cover {
                max-width: 100%;
                flex: none;
                padding-right: 0;
            }
            
            .album-cover {
                max-height: 300px; /* O el valor que mejor se adapte */
                width: auto; /* Para mantener la proporción */
            }

            .logo {
                font-size: 1.5rem;
                margin-left: 20px;
            }
            
            .album-title {
                text-align: center;
            }
            
            .composers-list {
                text-align: center;
            }
            
            .hero-content p {
                max-width: 100%;
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }
            
            .section {
                padding: 3rem 20px;
            }
            
            .social-grid {
                padding: 0 15px;
            }
            
            .thumbnail {
                width: 80px;
                height: 50px;
            }
            
            .bio-container {
                flex-direction: column;                
                gap: 2rem;
                text-align: center;                                
            }
            
            .bio-image {
                max-width: 300px;
                margin: 2 auto;
            }
            
            .bio-text {
                text-align: center;
            }
            
            .bio-name:after {
                left: 50%;
                transform: translateX(-50%);
                width: 40%;
                text-align: center;
            }


            .bio-name:after {
                left: 50%;
                transform: translateX(-50%);
                width: 40%;
            }
            
           
            .bio-quote {
                text-align: center;
            }
            
            .bio-signature {
                margin-top: 1rem;
                text-align: center;
            }


            .platforms-grid {
                flex-direction: column;
                align-items: center;
            }

            .platform-card {
                width: 100%;
                max-width: 350px;
            }

            /* Responsive para nuevas secciones */
            .press-grid {
                grid-template-columns: 1fr;
            }

            .albums-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                height: calc(100vh - var(--header-height));
                background: var(--primary-color);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding: 2rem 0;
                transform: translateX(100%);
                transition: transform 0.3s ease-in-out;
                overflow-y: auto;
                z-index: 1001;
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .menu-toggle {
                display: block;
            }

            .album-title {
                font-size: 2.5rem;
            }

            .composers-list {
                font-size: 1.2rem;
            }
            
            .nav-links a {
                width: 90%;
                text-align: center;
                padding: 1rem;
                margin: 0.5rem 0;
                font-size: 1.2rem;
            }
            
            .hero {
                padding: 0 15px;
                min-height: auto;
                padding-top: 2rem;
                padding-bottom: 2rem;
            }
            
            .album-cover {
                max-width: 100%;
                max-height: 300px;
            }
            
            .cta-button {
                margin-top: 2rem;
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
                display: block;
                width: max-content;
                margin-left: auto;
                margin-right: auto;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .thumbnail {
                width: 70px;
                height: 45px;
            }
            
            .bio-quote {
                padding: 1.5rem;
                font-size: 1.1rem;
            }

            .platforms-title {
                font-size: 2rem;
            }

            .social-contact {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }

            .social-contact a {
                width: 100%;
                max-width: 300px;
            }

            /* Responsive para nuevas secciones */
            .press-card {
                padding: 1.5rem;
            }

            .albums-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .album-title {
                font-size: 2rem;
            }
            
            .composers-list {
                font-size: 1rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .logo {
                font-size: 1.3rem;
            }
            
            .carousel-thumbnails {
                gap: 5px;
                padding: 15px 5px;
            }
            
            .thumbnail {
                width: 60px;
                height: 40px;
            }
        }
    /* --- NUEVA SECCIÓN: PRÓXIMAS FECHAS (GIGS) --- */
.gigs-section {
    /* Mantiene los paddings de sección estándar para consistencia */
    background: linear-gradient(135deg, rgba(30,30,30,0.95) 0%, rgba(15,15,15,0.95) 100%);
    padding: var(--section-padding);
}

.gigs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.gigs-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.gig-item {
    display: grid;
    /* Estructura de 3 columnas: Fecha | Información | CTA */
    grid-template-columns: 100px 1fr auto; 
    align-items: center;
    padding: 1rem 0;
    /* Divisor muy sutil */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    transition: background-color 0.3s ease;
}

.gig-item:hover {
    /* Efecto hover profesional con el color de acento (dorado) */
    background-color: rgba(201, 161, 69, 0.05); 
}

.gig-item:last-child {
    border-bottom: none;
}

.gig-date {
    flex-shrink: 0;
    text-align: center;
    /* Separador vertical limpio y acentuado */
    border-right: 1px solid rgba(201, 161, 69, 0.4); 
    padding-right: 20px;
}

.gig-date .day {
    display: block;
    font-family: 'Oswald', sans-serif; /* Fuente tipográfica para títulos/números */
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--accent-light); 
    line-height: 1;
}

.gig-date .month {
    display: block;
    font-family: 'inter', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.gig-info {
    padding-left: 30px;
    flex-grow: 1;
}

.gig-title {
    font-family: 'nunito', sans-serif;
    font-size: 1.3rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.2;
}

.gig-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 3px;
}

/* Estilo para el botón/link de acción */
.gig-link {
    justify-self: end;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-color);
    border-radius: 3px;
    white-space: nowrap;
}

.gig-link:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

/* Responsive para la sección de Fechas (Mobile) */
@media (max-width: 768px) {
    .gig-item {
        /* Cambia a 2 columnas principales y define áreas para apilar la CTA abajo */
        grid-template-columns: 80px 1fr;
        grid-template-areas: 
            "date info"
            "date cta";
        gap: 0 20px;
        padding: 15px 0;
    }

    .gig-date {
        grid-area: date;
        border-right: none; /* Eliminar el divisor vertical en móvil */
        padding-right: 0;
    }

    .gig-info {
        grid-area: info;
        padding-left: 0;
    }

    .gig-link {
        grid-area: cta;
        justify-self: start;
        margin-top: 10px;
    }
    
    .gig-date .day {
        font-size: 1.8rem;
    }
    
    .gig-date .month {
        font-size: 0.75rem;
    }

    .gig-title {
        font-size: 1.1rem;
    }
    
    .gig-location {
        font-size: 0.8rem;
    }
}