@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@600;700&display=swap');

/* ==========================
   BASE
========================== */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Inter,sans-serif;
    background:#0a0a0a;
    color:#eaeaea;
    line-height:1.7;
    overflow-x:hidden;
}

h1,
h2,
h3{
    margin-top:0;
    font-weight:700;
}

h2{
    font-family:"Playfair Display",serif;
    color:#f5c542;
    text-align:center;
    margin-bottom:35px;
    font-size:44px;
    letter-spacing:.5px;
}

p{
    margin:0 0 28px;
}

/* ==========================
   TÍTULO WEB
========================== */

header{
    width:100%;
    text-align:center;
    background:#0a0a0a;
    padding:18px 20px;
    border-bottom:1px solid rgba(255,255,255,.08);
    position:relative;
    z-index:9999;
}

header a{
    color:#f5c542;
    text-decoration:none;
    font-family:"Playfair Display",serif;
    font-size:30px;
    font-weight:700;
    letter-spacing:1px;
    display:inline-block;
    transition:.3s;
}

header a:hover{
    color:#fff;
    text-shadow:0 0 15px rgba(245,197,66,.5);
}

/* ==========================
   TOP BAR
========================== */

.top-bar{
    width:100%;
    text-align:center;
    background:#0a0a0a;
    padding:18px 20px;
    border-bottom:1px solid rgba(255,255,255,.08);

    color:#f5c542;
    font-family:"Playfair Display",serif;
    font-size:30px;
    font-weight:700;
    letter-spacing:1px;

    box-shadow:0 4px 20px rgba(0,0,0,.35);
    position:relative;
    z-index:9999;
}

/* ==========================
   MENÚ
========================== */

nav{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:28px;
    padding:18px 20px;
    background:#000;
    border-bottom:1px solid rgba(245,197,66,.25);
}

nav a{
    color:#f5c542;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    transition:.3s;
}

nav a:hover{
    color:#fff;
}

nav a.active{
    color:#fff;
    border-bottom:2px solid #f5c542;
}
/* ==========================
   HERO
========================== */

.hero{
    min-height:72vh;
    background:url("IMAGENES/alma-corazon-y-vida.jpg") center/cover no-repeat;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px 20px;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,.72),
        rgba(0,0,0,.55),
        rgba(0,0,0,.78)
    );
    z-index:1;
}

.hero h1,
.hero p{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:68px;
    font-family:"Playfair Display",serif;
    color:#fff;
    margin-bottom:18px;
    text-shadow:0 0 30px rgba(0,0,0,.65);
}

.hero p{
    font-size:21px;
    color:#ddd;
    max-width:760px;
    line-height:1.9;
    text-shadow:0 0 15px rgba(0,0,0,.65);
}

.hero-resumen{
    max-width:700px;
    margin:8px auto 0;
    font-size:18px;
    color:#f5f5f5;
    line-height:1.8;
}

.hero-botones{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-botones a{
    text-decoration:none;
    padding:14px 28px;
    border-radius:40px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.btn-spotify{
    background:#1DB954;
    color:#fff;
}

.btn-spotify:hover{
    background:#18a64b;
    transform:translateY(-3px);
}

.btn-trayectoria{
    background:transparent;
    color:#f5c542;
    border:2px solid #f5c542;
}

.btn-trayectoria:hover{
    background:#f5c542;
    color:#000;
    transform:translateY(-3px);
}

/* ==========================
   SECCIONES
========================== */

.section{
    max-width:1080px;
    margin:auto;
    padding:90px 25px;
    position:relative;
    z-index:2;
}

.section p{
    font-size:18px;
    color:#ddd;
    line-height:2;
    margin-bottom:30px;
}

/* ==========================
   RTVE
========================== */

.bio-rtve{
    position:relative;
    padding:80px 20px;
    overflow:hidden;
    z-index:1;
}

.bio-rtve::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.18);
    z-index:-1;
}

.bio-rtve > *{
    position:relative;
    z-index:2;
}

/* ==========================
   DESTACADO RTVE
========================== */

