/* Variables y reset */
:root {
    --color-primary: #d4af37;
    /* Oro más elegante */
    --color-secondary: #8a2be2;
    /* Púrpura más vibrante */
    --color-accent: #ff0066;
    /* Rosa más intenso */
    --color-dark: #0a0a0a;
    --color-darker: #050505;
    --color-light: #ffffff;
    --color-gray: #888888;
    --color-light-gray: #dddddd;
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Teko', sans-serif;
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-medium: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 4px;
    /* Más sutil y moderno */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f9d423 50%, #d4af37 100%);
    --gradient-purple: linear-gradient(135deg, #8a2be2 0%, #4a00e0 100%);
    --blur-effect: blur(10px);
}

/* Importar estilos para el logo actualizado */
@import url('logo.css');
@import url('menu.css');

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-light);
    background-color: var(--color-dark);
    overflow-x: hidden;
    cursor: none;
    /* Ocultar cursor por defecto para usar el personalizado */
}

a {
    text-decoration: none;
    color: var(--color-light);
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1400px;
    /* Más ancho para un diseño más moderno */
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cursor personalizado más elegante */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
    /* Efecto moderno */
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    transition: transform 0.1s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-primary);
    transition: all 0.2s ease-out;
}

/* Hero section modernizado */
.hero-v2 {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    filter: contrast(1.1) saturate(1.2);
    /* Mejora visual */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(5, 5, 5, 0.8) 0%,
            rgba(5, 5, 5, 0.5) 50%,
            rgba(5, 5, 5, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title-v2 {
    font-family: var(--font-display);
    font-size: 18rem;
    /* Más grande para más impacto */
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-primary);
    position: relative;
    letter-spacing: -5px;
    /* Más apretado para un look moderno */
}

.hero-title-v2::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    opacity: 0.4;
    filter: blur(8px);
    animation: pulse 3s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        filter: blur(8px);
    }

    100% {
        opacity: 0.5;
        filter: blur(4px);
    }
}

.hero-subtitle {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-subtitle-highlight {
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 600;
}

.hero-quote {
    font-size: 2.2rem;
    font-style: italic;
    margin-bottom: 4rem;
    opacity: 0.9;
    position: relative;
    display: inline-block;
}

.hero-quote::before,
.hero-quote::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 3rem;
    color: var(--color-primary);
    position: absolute;
}

.hero-quote::before {
    left: -20px;
    top: -10px;
}

.hero-quote::after {
    right: -20px;
    bottom: -10px;
}

.hero-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;
}

.hero-nav-button {
    display: flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    /* Más redondeado para un look moderno */
    transition: all var(--transition-fast);
    backdrop-filter: var(--blur-effect);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-nav-button:hover {
    background: var(--gradient-gold);
    color: var(--color-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-icon {
    margin-right: 1rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-icon {
    font-size: 2rem;
    color: var(--color-primary);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.hero-social {
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 3;
}

.hero-social-link {
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all var(--transition-fast);
    font-size: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--blur-effect);
}

.hero-social-link:hover {
    background: var(--gradient-gold);
    color: var(--color-dark);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.hero-years {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    display: flex;
    align-items: center;
    z-index: 3;
}

.year {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.separator {
    width: 5rem;
    height: 2px;
    background: var(--gradient-gold);
    margin: 0 1.5rem;
}

/* Sección de introducción modernizada */
.intro-section {
    padding: 12rem 0;
    background-color: var(--color-darker);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.15), transparent 70%);
    pointer-events: none;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.intro-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all var(--transition-medium);
}

.intro-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(138, 43, 226, 0.2));
    z-index: 1;
}

.intro-image img {
    transition: transform var(--transition-medium);
    filter: contrast(1.1);
}

.intro-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.intro-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right,
            rgba(138, 43, 226, 0.3),
            rgba(255, 0, 102, 0.3));
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 2;
}

.intro-image:hover .image-overlay {
    opacity: 1;
}

.intro-content h2 {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
}

.intro-content p {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    line-height: 1.8;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin: 4rem 0;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--blur-effect);
    flex: 1;
}

.stat-item:hover {
    transform: translateY(-10px);
    background-color: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 600;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary {
    display: inline-block;
    padding: 1.4rem 3.5rem;
    background: var(--gradient-gold);
    color: var(--color-dark);
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-fast);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-light);
    z-index: -1;
    transition: transform var(--transition-fast);
    transform: scaleX(0);
    transform-origin: right;
}

.btn-primary:hover {
    color: var(--color-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Sección de frases modernizada */
.frases-inmersivas {
    padding: 12rem 0;
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.frases-inmersivas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/pattern-bg.png') repeat;
    opacity: 0.03;
    z-index: 0;
}

.section-title-v2 {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 6rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
}

.section-title-v2::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 3px;
    background: var(--gradient-gold);
}

.frases-carousel {
    position: relative;
    height: 30rem;
    margin-bottom: 3rem;
}

.frase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(50px);
    transition: all var(--transition-medium);
    visibility: hidden;
}

.frase-slide.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.frase-content {
    text-align: center;
    max-width: 80%;
    position: relative;
}

.frase-content::before,
.frase-content::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 12rem;
    position: absolute;
    opacity: 0.1;
    color: var(--color-primary);
}

.frase-content::before {
    top: -6rem;
    left: -4rem;
}

.frase-content::after {
    bottom: -8rem;
    right: -4rem;
    transform: rotate(180deg);
}

.frase-quote {
    font-size: 3.2rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-weight: 300;
    font-style: italic;
}

.frase-source {
    font-family: var(--font-display);
    font-size: 2rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.frase-source::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--gradient-gold);
}

.frases-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.frases-dots {
    display: flex;
    gap: 1rem;
}

.frase-dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.frase-dot.active {
    background: var(--gradient-gold);
    transform: scale(1.2);
}

.frases-arrows {
    display: flex;
    gap: 2rem;
}

.frase-arrow {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-light);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: var(--blur-effect);
}

.frase-arrow:hover {
    background: var(--gradient-gold);
    color: var(--color-dark);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Sección de álbumes modernizada */
.albums-destacados {
    padding: 12rem 0;
    background-color: var(--color-darker);
    position: relative;
    overflow: hidden;
}

.albums-destacados::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 0, 102, 0.15), transparent 70%);
    pointer-events: none;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
}

.album-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--blur-effect);
    position: relative;
}

.album-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.2);
}

.album-cover {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    /* Cuadrado perfecto */
}

.album-cover img {
    transition: transform var(--transition-medium);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-card:hover .album-cover img {
    transform: scale(1.1);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-play {
    width: 6rem;
    height: 6rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: 2.4rem;
    transition: all var(--transition-fast);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    opacity: 0;
}

.album-card:hover .album-play {
    transform: scale(1);
    opacity: 1;
}

.album-play:hover {
    transform: scale(1.1);
    background: var(--color-light);
}

.album-info {
    padding: 2.5rem;
}

.album-title {
    font-family: var(--font-display);
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.album-year {
    font-size: 1.6rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.album-tracks {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.track-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
}

.track-item:hover {
    border-bottom-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.track-name {
    font-weight: 500;
}

.track-duration {
    color: var(--color-gray);
}

.albums-cta {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 1.4rem 3.5rem;
    background-color: transparent;
    color: var(--color-primary);
    font-weight: 600;
    border: 2px solid var(--color-primary);
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    z-index: -1;
    transition: transform var(--transition-fast);
    transform: scaleX(0);
    transform-origin: right;
}

.btn-secondary:hover {
    color: var(--color-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    border-color: transparent;
}

.btn-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Sección de línea de tiempo modernizada */
.timeline-section {
    padding: 12rem 0;
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1), transparent 70%);
    pointer-events: none;
}

.timeline-horizontal {
    display: flex;
    overflow-x: auto;
    padding: 4rem 0;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) rgba(255, 255, 255, 0.1);
    gap: 2rem;
}

.timeline-horizontal::-webkit-scrollbar {
    height: 8px;
}

.timeline-horizontal::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.timeline-horizontal::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 10px;
}

.timeline-horizontal::before {
    content: '';
    position: absolute;
    top: 7.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-primary), transparent);
    z-index: 1;
}

.timeline-item-horizontal {
    min-width: 25rem;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 600;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    top: 5rem;
    left: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.timeline-content {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--blur-effect);
}

.timeline-item-horizontal:hover .timeline-content {
    transform: translateY(-10px);
    background-color: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Sección de legado modernizada */
.legacy-section {
    padding: 12rem 0;
    background-color: var(--color-darker);
    position: relative;
    overflow: hidden;
}

.legacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 0, 102, 0.1), transparent 70%);
    pointer-events: none;
}

.legacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.legacy-item {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 3.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--blur-effect);
    position: relative;
    overflow: hidden;
}

.legacy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.legacy-item:hover {
    transform: translateY(-15px);
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.legacy-item:hover::before {
    transform: scaleX(1);
}

.legacy-icon {
    font-size: 3.5rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
    transition: all var(--transition-fast);
}

.legacy-item:hover .legacy-icon {
    transform: scale(1.2);
}

.legacy-item h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Sección de evolución del legado con gráfico modernizado */
.legacy-evolution {
    padding: 12rem 0;
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.legacy-evolution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(138, 43, 226, 0.1), transparent 70%);
    pointer-events: none;
}

.legacy-chart-container {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 3.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--blur-effect);
    box-shadow: var(--shadow-lg);
}