.rtve-destacado{
    max-width:1100px;
    margin:0 auto 60px;
    padding:35px 25px;
    text-align:center;
    background:rgba(15,15,15,.92);
    border-left:5px solid #ffd700;
    border-right:5px solid #ffd700;
    border-radius:16px;
    box-shadow:
        0 0 25px rgba(255,215,0,.18),
        0 0 45px rgba(0,0,0,.45);
}

.rtve-destacado h3{
    font-family:"Playfair Display",serif;
    font-size:36px;
    line-height:1.4;
    color:#ffd700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
    text-shadow:
        0 0 12px rgba(255,215,0,.4),
        0 0 30px rgba(255,215,0,.18);
}

.rtve-destacado p{
    margin:0;
    font-size:18px;
    font-weight:600;
    line-height:1.8;
    color:#fff3b0;
}

/* ==========================
   TÍTULOS RTVE
========================== */

.bio-rtve h3{
    max-width:900px;
    margin:60px auto 28px;
    padding-bottom:12px;
    font-family:"Playfair Display",serif;
    font-size:30px;
    color:#ffd700;
    text-align:center;
    letter-spacing:.5px;
    border-bottom:2px solid rgba(255,215,0,.28);
}

.bio-rtve p{
    max-width:960px;
    margin:0 auto 28px;
    text-align:center;
}

/* ==========================
   TEXTO BAJO FOTO RTVE
========================== */

.rtve-titulo-foto{
    max-width:900px;
    margin:20px auto 55px;
    text-align:center;
}

.rtve-titulo-foto h3{
    font-family:"Playfair Display",serif;
    font-size:34px;
    line-height:1.4;
    color:#ffd700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
    text-shadow:
        0 0 12px rgba(255,215,0,.35),
        0 0 25px rgba(255,215,0,.15);
}

.rtve-titulo-foto p{
    font-size:20px;
    font-weight:600;
    line-height:1.9;
    color:#fff;
    text-shadow:0 0 10px rgba(0,0,0,.7);
}

/* ==========================
   IMÁGENES RTVE
========================== */

.img-medio{
    display:block;
    width:280px;
    margin:55px auto 25px;
    border:2px solid #2a2a2a;
    border-radius:18px;
    box-shadow:
        0 0 35px rgba(0,0,0,.55),
        0 0 12px rgba(255,255,255,.04);
    transition:.4s;
}

.img-medio:hover{
    transform:scale(1.02);
}

.img-archivo{
    display:block;
    width:100%;
    max-width:780px;
    margin:55px auto 25px;
    border:2px solid #2a2a2a;
    border-radius:22px;
    box-shadow:
        0 0 45px rgba(0,0,0,.65),
        0 0 15px rgba(255,255,255,.04);
    transition:.4s;
}

.img-archivo:hover{
    transform:scale(1.015);
}

/* ==========================
   SPOTIFY
========================== */

.spotify-block{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    margin:20px 0;
}

.spotify-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 18px;
    background:#1DB954;
    color:#000;
    font-weight:700;
    text-decoration:none;
    letter-spacing:.3px;
    border-radius:50px;
    transition:transform .2s ease, box-shadow .2s ease;
}

.spotify-btn:hover{
    transform:scale(1.05);
    box-shadow:0 8px 20px rgba(29,185,84,.35);
}

/* ==========================
   TARJETA ARTISTA
========================== */

.artist-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.artist-image{
    width:160px;
    margin:0 auto 20px;
}

.artist-card .artist-image img{
    display:block;
    width:160px;
    height:160px;
    object-fit:cover;
    border-radius:16px;
}

/* ==========================
   REDES SOCIALES
========================== */

.redes{
    background:#000;
    padding:70px 20px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
}

.social{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:35px;
    margin-top:30px;
}

.social a{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    min-width:90px;
    gap:12px;
    color:#fff;
    font-size:14px;
    text-decoration:none;
    transition:.3s;
}

.social img{
    width:34px;
    height:34px;
    object-fit:contain;
    transition:.3s;
}

.social a:hover{
    color:#f5c542;
}

.social a:hover img{
    transform:scale(1.12);
}

/* ==========================
   GALERÍA TRAYECTORIA
========================== */

.grid-trayectoria{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    max-width:900px;
    margin:0 auto;
}

.grid-trayectoria img{
    display:block;
    width:100%;
    height:auto;
    object-fit:contain;
}

/* ==========================
   DATOS ARTISTA
========================== */

.datos-artista{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    max-width:1100px;
    margin:60px auto;
    padding:0 20px;
}

.dato{
    padding:35px 20px;
    text-align:center;
    background:linear-gradient(180deg,#151515,#090909);
    border:1px solid rgba(245,197,66,.25);
    border-radius:18px;
    transition:.35s;
}

.dato:hover{
    transform:translateY(-8px);
    border-color:#f5c542;
    box-shadow:0 15px 35px rgba(245,197,66,.18);
}

.icono{
    display:flex;
    justify-content:center;
    align-items:center;
    width:70px;
    height:70px;
    margin:0 auto 18px;
    border:2px solid #f5c542;
    border-radius:50%;
    color:#f5c542;
    font-size:32px;
}

.icono i{
    font-size:32px;
    color:#f5c542;
}

.dato h3{
    margin-bottom:10px;
    font-family:"Playfair Display",serif;
    font-size:38px;
    color:#fff;
}

.dato p{
    margin:0;
    font-size:16px;
    color:#ccc;
}

/* ==========================
   FOOTER
========================== */

footer{
    margin-top:40px;
    padding:40px 20px;
    background:#000;
    color:#888;
    font-size:14px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.06);
}

/* ==========================
   VIDEO RESPONSIVE
========================== */

.video-responsive{
    position:relative;
    width:100%;
    height:0;
    padding-bottom:56.25%;
    overflow:hidden;
    margin:30px 0;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.45);
}

.video-responsive iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
}

/* ==========================
   CRONOLOGÍA
========================== */

.cronologia{
    max-width:950px;
    margin:70px auto;
    padding:20px;
}

.timeline{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.timeline::before{
    display:none;
}

.timeline a{
    position:relative;
    display:block;
    padding:22px 28px;
    background:linear-gradient(180deg,#181818,#0c0c0c);
    border:1px solid rgba(245,197,66,.35);
    border-left:7px solid #f5c542;
    border-radius:14px;
    color:#f5f5f5;
    font-family:"Playfair Display",serif;
    font-size:26px;
    text-decoration:none;
    overflow:hidden;
    transition:.35s ease;
    box-shadow:
        0 8px 25px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.05);
    animation:entradaTimeline .8s ease both;
}

.timeline a:nth-child(1){animation-delay:.10s;}
.timeline a:nth-child(2){animation-delay:.20s;}
.timeline a:nth-child(3){animation-delay:.30s;}
.timeline a:nth-child(4){animation-delay:.40s;}
.timeline a:nth-child(5){animation-delay:.50s;}
.timeline a:nth-child(6){animation-delay:.60s;}
.timeline a:nth-child(7){animation-delay:.70s;}

.timeline a::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:70%;
    height:100%;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.12),transparent);
    transition:.8s;
}

.timeline a:hover::before{
    left:130%;
}

.timeline span{
    display:block;
    margin-bottom:8px;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#f5c542;
}