.legacy-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.chart-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.chart-legend {
    display: flex;
    gap: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.legend-color {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.legend-label {
    font-size: 1.4rem;
}

.legacy-chart-wrapper {
    display: flex;
    height: 40rem;
    position: relative;
    margin-bottom: 2rem;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 1.5rem;
    width: 6rem;
}

.y-label {
    font-size: 1.2rem;
    color: var(--color-gray);
    text-align: right;
}

.legacy-chart {
    flex: 1;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-x-axis {
    display: flex;
    justify-content: space-between;
    padding-left: 6rem;
}

.x-label {
    font-size: 1.2rem;
    color: var(--color-gray);
    width: calc(100% / 12);
    text-align: center;
}

.chart-tooltip {
    position: absolute;
    background-color: rgba(10, 10, 10, 0.9);
    color: var(--color-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    font-size: 1.4rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 10;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-primary);
    backdrop-filter: var(--blur-effect);
    min-width: 150px;
}

/* Call to Action modernizada */
.call-to-action {
    padding: 15rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/footer.jpg') no-repeat center center/cover;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.call-to-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2), transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.cta-content p {
    font-size: 2.2rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.cta-button {
    padding: 1.5rem 3.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: transform var(--transition-fast);
    transform: scaleX(0);
    transform-origin: right;
}

.cta-button.primary {
    background: var(--gradient-gold);
    color: var(--color-dark);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cta-button.primary::before {
    background: var(--color-light);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--color-light);
    border: 2px solid var(--color-light);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.cta-button.secondary::before {
    background: var(--color-light);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-button.primary:hover {
    color: var(--color-dark);
}

.cta-button.secondary:hover {
    color: var(--color-dark);
    border-color: transparent;
}

/* Footer modernizado */
.footer-v2 {
    background-color: var(--color-darker);
    position: relative;
    overflow: hidden;
}

.footer-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.1), transparent 70%);
    pointer-events: none;
}

.footer-main {
    padding: 8rem 0 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 3rem;
}

.footer-logo .logo {
    height: 20rem;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 1.8rem;
    color: var(--color-gray);
    font-style: italic;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
}

.footer-nav,
.footer-social {
    margin-bottom: 3rem;
}

.footer-nav h3,
.footer-social h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-nav h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-nav ul li {
    margin-bottom: 1.2rem;
}

.footer-nav a {
    font-size: 1.6rem;
    transition: all var(--transition-fast);
    position: relative;
    padding-left: 15px;
}

.footer-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-nav a:hover::before {
    background: var(--gradient-gold);
    transform: translateY(-50%) scale(1.5);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 4.5rem;
    height: 4.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--blur-effect);
}

.social-icon:hover {
    background: var(--gradient-gold);
    color: var(--color-dark);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    padding: 2.5rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-copyright,
.footer-tribute {
    font-size: 1.4rem;
    color: var(--color-gray);
}

.footer-tribute {
    margin-top: 0.5rem;
    font-style: italic;
}

/* Media Queries */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }

    .hero-title-v2 {
        font-size: 14rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .hero-social {
        right: 1.5rem;
    }

    .hero-years {
        left: 1.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 54%;
    }

    .hero-title-v2 {
        font-size: 10rem;
    }

    .hero-social {
        display: none;
    }

    .hero-years {
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

    .albums-grid {
        grid-template-columns: 1fr;
    }

    .legacy-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-main .container {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 52%;
    }

    .hero-title-v2 {
        font-size: 8rem;
    }

    .hero-nav-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .frase-quote {
        font-size: 2.4rem;
    }
}

/* Estilos específicos para la página de biografía */

/* Hero de biografía */
.bio-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bio-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.7)), url('../img/bio-hero.jpg') no-repeat center center/cover;
    z-index: 0;
}

.bio-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.bio-title {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
}

.bio-subtitle {
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--color-light);
    position: relative;
    display: inline-block;
}

.bio-subtitle::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

/* Línea de tiempo vertical */
.bio-timeline {
    padding: 10rem 0;
    background-color: var(--color-darker);
    position: relative;
    overflow: hidden;
}

.bio-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(138, 43, 226, 0.1), transparent 70%);
    pointer-events: none;
}

.timeline-vertical {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 0;
}

.timeline-vertical::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-primary), var(--color-primary), transparent);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 3rem);
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 3rem);
}

.timeline-date {
    position: absolute;
    top: 0;
    width: 15rem;
    text-align: center;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: calc(50% - 7.5rem);
}

.timeline-item:nth-child(even) .timeline-date {
    left: calc(50% - 7.5rem);
}

.date-year {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    display: block;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.date-day {
    font-size: 1.4rem;
    color: var(--color-gray);
}

.timeline-content {
    position: relative;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--blur-effect);
    z-index: 2;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    width: 2rem;
    height: 2rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -3.5rem;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -3.5rem;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.timeline-content p {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.7;
}

.timeline-image {
    margin-top: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.timeline-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-medium);
}

.timeline-image:hover img {
    transform: scale(1.05);
}

/* Sección de facetas */
.bio-facets {
    padding: 10rem 0;
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.bio-facets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 0, 102, 0.1), transparent 70%);
    pointer-events: none;
}

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

.facet-item {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 3.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--blur-effect);
    position: relative;
    overflow: hidden;
}

.facet-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.facet-item:hover {
    transform: translateY(-15px);
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.facet-item:hover::before {
    transform: scaleX(1);
}

.facet-icon {
    font-size: 4rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
    transition: all var(--transition-fast);
}

.facet-item:hover .facet-icon {
    transform: scale(1.2);
}

.facet-item h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.facet-item p {
    font-size: 1.6rem;
    line-height: 1.7;
}

/* Sección de influencias */
.bio-influences {
    padding: 10rem 0;
    background-color: var(--color-darker);
    position: relative;
    overflow: hidden;
}

.bio-influences::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(138, 43, 226, 0.1), transparent 70%);
    pointer-events: none;
}

.influences-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 5rem;
}

.influences-text h3 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.influences-text p {
    margin-bottom: 2.5rem;
    font-size: 1.7rem;
    line-height: 1.7;
}

.bio-quote {
    position: relative;
    font-size: 2.2rem;
    font-style: italic;
    padding: 2rem 3rem;
    margin: 3rem 0;
    border-left: 4px solid var(--color-primary);
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.bio-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1.6rem;
    font-style: normal;
    color: var(--color-primary);
}

.influences-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all var(--transition-medium);
}

.influences-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(138, 43, 226, 0.2));
    z-index: 1;
}

.influences-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-medium);
    filter: contrast(1.1);
}

.influences-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.influences-image:hover img {
    transform: scale(1.05);
}

/* Sección de controversias */
.bio-controversies {
    padding: 10rem 0;
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.bio-controversies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 0, 102, 0.1), transparent 70%);
    pointer-events: none;
}

.controversies-tabs {
    margin-top: 5rem;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 1.2rem 2.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--color-light);
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--gradient-gold);
    color: var(--color-dark);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-fast);
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    opacity: 1;
    transform: translateY(0);
}

.tab-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tab-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-medium);
}

.tab-image:hover img {
    transform: scale(1.05);
}

.tab-text h3 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.tab-text p {
    margin-bottom: 2rem;
    font-size: 1.7rem;
    line-height: 1.7;
}

/* Galería de imágenes */
.bio-gallery {
    padding: 10rem 0;
    background-color: var(--color-darker);
    position: relative;
    overflow: hidden;
}

.bio-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(138, 43, 226, 0.1), transparent 70%);
    pointer-events: none;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    gap: 1.5rem;
    margin-top: 5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.vertical {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.gallery-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--color-dark);
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

/* Media Queries */
@media (max-width: 992px) {
    .bio-title {
        font-size: 6rem;
    }

    .influences-content {
        grid-template-columns: 1fr;
    }

    .tab-panel.active {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        grid-auto-rows: 200px;
    }
}

@media (max-width: 768px) {
    .timeline-vertical::before {
        left: 2rem;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 5rem;
        padding-right: 0;
    }

    .timeline-date {
        left: 0 !important;
        right: auto !important;
        text-align: left;
        width: auto;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -3.5rem;
        right: auto;
    }

    .tabs-nav {
        flex-direction: column;
        align-items: center;
    }

    .gallery-item.large,
    .gallery-item.vertical {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .bio-title {
        font-size: 4.5rem;
    }

    .bio-subtitle {
        font-size: 1.8rem;
    }

    .facets-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos específicos para la página de discografía */

/* Hero de discografía */
.disco-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.disco-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.7)), url('../img/disco-hero.jpg') no-repeat center center/cover;
    z-index: 0;
}

.disco-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.disco-title {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
}

.disco-subtitle {
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--color-light);
    margin-bottom: 4rem;
}

.disco-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.disco-stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 600;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.stat-label {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-light);
}

/* Filtro de álbumes */
.disco-filter {
    padding: 5rem 0;
    background-color: var(--color-darker);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 1.2rem 2.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--color-light);
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-gold);
    color: var(--color-dark);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.search-box {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

#albumSearch {
    flex: 1;
    padding: 1.2rem 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px 0 0 30px;
    color: var(--color-light);
    font-size: 1.6rem;
    transition: all var(--transition-fast);
}

#albumSearch:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
}

.search-btn {
    padding: 1.2rem 2rem;
    background: var(--gradient-gold);
    border: none;
    border-radius: 0 30px 30px 0;
    color: var(--color-dark);
    font-size: 1.6rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-btn:hover {
    background: var(--color-light);
}

/* Álbumes */
.disco-albums,
.disco-posthumous,
.disco-compilations {
    padding: 8rem 0;
    background-color: var(--color-darker);
    position: relative;
    overflow: hidden;
}

.disco-albums::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(138, 43, 226, 0.1), transparent 70%);
    pointer-events: none;
}

.disco-posthumous::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 0, 102, 0.1), transparent 70%);
    pointer-events: none;
}

.disco-compilations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), transparent 70%);
    pointer-events: none;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 5rem;
}

.album-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--blur-effect);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.album-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.album-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.2);
}

.album-card.featured {
    border: 2px solid var(--color-primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.album-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-gold);
    color: var(--color-dark);
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
}

.album-cover {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.album-card:hover .album-cover img {
    transform: scale(1.1);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-play {
    width: 6rem;
    height: 6rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: 2.4rem;
    transition: all var(--transition-fast);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    opacity: 0;
}

.album-card:hover .album-play {
    transform: scale(1);
    opacity: 1;
}

.album-play:hover {
    transform: scale(1.1);
    background: var(--color-light);
}

.album-info {
    padding: 2.5rem;
}

.album-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.album-year {
    font-size: 1.6rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.album-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.album-label {
    font-size: 1.4rem;
    color: var(--color-gray);
}

.album-rating {
    color: var(--color-primary);
    font-size: 1.4rem;
}

.album-tracks {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.track-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
}

.track-item:hover {
    border-bottom-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.track-name {
    font-weight: 500;
}

.track-duration {
    color: var(--color-gray);
}

.album-expand {
    width: 100%;
    padding: 1.2rem;
    margin-top: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--color-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.album-expand:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Canciones destacadas */
.disco-top-songs {
    padding: 10rem 0;
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.disco-top-songs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(138, 43, 226, 0.1), transparent 70%);
    pointer-events: none;
}

.top-songs-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    margin-top: 5rem;
}

.top-songs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.song-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.song-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.song-item:hover {
    background-color: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
}

.song-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--color-primary);
    width: 5rem;
}

.song-info {
    flex: 1;
    margin-right: 2rem;
}

.song-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.song-album {
    font-size: 1.4rem;
    color: var(--color-gray);
}

.song-plays {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-right: 2rem;
}

.song-duration {
    font-size: 1.5rem;
    color: var(--color-gray);
    margin-right: 2rem;
}

.song-play {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    font-size: 1.6rem;
    transition: all var(--transition-fast);
}

.song-play:hover {
    background: var(--gradient-gold);
    color: var(--color-dark);
    transform: scale(1.1);
}

.top-songs-visual {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.visual-header {
    margin-bottom: 2rem;
}

.visual-header h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.visual-chart {
    height: 400px;
}

/* Colaboraciones */
.disco-collaborations {
    padding: 10rem 0;
    background-color: var(--color-darker);
    position: relative;
    overflow: hidden;
}

.disco-collaborations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 0, 102, 0.1), transparent 70%);
    pointer-events: none;
}

.collaborations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.collab-item {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collab-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.collab-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.2);
}

.collab-artists {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background-color: rgba(0, 0, 0, 0.2);
}

.collab-artist-img {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-fast);
}

.collab-item:hover .collab-artist-img {
    transform: scale(1.1);
}

.collab-plus {
    margin: 0 1.5rem;
    font-size: 2.4rem;
    color: var(--color-primary);
}

.collab-info {
    padding: 2.5rem;
    text-align: center;
}