.timeline a:hover{
    transform:translateX(12px);
    color:#fff;
    border-color:#ffd700;
    border-left-color:#ffd700;
    background:linear-gradient(180deg,#29210d,#141414);
    box-shadow:
        0 0 25px rgba(245,197,66,.35),
        0 12px 35px rgba(0,0,0,.6);
}

.timeline a:nth-child(odd){
    margin-right:40px;
}

.timeline a:nth-child(even){
    margin-left:40px;
}

.timeline a::after{
    content:"";
    position:absolute;
    top:50%;
    width:18px;
    height:18px;
    background:#f5c542;
    border:4px solid #111;
    border-radius:50%;
    transform:translateY(-50%);
    box-shadow:0 0 15px rgba(245,197,66,.7);
}

.timeline a:nth-child(odd)::after{
    right:-50px;
}

.timeline a:nth-child(even)::after{
    left:-50px;
}

@keyframes entradaTimeline{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:768px){

    .grid-trayectoria{
        grid-template-columns:1fr;
    }

    .datos-artista{
        grid-template-columns:1fr 1fr;
    }

    .top-bar{
        font-size:22px;
        padding:16px;
    }

    header a{
        font-size:22px;
    }

    nav{
        gap:14px;
        padding:14px;
    }

    nav a{
        font-size:13px;
    }

    .hero{
        min-height:60vh;
        padding:30px 20px;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:16px;
    }

    h2{
        font-size:32px;
    }

    .section{
        padding:65px 20px;
    }

    .section p,
    .bio-rtve p{
        font-size:16px;
        line-height:1.9;
    }

    .img-medio{
        width:100%;
        max-width:260px;
    }

    .img-archivo{
        border-radius:18px;
    }

    .card{
        height:250px;
    }

    .grid{
        gap:20px;
    }

    .timeline a,
    .timeline a:nth-child(odd),
    .timeline a:nth-child(even){
        margin:0;
    }

    .timeline a::after{
        display:none;
    }
}

@media (max-width:480px){

    .datos-artista{
        grid-template-columns:1fr;
    }

}
/* =====================
   SPOTIFY
===================== */

.spotify{
    max-width:700px;
    margin:25px auto;
    text-align:center;
}

.spotify iframe{
    width:100%;
    height:352px;
    border:0;
    border-radius:12px;
}
.spotify-texto{
    max-width:650px;
    margin:0 auto 30px;
    color:#ccc;
    font-size:16px;
    line-height:1.8;
    text-align:center;
}
.centrado{
    text-align:center;
}

.foto-concierto{
    max-width:400px;
    width:90%;
    height:auto;
    border-radius:18px;
}
.spotify-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:18px;
    padding:12px 24px;
    background:#1DB954;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.spotify-btn:hover{
    background:#169c46;
    transform:translateY(-2px);
}

.spotify-btn svg{
    width:20px;
    height:20px;
    fill:#fff;
}
/* FOTO RANCHERAS ETERNAS */

.hero-foto{
    display:block;
    position:relative;
    z-index:10;
    text-align:center;
    padding:50px 20px;
    background:#0a0a0a;
}

.hero-foto img.foto-portada{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    position:relative;
    z-index:20;
    width:850px;
    max-width:90%;
    height:auto;
    margin:0 auto;
    border-radius:20px;
    box-shadow:0 0 35px rgba(245,197,66,.35);
}
/* ==========================
   CIERRE TRAYECTORIA
========================== */