.collab-info h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.collab-info p {
    font-size: 1.6rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.collab-listen {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-gold);
    color: var(--color-dark);
    font-weight: 600;
    border-radius: 30px;
    transition: all var(--transition-fast);
}

.collab-listen:hover {
    background: var(--color-light);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Media Queries */
@media (max-width: 992px) {
    .disco-title {
        font-size: 6rem;
    }

    .disco-stats {
        gap: 2rem;
    }

    .top-songs-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .filter-controls {
        flex-wrap: wrap;
    }

    .filter-btn {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }

    .song-plays,
    .song-duration {
        display: none;
    }
}

@media (max-width: 576px) {
    .disco-title {
        font-size: 4.5rem;
    }

    .disco-subtitle {
        font-size: 1.8rem;
    }

    .disco-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .song-number {
        width: 3rem;
        font-size: 2rem;
    }

    .song-title {
        font-size: 1.6rem;
    }
}

/* Estilos para la sección de Momentos Clave - Versión Moderna */
.key-moments {
    padding: 6rem 0;
    background-color: var(--color-darker);
    position: relative;
    overflow: hidden;
}

.key-moments::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(138, 43, 226, 0.1), transparent 70%);
    pointer-events: none;
}

/* Contenedor con efecto de desvanecimiento en los bordes */
.moments-carousel {
    position: relative;
    margin: 4rem auto;
    max-width: 90%;
    overflow: hidden;
}

.moments-carousel::before,
.moments-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.moments-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--color-darker) 0%, rgba(5, 5, 5, 0) 100%);
}

.moments-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--color-darker) 0%, rgba(5, 5, 5, 0) 100%);
}

.moments-subtitle {
    text-align: center;
    font-size: 1.8rem;
    color: var(--color-light);
    margin-bottom: 4rem;
}

/* Nuevo diseño horizontal */
.moments-carousel {
    position: relative;
    margin: 4rem 0;
    max-width: 90%;
    overflow: hidden;
}

.moments-track {
    display: flex;
    overflow-x: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 2rem;
    padding: 2rem 0;
    transition: transform 0.5s ease;
}

.moment-card {
    flex: 0 0 300px;
    height: 450px;
    margin-right: 2rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.moment-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.moment-card.featured {
    flex: 0 0 350px;
    height: 480px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.moment-card.featured:hover {
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.moment-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    overflow: hidden;
}

.moment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.moment-card:hover .moment-image img {
    transform: scale(1.1);
}

.moment-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--color-darker), transparent);
}

.moment-year {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-gold);
    color: var(--color-dark);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.moment-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.moment-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.moment-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-light);
    margin-bottom: 1.5rem;
}

.moment-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

/* Controles de navegación */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background-color: var(--color-primary);
    color: var(--color-dark);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--color-primary);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Línea de tiempo visual */
.timeline-visual {
    position: relative;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 3rem auto;
    max-width: 80%;
    border-radius: 2px;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.timeline-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.timeline-marker {
    position: relative;
    width: 12px;
    height: 12px;
    background-color: var(--color-dark);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: -4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-marker.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.3);
}

.timeline-marker:hover {
    background-color: var(--color-light);
}

.timeline-marker::after {
    content: attr(data-year);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--color-light);
    white-space: nowrap;
}

/* Botón de exploración */
.timeline-explore {
    text-align: center;
    margin-top: 3rem;
}

.timeline-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(138, 43, 226, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.timeline-explore-btn:hover {
    background: var(--gradient-gold);
    color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.timeline-explore-btn i {
    transition: transform 0.3s ease;
}

.timeline-explore-btn:hover i {
    transform: translateX(5px);
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.moment-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.moment-card:nth-child(1) {
    animation-delay: 0.1s;
}

.moment-card:nth-child(2) {
    animation-delay: 0.2s;
}

.moment-card:nth-child(3) {
    animation-delay: 0.3s;
}

.moment-card:nth-child(4) {
    animation-delay: 0.4s;
}

.moment-card:nth-child(5) {
    animation-delay: 0.5s;
}

.moment-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .moment-card {
        flex: 0 0 250px;
        height: 400px;
    }

    .moment-card.featured {
        flex: 0 0 280px;
        height: 420px;
    }

    .moment-content h3 {
        font-size: 1.5rem;
    }

    .moment-content p {
        font-size: 0.9rem;
    }

    .timeline-visual {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .moment-card {
        flex: 0 0 220px;
        height: 380px;
    }

    .moment-card.featured {
        flex: 0 0 240px;
        height: 400px;
    }

    .timeline-marker::after {
        font-size: 0.7rem;
    }
}



/* Estilos para la sección de Experiencia Musical */
.music-experience {
    padding: 100px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.music-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/music-pattern.png');
    opacity: 0.05;
    pointer-events: none;
}

.experience-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 1px;
}

.music-visualizer {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.visualizer-backdrop {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
}

.backdrop-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease;
}

.visualizer-backdrop.active .backdrop-image {
    transform: scale(1.1);
}

.backdrop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

.audio-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.wave-group {
    display: flex;
    align-items: flex-end;
    height: 100%;
    width: 70%;
    justify-content: space-between;
}

.wave {
    width: 3px;
    background: rgba(212, 175, 55, 0.7);
    margin: 0 3px;
    border-radius: 5px;
    height: 5px;
    animation-name: wave-animation;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transform-origin: bottom;
}

.wave-1 {
    animation-duration: 0.8s;
    animation-delay: 0.1s;
}

.wave-2 {
    animation-duration: 1s;
    animation-delay: 0.2s;
}

.wave-3 {
    animation-duration: 0.7s;
    animation-delay: 0.3s;
}

.wave-4 {
    animation-duration: 0.9s;
    animation-delay: 0.4s;
}

.wave-5 {
    animation-duration: 0.8s;
    animation-delay: 0.5s;
}

.wave-6 {
    animation-duration: 1.2s;
    animation-delay: 0.6s;
}

.wave-7 {
    animation-duration: 0.7s;
    animation-delay: 0.7s;
}

@keyframes wave-animation {
    0% {
        height: 5px;
    }

    50% {
        height: 40px;
    }

    100% {
        height: 5px;
    }
}

.visualizer-backdrop.active .wave {
    animation-play-state: running;
}

.visualizer-backdrop:not(.active) .wave {
    animation-play-state: paused;
}

.song-info {
    text-align: center;
    margin-bottom: 50px;
}

.song-title {
    font-family: 'Teko', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.song-album,
.song-year {
    display: inline-block;
    font-size: 1rem;
    color: #d4af37;
    margin: 0 10px;
}

.song-theme {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 15px 0;
}

.song-quote {
    font-style: italic;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.song-quote::before,
.song-quote::after {
    content: '"';
    color: #d4af37;
}

.song-player {
    max-width: 500px;
    margin: 0 auto;
}

.player-controls {
    display: flex;
    align-items: center;
    background: rgba(30, 30, 30, 0.8);
    padding: 15px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.player-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d4af37;
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.player-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.player-btn:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.player-progress {
    flex: 1;
    margin: 0 15px;
    position: relative;
}

.progress-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: #d4af37;
    transition: width 0.1s linear;
}

.progress-time {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 0.8rem;
    color: #aaa;
}

.player-volume {
    display: flex;
    align-items: center;
    color: #d4af37;
    margin-left: 10px;
    cursor: pointer;
}

.volume-slider {
    width: 60px;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin-left: 10px;
    overflow: hidden;
    cursor: pointer;
}

.volume-fill {
    height: 100%;
    width: 80%;
    background: #d4af37;
}

.song-selector {
    margin-bottom: 50px;
}

.selector-title {
    font-family: 'Teko', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.song-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.song-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.song-card-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.song-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.song-card:hover .song-card-image img {
    transform: scale(1.1);
}

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

.song-card:hover .song-card-overlay {
    opacity: 1;
}

.song-card-play {
    width: 50px;
    height: 50px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.song-card:hover .song-card-play {
    transform: scale(1);
}

.song-card-info {
    padding: 15px;
}

.song-card-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.song-card-theme {
    font-size: 0.8rem;
    color: #d4af37;
}

.experience-cta {
    text-align: center;
    margin-top: 30px;
}

.experience-btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    border: 2px solid #d4af37;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.experience-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.experience-btn:hover {
    background: #d4af37;
    color: #000;
}

.experience-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .visualizer-backdrop {
        height: 250px;
    }

    .song-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .music-experience {
        padding: 70px 0;
    }

    .visualizer-backdrop {
        height: 200px;
    }

    .song-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .song-card-image {
        height: 120px;
    }
}

@media (max-width: 576px) {
    .song-title {
        font-size: 1.8rem;
    }

    .player-controls {
        padding: 10px;
    }

    .player-volume {
        display: none;
    }

    .song-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Estilos para la sección de Capítulos de Vida */
.life-chapters {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.chapters-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/chapters-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: blur(5px);
}

.chapters-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
}

.chapters-container {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(15, 15, 15, 0.7);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.chapters-navigation {
    display: flex;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(20, 20, 20, 0.8);
}

.chapter-nav-item {
    flex: 1;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chapter-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #d4af37;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.chapter-nav-item:hover {
    background: rgba(30, 30, 30, 0.8);
}

.chapter-nav-item.active {
    background: rgba(40, 40, 40, 0.8);
}

.chapter-nav-item.active::after {
    transform: scaleX(1);
}

.chapter-nav-number {
    font-family: 'Teko', sans-serif;
    font-size: 1.8rem;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 5px;
}

.chapter-nav-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.chapter-nav-years {
    font-size: 0.8rem;
    color: #aaa;
}

.chapters-content {
    position: relative;
    min-height: 500px;
}

.chapter-content {
    display: none;
    padding: 40px;
    animation: fadeIn 0.5s ease forwards;
}

.chapter-content.active {
    display: flex;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chapter-media {
    width: 40%;
    padding-right: 30px;
}

.chapter-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.chapter-quote {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid #d4af37;
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

.quote-icon {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.quote-text {
    font-style: italic;
    color: #ddd;
    line-height: 1.6;
}

.chapter-text {
    width: 60%;
    padding-left: 30px;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.chapter-title {
    font-family: 'Teko', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.chapter-location {
    display: inline-block;
    color: #d4af37;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.chapter-location i {
    margin-right: 5px;
}

.chapter-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.chapter-fact {
    display: flex;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.fact-icon {
    width: 50px;
    height: 50px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.fact-title {
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 5px;
}

.fact-text {
    color: #ccc;
    line-height: 1.6;
}

.chapters-footer {
    text-align: center;
    margin-top: 50px;
}

.chapters-cta {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    border: 2px solid #d4af37;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.chapters-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.chapters-cta:hover {
    background: #d4af37;
    color: #000;
}

.chapters-cta:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .chapter-content.active {
        flex-direction: column;
    }

    .chapter-media,
    .chapter-text {
        width: 100%;
        padding: 0;
    }

    .chapter-media {
        margin-bottom: 30px;
    }

    .chapter-text {
        border-left: none;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        padding-top: 30px;
    }
}

@media (max-width: 768px) {
    .life-chapters {
        padding: 70px 0;
    }

    .chapters-navigation {
        flex-wrap: wrap;
    }

    .chapter-nav-item {
        flex: 0 0 50%;
    }

    .chapter-content {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .chapter-nav-item {
        flex: 0 0 100%;
    }

    .chapter-title {
        font-size: 1.8rem;
    }

    .chapter-fact {
        flex-direction: column;
    }

    .fact-icon {
        margin-bottom: 15px;
    }
}

/* Estilos para la sección El Alma Poética */
.poetic-soul {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
    overflow: hidden;
    color: #fff;
}

.poetic-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.poetic-soul .container {
    position: relative;
    z-index: 2;
}

.poetic-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Showcase del libro de poesía */
.poetry-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
}

.poetry-book {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 500px;
    perspective: 1500px;
    margin-bottom: 40px;
}

.book-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: rotateY(-30deg);
    transition: transform 1s ease;
    cursor: pointer;
}

.poetry-book:hover .book-cover {
    transform: rotateY(-15deg);
}

.book-spine {
    position: absolute;
    width: 50px;
    height: 100%;
    left: 0;
    background: linear-gradient(to right, #222, #333);
    transform: rotateY(90deg) translateZ(-25px);
    transform-origin: left;
    box-shadow: inset -5px 0 10px rgba(0, 0, 0, 0.5);
}

.book-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #222, #333);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.7);
    border-radius: 0 5px 5px 0;
    border-left: 2px solid #d4af37;
    transform: translateZ(25px);
}

.book-front h3 {
    font-family: 'Teko', sans-serif;
    font-size: 2.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.book-author {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.book-image {
    width: 70%;
    height: 60%;
    overflow: hidden;
    border: 5px solid #d4af37;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.book-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.poetry-book:hover .book-image img {
    transform: scale(1.05);
}

.book-pages {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #f5f5f5;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.poetry-book.open .book-cover {
    transform: rotateY(-180deg);
}

.poetry-book.open .book-pages {
    opacity: 1;
    pointer-events: auto;
}

.book-page {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    background: linear-gradient(to right, #f5f5f5, #fff);
    padding: 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.book-page.active {
    opacity: 1;
    z-index: 10;
}

.page-content {
    width: 50%;
    padding-right: 30px;
    border-right: 1px solid #ddd;
}

.poem-title {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.poem-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.poem-text p {
    margin-bottom: 20px;
}

.poem-year {
    font-size: 0.9rem;
    color: #888;
    margin-top: 30px;
}

.page-visual {
    width: 50%;
    padding-left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Visualizaciones específicas para cada poema */
.visual-rose {
    position: relative;
    width: 200px;
    height: 300px;
}

.rose-concrete {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: #888;
    border-radius: 5px;
}

.rose-concrete::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 10px;
    height: 5px;
    background: #666;
    transform: translateX(-50%);
}

.rose-stem {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: 5px;
    height: 150px;
    background: linear-gradient(to top, #2d6a4f, #40916c);
    transform: translateX(-50%);
    animation: growStem 3s ease-out forwards;
    transform-origin: bottom;
}

@keyframes growStem {
    0% {
        height: 0;
    }

    100% {
        height: 150px;
    }
}

.rose-flower {
    position: absolute;
    bottom: 200px;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translateX(-50%);
    animation: bloomRose 2s ease-out 3s forwards;
    opacity: 0;
}

@keyframes bloomRose {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.rose-petal {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #d00000, #e63946);
    border-radius: 50% 0 50% 50%;
    transform-origin: bottom right;
}

.rose-petal:nth-child(1) {
    transform: rotate(0deg);
}

.rose-petal:nth-child(2) {
    transform: rotate(72deg);
}

.rose-petal:nth-child(3) {
    transform: rotate(144deg);
}

.rose-petal:nth-child(4) {
    transform: rotate(216deg);
}

.rose-petal:nth-child(5) {
    transform: rotate(288deg);
}

/* Visualización para Ambition */
.visual-ambition {
    position: relative;
    width: 200px;
    height: 300px;
}

.ambition-bars {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
}

.ambition-bars::before,
.ambition-bars::after {
    content: '';
    width: 10px;
    height: 100%;
    background: #333;
    border-radius: 5px;
}

.ambition-figure {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: 40px;
    height: 80px;
    background: #555;
    border-radius: 10px 10px 0 0;
    transform: translateX(-50%);
}

.ambition-figure::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 30px;
    height: 30px;
    background: #555;
    border-radius: 50%;
    transform: translateX(-50%);
}

.ambition-light {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #d4af37, transparent 70%);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: pulseLight 2s infinite alternate;
}

@keyframes pulseLight {
    0% {
        opacity: 0.5;
        transform: translateX(-50%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
}

/* Visualización para Liberty */
.visual-liberty {
    position: relative;
    width: 200px;
    height: 300px;
}

.liberty-statue {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 200px;
    background: linear-gradient(to top, #6c757d, #adb5bd);
    transform: translateX(-50%);
    clip-path: polygon(30% 0, 70% 0, 80% 100%, 20% 100%);
}

.liberty-statue::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    width: 40px;
    height: 40px;
    background: #adb5bd;
    border-radius: 50%;
    transform: translateX(-50%);
}

.liberty-glasses {
    position: absolute;
    top: 0;
    left: 50%;
    width: 60px;
    height: 20px;
    transform: translateX(-50%) translateY(-10px);
}

.liberty-glasses::before,
.liberty-glasses::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #333;
    border-radius: 50%;
}

.liberty-glasses::before {
    left: 0;
}

.liberty-glasses::after {
    right: 0;
}

.liberty-scales {
    position: absolute;
    bottom: 80px;
    right: 30px;
    width: 80px;
    height: 80px;
}

.liberty-scales::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 5px;
    height: 80px;
    background: #333;
    transform: translateX(-50%);
}

.liberty-scales::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 80px;
    height: 5px;
    background: #333;
    transform-origin: center;
    animation: tiltScales 3s ease-in-out infinite alternate;
}

@keyframes tiltScales {
    0% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(10deg);
    }
}

/* Visualización para Demise */
.visual-demise {
    position: relative;
    width: 200px;
    height: 300px;
    overflow: hidden;
}

.demise-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    animation: riseShadow 4s ease-in-out infinite alternate;
}

@keyframes riseShadow {
    0% {
        height: 30%;
    }

    100% {
        height: 70%;
    }
}

.demise-light {
    position: absolute;
    top: 50px;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 70%);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: fadeLight 4s ease-in-out infinite alternate;
}

@keyframes fadeLight {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(30px);
    }
}

.demise-heartbeat {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: 40px;
    height: 40px;
    background: #e63946;
    transform: translateX(-50%) rotate(45deg);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        transform: translateX(-50%) rotate(45deg) scale(1);
    }

    15% {
        transform: translateX(-50%) rotate(45deg) scale(1.3);
    }

    30% {
        transform: translateX(-50%) rotate(45deg) scale(1);
    }

    45% {
        transform: translateX(-50%) rotate(45deg) scale(1.3);
    }

    60% {
        transform: translateX(-50%) rotate(45deg) scale(1);
    }

    100% {
        transform: translateX(-50%) rotate(45deg) scale(1);
    }
}

/* Visualización para Tomorrow */
.visual-tomorrow {
    position: relative;
    width: 200px;
    height: 300px;
    overflow: hidden;
}

.tomorrow-horizon {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #d4af37;
}

.tomorrow-sun {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(to bottom right, #f9c74f, #f8961e);
    border-radius: 50%;
    animation: setSun 5s ease-in-out infinite alternate;
}

@keyframes setSun {
    0% {
        transform: translateY(-50px);
        opacity: 1;
    }

    100% {
        transform: translateY(30px);
        opacity: 0.5;
    }
}

.tomorrow-moon {
    position: absolute;
    bottom: 150px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: riseMoon 5s ease-in-out infinite alternate;
}

@keyframes riseMoon {
    0% {
        transform: translateY(50px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-30px);
        opacity: 1;
    }
}

/* Navegación de poemas */
.poetry-navigation {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.poem-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.poem-nav-dot {
    width: 15px;
    height: 15px;
    background: #555;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.poem-nav-title {
    font-size: 0.9rem;
    color: #aaa;
    transition: all 0.3s ease;
}

.poem-nav-item:hover .poem-nav-dot {
    background: #d4af37;
    transform: scale(1.2);
}

.poem-nav-item:hover .poem-nav-title {
    color: #d4af37;
}

.poem-nav-item.active .poem-nav-dot {
    background: #d4af37;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.poem-nav-item.active .poem-nav-title {
    color: #d4af37;
    font-weight: 600;
}

/* Análisis poético */
.poetry-analysis {
    margin-top: 80px;
    background: rgba(20, 20, 20, 0.7);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.analysis-title {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.analysis-item {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.analysis-item.active {
    display: flex;
}

.analysis-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.5rem;
    margin-right: 30px;
    flex-shrink: 0;
}

.analysis-text {
    flex: 1;
}

.analysis-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Impacto literario */
.poetry-impact {
    margin-top: 80px;
    text-align: center;
}

.impact-title {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
}

.impact-quote {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    font-style: italic;
    position: relative;
    padding: 0 40px;
}

.impact-quote::before,
.impact-quote::after {
    content: '"';
    position: absolute;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.3);
    line-height: 1;
}

.impact-quote::before {
    top: -20px;
    left: 0;
}

.impact-quote::after {
    bottom: -40px;
    right: 0;
}

.quote-author {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 0.9rem;
    color: #d4af37;
}

.impact-stats {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.impact-stat {
    margin: 0 30px;
    text-align: center;
}

.stat-number {
    font-family: 'Teko', sans-serif;
    font-size: 3rem;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: #aaa;
}

/* CTA */
.poetry-cta {
    text-align: center;
    margin-top: 60px;
}

.poetry-btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    border: 2px solid #d4af37;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.poetry-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.poetry-btn:hover {
    background: #d4af37;
    color: #000;
}

.poetry-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .poetry-book {
        height: 400px;
    }

    .book-page {
        flex-direction: column;
        overflow-y: auto;
    }

    .page-content,
    .page-visual {
        width: 100%;
        padding: 0;
    }

    .page-content {
        margin-bottom: 30px;
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding-bottom: 20px;
    }

    .impact-stats {
        flex-wrap: wrap;
    }

    .impact-stat {
        flex: 0 0 calc(50% - 60px);
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .poetic-soul {
        padding: 80px 0;
    }

    .poetry-book {
        height: 350px;
    }

    .book-front h3 {
        font-size: 2rem;
    }

    .poem-nav-item {
        margin: 0 10px;
    }

    .analysis-item.active {
        flex-direction: column;
    }

    .analysis-icon {
        margin: 0 0 20px 0;
    }

    .impact-quote {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .poetry-book {
        height: 300px;
    }

    .book-front h3 {
        font-size: 1.5rem;
    }

    .poem-title {
        font-size: 1.5rem;
    }

    .poetry-navigation {
        flex-wrap: wrap;
    }

    .poem-nav-item {
        margin: 10px;
    }

    .impact-stat {
        flex: 0 0 100%;
    }
}