.hito-final{
    max-width:900px;
    margin:70px auto 20px;
    padding:45px 35px;
    text-align:center;
    background:linear-gradient(180deg,#151515,#090909);
    border:1px solid rgba(245,197,66,.35);
    border-left:6px solid #f5c542;
    border-right:6px solid #f5c542;
    border-radius:18px;
    box-shadow:
        0 0 35px rgba(245,197,66,.18),
        0 15px 40px rgba(0,0,0,.5);
}

.hito-final h3{
    font-family:"Playfair Display",serif;
    color:#f5c542;
    font-size:34px;
    margin-bottom:20px;
}

.hito-final p{
    color:#eee;
    font-size:19px;
    line-height:1.9;
}
/* ==========================
   SUBTÍTULOS DE ETAPAS
========================== */

.section h3{
    max-width:900px;
    margin:55px auto 25px;
    font-family:"Playfair Display",serif;
    color:#f5c542;
    font-size:30px;
    text-align:center;
    letter-spacing:.5px;
}
/* ==========================
   HITOS MUSICALES ACTUALIDAD
========================== */

.section h3{
    max-width:900px;
    margin:60px auto 25px;
    padding:18px 20px;
    font-family:"Playfair Display",serif;
    color:#f5c542;
    font-size:32px;
    text-align:center;
    letter-spacing:.5px;
    border-bottom:2px solid rgba(245,197,66,.35);
    text-shadow:0 0 15px rgba(245,197,66,.25);
}
/* BOTÓN VOLVER ARRIBA */

.volver-arriba{
    position:fixed;
    right:25px;
    bottom:25px;

    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f5c542;
    color:#0a0a0a;

    border-radius:50%;

    font-size:28px;
    font-weight:bold;

    text-decoration:none;

    box-shadow:0 5px 20px rgba(0,0,0,.5);

    z-index:9999;

    transition:.3s;
}

.volver-arriba:hover{
    transform:translateY(-5px);
    background:white;
}
/* =====================
   BOTÓN ENLACE OFICIAL
===================== */

.enlace-oficial{
    display:inline-block;
    padding:12px 28px;
    background:#b8860b;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
    box-shadow:0 6px 18px rgba(184,134,11,.35);
}

.enlace-oficial:hover{
    background:#d4a017;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(212,160,23,.45);
}
.video-portada{
    max-width:760px;
    margin:30px auto;
    text-align:center;
}

.foto-video{
    width:100%;
    border-radius:18px;
    display:block;
    transition:.35s;
    box-shadow:0 10px 35px rgba(0,0,0,.35);
}
/* =====================
   MINIATURA YOUTUBE
===================== */

.video-portada{
    max-width:560px;
    margin:35px auto;
    text-align:center;
}

.video-portada a{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:16px;
}

.foto-video{
    width:100%;
    height:auto;
    aspect-ratio:16 / 9;
    object-fit:cover;
    display:block;
    border-radius:16px;
    box-shadow:0 10px 35px rgba(0,0,0,.45);
    transition:.35s;
}

.video-portada:hover .foto-video{
    transform:scale(1.03);
}


/* BOTÓN PLAY */

.play-video{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    width:80px;
    height:56px;

    background:rgba(255,0,0,.90);
    border-radius:14px;
}

.play-video::before{
    content:"";
    position:absolute;

    top:50%;
    left:50%;
    transform:translate(-35%,-50%);

    border-top:13px solid transparent;
    border-bottom:13px solid transparent;
    border-left:22px solid white;
}

.video-portada:hover .play-video{
    transform:translate(-50%,-50%) scale(1.1);
}
/* INTRODUCCIÓN DE CADA ETAPA */

.intro-etapa{
    max-width:850px;
    margin:0 auto 35px;
    text-align:center;
    font-size:20px;
    font-style:italic;
    color:#f5c542;
    line-height:1.8;
}
/* GALERÍA RTVE */

.galeria-rtve{
    display:flex;
    gap:30px;
    justify-content:center;
    align-items:flex-start;
    flex-wrap:wrap;
    margin:40px auto;
}

.foto-rtve{
    flex:1;
    min-width:300px;
    max-width:500px;
    text-align:center;
}

.foto-rtve img{
    width:100%;
    max-width:300px;
    height:200px;
    object-fit:cover;
    object-position:50% 0%;
    display:block;
    margin:0 auto;
    border-radius:18px;
}
/* =========================
   COLABORACIONES
========================= */

.intro{
    max-width:900px;
    margin:30px auto 50px;
    text-align:center;
    line-height:1.8;
    font-size:20px;
    color:#ddd;
    padding:0 20px;
}

.destacado{
    max-width:950px;
    margin:50px auto;
    padding:35px;
    background:#111;
    border:2px solid #f5c542;
    border-radius:20px;
    text-align:center;
}

.destacado h2{
    color:#f5c542;
    margin-bottom:20px;
    font-size:34px;
}

.destacado p{
    max-width:850px;
    margin:20px auto;
    line-height:1.8;
    color:#ddd;
    font-size:18px;
}

h2{
    text-align:center;
}
.album .info{
    text-align:center;
}

.album .info p{
    text-align:center;
    margin:10px auto;
}
/* ==========================
   VÍDEO OFICIAL
========================== */

.video-oficial{
    max-width:1100px;
    margin:80px auto;
    padding:0 20px;
    text-align:center;
}

.video-oficial h2{
    color:#f5c542;
    font-family:"Playfair Display",serif;
    font-size:42px;
    margin-bottom:15px;
}

.video-subtitulo{
    max-width:900px;
    margin:0 auto 35px;
    text-align:center;
    color:#f5c542;
    font-size:20px;
    font-weight:600;
    line-height:1.7;
}

.video-oficial iframe{
    width:100%;
    max-width:900px;
    aspect-ratio:16/9;
    height:auto;
    border:0;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.45);
}