@font-face {
    font-family: 'Nexa Heavy';
    src: url('../fonts/Nexa-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

html {

    scroll-behavior: smooth;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Poppins', sans-serif;

    background: #111;

    color: white;

}

header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    padding: 20px 8%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    background: rgba(0, 0, 0, .45);

    backdrop-filter: blur(10px);

    z-index: 1000;

    box-sizing: border-box;

}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 2px;
    padding-left: 0;
    transform: translateX(-15px);
}

.logo img {
    width: 155px;
    height: auto;
    max-height: 58px;
    display: block;
    object-fit: contain;
}

nav a {

    color: white;

    text-decoration: none;

    margin-left: 30px;

    font-weight: bold;

    transition: .3s;

    position: relative;

}

nav a:hover {

    color: #D4AF37;

}

nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 2px;

    background: #D4AF37;

    transition: .3s;

}

nav a:hover::after {

    width: 100%;

}

.hero {
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    animation: aparecer 1.2s ease;

    background:
        linear-gradient(rgba(0, 0, 0, .60), rgba(0, 0, 0, .60)),
        url("../images/hero-ruben.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-contenido {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 40px;
    transform: translateY(100px);
    animation: entradaHero 1.4s ease;
}

.btn-principal {

    display: inline-block;

    margin-top: 35px;

    padding: 16px 40px;

    background: #D4AF37;

    color: white;

    text-decoration: none;

    font-size: 18px;

    font-weight: bold;

    border-radius: 50px;

    transition: all .3s ease;

    box-shadow: 0 10px 25px rgba(212, 175, 55, .35);

    letter-spacing: 1px;

}

.btn-principal:hover {

    transform: translateY(-3px);

    background: #c49b24;

    box-shadow: 0 15px 35px rgba(212, 175, 55, .5);

}

.hero h1 {
    font-family: 'Nexa Heavy', sans-serif;
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 4px;
    margin-bottom: 28px;
    text-transform: uppercase;
    text-shadow: 0 8px 35px rgba(0, 0, 0, .55);
}

.subtitulo {

    font-size: 24px;

    color: #D4AF37;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 25px;

    text-shadow: 0 2px 15px rgba(212, 175, 55, .25);

}

.hero p {
    font-size: 21px;
    line-height: 1.7;
    max-width: none;
    margin: 0 auto;
    color: #f1f1f1;
    white-space: nowrap;
}

@keyframes aparecer {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.contenedor {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.linea {
    width: 100px;
    height: 4px;
    background: #F5D27A;
    margin: 25px auto 40px;
    border-radius: 20px;
}

.musica {
    min-height: auto;
    padding: 35px 8% 90px;
    position: relative;

    background:
        linear-gradient(rgba(0, 0, 0, .74), rgba(0, 0, 0, .84)),
        url("../images/fondo-discografia.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.musica .contenedor {
    position: relative;
    z-index: 2;
    width: 95%;
    max-width: 1550px;
}

.musica h2 {

    text-align: center;

    font-size: 45px;

    margin-bottom: 15px;

}

.scroll-indicador {

    margin-top: 50px;

    font-size: 36px;

    color: #D4AF37;

    animation: flotar 2s infinite;

}

@keyframes flotar {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(10px);

    }

    100% {

        transform: translateY(0);

    }

}

.sobre-mi {
    min-height: 100vh;
    padding: 45px 8% 80px;
    position: relative;

    background:
        linear-gradient(rgba(0, 0, 0, .72), rgba(0, 0, 0, .82)),
        url("../images/fondo-sobre-mi.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sobre-mi .contenedor {
    width: 90%;
    max-width: 1200px;
    margin: auto;

    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: nowrap;
}

.sobre-texto {
    flex: 1.35;
    min-width: 300px;
}

.sobre-imagen {
    flex: .85;
    text-align: center;
    min-width: 300px;
}

.sobre-imagen img {
    width: 100%;
    max-width: 430px;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 25px;
    transition: .4s ease;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .45);
}

.sobre-imagen img:hover {

    transform: scale(1.03);

    box-shadow: 0 25px 60px rgba(212, 175, 55, .30);

}

.sobre-texto h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 46px;
    margin-bottom: 15px;
    color: #ffffff;
}

/* ===========================
   MI PROPÓSITO
=========================== */

.tienda {
    min-height: 100vh;
    padding: 40px 8% 55px;
    position: relative;
    text-align: center;

    background:
        linear-gradient(rgba(0, 0, 0, .72), rgba(0, 0, 0, .82)),
        url("../images/fondo-tienda.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.tienda .contenedor {
    position: relative;
    z-index: 2;
    width: 95%;
    max-width: 1500px;
    margin: auto;
}

.tienda h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    color: #ffffff;
    margin-bottom: 15px;
}

#tienda {
    scroll-margin-top: 85px;
}

.tienda-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 25px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.producto-card {
    background: rgba(10, 10, 10, 0.88);
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.producto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.producto-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.producto-info {
    padding: 12px 12px 14px;
}

.producto-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.3;
}

.producto-tipo {
    font-size: 12px;
    color: #cfcfcf;
    margin-bottom: 7px;
}

.producto-precio {
    font-size: 18px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 10px;
}

.btn-comprar {
    width: 100%;
    padding: 8px 14px;
    border: 2px solid #D4AF37;
    border-radius: 25px;
    background: transparent;
    color: #D4AF37;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-comprar:hover {
    background: #D4AF37;
    color: #111;
}

.tienda-intro {
    max-width: 700px;
    margin: 0 auto;
    color: #e5e5e5;
    font-size: 16px;
    line-height: 1.7;
}

/* ===========================
   VIDEOS
=========================== */

.videos {
    padding: 35px 8% 90px;
    position: relative;
    overflow: hidden;
}

.video-fondo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-fondo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .68);
    z-index: 1;
    pointer-events: none;
}

.videos h2 {

    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 50px;
    color: #fff;
}

.videos .contenedor {
    position: relative;
    z-index: 2;
    width: 95%;
    max-width: 1500px;
    margin: auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.video-item {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    border: 1px solid rgba(212, 175, 55, .18);
}

.video-item iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: 0;
}

.videos-boton {
    margin-top: 45px;
    text-align: center;
}

.video-destacado {
    max-width: 1000px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    background: #1d1d1d;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.video-contenido {
    padding: 60px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-contenido h3 {
    margin-bottom: 20px;
    font-size: 36px;
    color: #D4AF37;
}

.video-contenido p {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.9;
    color: #ddd;
}

.btn-video {
    align-self: flex-start;
    padding: 18px 40px;
    border-radius: 50px;
    background: #D4AF37;
    color: #111;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 180px;
}

.btn-video:hover {
    background: #e4c45f;
    transform: translateY(-3px);
}

.video-reproductor {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.video-reproductor iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-nota {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 15px;
    color: #aaa;
}

/* ===========================
   GALERÍA OFICIAL
=========================== */

.galeria {
    min-height: 100vh;
    padding: 45px 3% 100px;
    position: relative;
    text-align: center;

    background:
        linear-gradient(rgba(0, 0, 0, .72), rgba(0, 0, 0, .82)),
        url("../images/fondo-galeria.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.galeria .contenedor {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
}

.galeria h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    color: #ffffff;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    max-width: 1600px;
    margin: 0 auto;
}

.galeria-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.galeria-grid a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 1 / 1;
    border: none;
    box-shadow: none;
}

.galeria-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.galeria-grid a:hover img {
    transform: scale(1.08);
    filter: brightness(.82);
}

.galeria-grid a:hover {
    border-color: #D4AF37;
    box-shadow: 0 20px 45px rgba(212, 175, 55, .18);
}

/* ===========================
   LIGHTBOX DE GALERÍA
=========================== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: rgba(0, 0, 0, .92);
}

.lightbox.activo {
    display: flex;
}

.lightbox img {
    max-width: 88vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .65);
}

.lightbox-cerrar,
.lightbox-anterior,
.lightbox-siguiente {
    position: absolute;
    border: none;
    background: rgba(0, 0, 0, .55);
    color: #ffffff;
    cursor: pointer;
    transition: .3s;
}

.lightbox-cerrar:hover,
.lightbox-anterior:hover,
.lightbox-siguiente:hover {
    color: #D4AF37;
    background: rgba(0, 0, 0, .85);
}

.lightbox-cerrar {
    top: 22px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 42px;
    line-height: 1;
}

.lightbox-anterior,
.lightbox-siguiente {
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 76px;
    border-radius: 12px;
    font-size: 38px;
}

.lightbox-anterior {
    left: 25px;
}

.lightbox-siguiente {
    right: 25px;
}

/* ===========================
   FORMULARIO DE CONTACTO
=========================== */

.formulario-modal {
    position: fixed;
    inset: 0;
    z-index: 3500;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 25px;
    background: rgba(0, 0, 0, .90);
    overflow-y: auto;
}

.formulario-modal.activo {
    display: flex;
}

.formulario-contenido {
    position: relative;
    width: 90%;
    max-width: 480px;
    padding: 38px 34px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .65);
}

.formulario-contenido h2 {
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #111111;
}

.formulario-cerrar {
    position: absolute;
    top: 10px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #222222;
    font-size: 32px;
    cursor: pointer;
    transition: .3s;
}

.formulario-cerrar:hover {
    color: #D4AF37;
}

.campo-formulario {
    margin-bottom: 14px;
}

.campo-formulario label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: #222222;
}

.campo-formulario input,
.campo-formulario textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(212, 175, 55, .25);
    border-radius: 10px;
    outline: none;
    background: #111111;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: .3s;
}

.campo-formulario textarea {
    resize: vertical;
}

.campo-formulario input:focus,
.campo-formulario textarea:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, .12);
}

.btn-enviar-formulario {
    width: 100%;
    padding: 16px 30px;
    border: none;
    border-radius: 50px;
    background: #D4AF37;
    color: #111111;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.btn-enviar-formulario:hover {
    background: #e4c45f;
    transform: translateY(-3px);
}

/* ===========================
   FOOTER
=========================== */

.footer {
    background: #0a0a0a;
    padding: 22px 8% 12px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, .15);
}

/* ===========================
   DESPEDIDA
=========================== */

.despedida-hebreo h3 {
    font-size: 42px;
    color: #D4AF37;
    margin-bottom: 12px;
    font-weight: 700;
}

.despedida-hebreo p {
    font-size: 24px;
    color: #e5e5e5;
    font-style: italic;
    line-height: 1.7;
}

.despedida-hebreo {
    margin: 25px auto 35px;
    text-align: center;
    max-width: 700px;
}

.footer h2 {

    font-family: 'Montserrat', sans-serif;

    font-size: 46px;

    color: #D4AF37;

    letter-spacing: 3px;

    margin-bottom: 15px;

}

.footer-redes {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-bottom: 50px;

}

.footer-redes a {

    width: 60px;

    height: 60px;

    display: flex;

    justify-content: center;

    align-items: center;

    text-decoration: none;

    border-radius: 50%;

    border: 2px solid #D4AF37;

    color: #D4AF37;

    font-size: 26px;

    transition: .35s;

}

.footer-redes a:hover {

    background: #D4AF37;

    color: #111;

    transform: translateY(-6px) scale(1.08);

    box-shadow: 0 15px 30px rgba(212, 175, 55, .35);

}

.volver-arriba {
    display: inline-block;
    margin: 18px 0 30px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

.volver-arriba:hover {

    color: #D4AF37;

}

.copyright {

    color: #888;

    font-size: 15px;

}

.footer-redes-titulo {
    margin-bottom: 25px;
    font-size: 21px;
    color: #ffffff;
    font-weight: 600;
}

/* ===========================
   RESPONSIVE
=========================== */

@keyframes entradaHero {

    from {

        opacity: 0;

        transform: translateY(50px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* ===========================
   PLATAFORMAS DE MÚSICA
=========================== */

.plataformas-musica {
    text-align: center;
}

.musica-intro {
    margin-bottom: 45px;
    font-size: 22px;
    line-height: 1.7;
    color: #dddddd;
}

.plataformas-enlaces {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.plataformas-enlaces a {
    min-height: 135px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;

    background: #111;
    color: #ffffff;
    text-decoration: none;

    border: 1px solid rgba(212, 175, 55, .30);
    border-radius: 18px;

    transition: .35s;
}

.plataformas-enlaces i {
    font-size: 38px;
    color: #D4AF37;
    transition: .35s;
}

.plataformas-enlaces span {
    font-size: 18px;
    font-weight: bold;
}

.plataformas-enlaces a:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 18px 38px rgba(212, 175, 55, .18);
}

.plataformas-enlaces a:hover i {
    transform: scale(1.12);
}

/* ===========================
   SPOTIFY PLAYER
=========================== */

.spotify-player {
    width: 100%;
    max-width: 900px;
    margin: 35px auto 70px;
    padding-bottom: 0;
    text-align: center;
}

.spotify-player h3 {

    color: #D4AF37;

    font-size: 34px;

    margin-bottom: 15px;

    letter-spacing: 2px;

}

.spotify-player p {

    color: #dddddd;

    font-size: 20px;

    margin-bottom: 35px;

    line-height: 1.8;

}

.spotify-player iframe {
    width: 100%;
    height: 152px;
    margin: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
}

/* ===========================
   DISCOGRAFÍA
=========================== */

.musica .contenedor {
    width: 95%;
    max-width: 1550px;
}

.discografia {
    margin-top: 0;
}

#albumes {
    scroll-margin-top: 85px;
}

.discografia h3 {
    margin-bottom: 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    color: #ffffff;
    text-align: center;
}

.discografia-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 25px;
}

.lanzamiento-card {
    min-width: 0;
    overflow: hidden;
    background: #111111;
    border: 1px solid rgba(212, 175, 55, .18);
    border-radius: 16px;
    transition: .35s;
}

.lanzamiento-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 20px 45px rgba(212, 175, 55, .16);
}

.lanzamiento-card>img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
}

.lanzamiento-info {
    padding: 24px 20px 26px;
    text-align: center;
}

.lanzamiento-info h4 {
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 23px;
    color: #ffffff;
}

.lanzamiento-info p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #bdbdbd;
}

.lanzamiento-plataformas {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.lanzamiento-plataformas a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, .30);
    border-radius: 50%;
    color: #D4AF37;
    text-decoration: none;
    font-size: 21px;
    transition: .3s;
}

.lanzamiento-plataformas a:hover {
    background: #D4AF37;
    color: #111111;
    transform: translateY(-4px);
}

/* ===========================
   DETALLES DE LUZ DORADA
=========================== */

.hero h1,
.sobre-texto h2,
.proposito h2,
.musica h2,
.videos h2,
.footer h2 {
    text-shadow:
        0 0 18px rgba(212, 175, 55, .10),
        0 4px 20px rgba(0, 0, 0, .45);
}

.btn-principal,
.btn-video {
    position: relative;
    overflow: hidden;
}

.btn-principal::before,
.btn-video::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);
    transform: skewX(-20deg);
    transition: .6s;
}

.btn-principal:hover::before,
.btn-video:hover::before {
    left: 140%;
}

.spotify-player iframe {
    border-radius: 18px;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .40),
        0 0 35px rgba(212, 175, 55, .10);
}

.video-destacado {
    border: 1px solid rgba(212, 175, 55, .15);
}

.video-destacado:hover {
    border-color: rgba(212, 175, 55, .45);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .45),
        0 0 30px rgba(212, 175, 55, .12);
}

/* ===========================
   CONTACTO
=========================== */

.contacto {
    min-height: calc(100vh - 90px);
    padding: 120px 8% 100px;
    position: relative;
    text-align: center;

    background:
        linear-gradient(rgba(0, 0, 0, .72), rgba(0, 0, 0, .82)),
        url("../images/fondo-contacto.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.contacto .contenedor {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.contacto h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    color: #ffffff;
}

.contacto-intro {
    max-width: 850px;
    margin: 35px auto 60px;
    font-size: 21px;
    line-height: 1.8;
    color: #dddddd;
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contacto-card {
    min-width: 0;
    padding: 40px 25px;
    background: #111;
    border: 1px solid rgba(212, 175, 55, .20);
    border-radius: 18px;
    transition: .35s;
}

.contacto-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 20px 45px rgba(212, 175, 55, .16);
}

.contacto-card i {
    margin-bottom: 20px;
    font-size: 38px;
    color: #D4AF37;
}

.contacto-card h3 {
    margin-bottom: 15px;
    font-size: 26px;
    color: #ffffff;
}

.contacto-card a,
.contacto-card p {
    color: #cccccc;
    text-decoration: none;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.contacto-card a:hover {
    color: #D4AF37;
}

.btn-contacto {
    display: inline-block;
    padding: 16px 38px;
    background: #D4AF37;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: .35s;
    box-shadow: 0 12px 30px rgba(212, 175, 55, .25);
}

.btn-contacto:hover {
    transform: translateY(-4px);
    background: #e4c45f;
    box-shadow: 0 18px 38px rgba(212, 175, 55, .35);
}

/* ===========================
   TÍTULOS DE SECCIÓN
=========================== */

.sobre-texto h2,
.proposito h2,
.musica h2,
.videos h2,
.contacto h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    line-height: 1.15;
    margin-bottom: 15px;
    text-align: center;
}

.sobre-texto h2 {
    text-align: center;
}

.sobre-mi,
.proposito,
.musica,
.videos,
.galeria,
.contacto {
    scroll-margin-top: 85px;
}

@media (max-width:900px) {

    header {
        padding: 18px 5%;
    }

    .logo {
        font-size: 22px;
    }

    nav a {
        margin-left: 15px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .subtitulo {
        font-size: 19px;
    }

    .hero p {
        font-size: 19px;
    }

    .sobre-mi .contenedor {
        flex-direction: column;
        text-align: center;
    }

    .video-destacado {
        grid-template-columns: 1fr;
    }

    .video-reproductor {
        min-height: 320px;
    }

    .plataformas-enlaces {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contacto-grid {
        grid-template-columns: 1fr;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .galeria-grid a {
        order: initial;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tienda-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width:600px) {

    header {
        position: static;
        flex-direction: column;
        gap: 18px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    nav a {
        margin-left: 0;
    }

    .hero {
        min-height: 85vh;
        padding: 40px 5%;
    }

    .hero-contenido {
        padding: 20px 0;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 1.05;
    }

    .subtitulo {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .hero p {
        font-size: 17px;
        line-height: 1.7;
    }

    .sobre-texto h2,
    .proposito h2,
    .musica h2,
    .videos h2 {
        font-size: 38px;
    }

    .sobre-texto p {
        font-size: 18px;
    }

    .proposito .frase {
        font-size: 22px;
    }

    .video-contenido {
        padding: 35px 25px;
    }

    .footer h2 {
        font-size: 36px;
    }

    .footer-redes-titulo {
        font-size: 18px;
    }

    .plataformas-enlaces {
        grid-template-columns: 1fr;
    }

    .sobre-texto h2,
    .proposito h2,
    .musica h2,
    .videos h2,
    .contacto h2 {
        font-size: 38px;
        text-align: center;
    }

    header {
        padding: 18px 5%;
    }

    nav {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    nav a {
        margin-left: 0;
        font-size: 14px;
    }

    .hero {
        min-height: 80vh;
    }

    .btn-principal {
        padding: 14px 28px;
        font-size: 16px;
    }

    .contacto-card {
        padding: 32px 20px;
    }

    .contacto-card a {
        font-size: 15px;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .galeria h2 {
        font-size: 38px;
    }

    .lightbox {
        padding: 15px;
    }

    .lightbox img {
        max-width: 94vw;
        max-height: 80vh;
    }

    .lightbox-anterior,
    .lightbox-siguiente {
        width: 45px;
        height: 60px;
        font-size: 30px;
    }

    .lightbox-anterior {
        left: 8px;
    }

    .lightbox-siguiente {
        right: 8px;
    }

    .lightbox-cerrar {
        top: 12px;
        right: 12px;
    }

    .formulario-modal {
        padding: 15px;
        align-items: flex-start;
    }

    .formulario-contenido {
        margin-top: 20px;
        padding: 50px 22px 30px;
    }

    .formulario-contenido h2 {
        font-size: 32px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .hero-contenido {
        margin-top: 25px;
    }

    .hero p {
        white-space: normal;
    }

    .tienda-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================
   FOOTER - AJUSTE DE TAMAÑOS
   ========================= */

.footer h2 {
    font-size: 34px;
    letter-spacing: 3px;
}

.despedida-hebreo h3 {
    font-size: 30px;
}

.despedida-hebreo p {
    font-size: 18px;
}

.footer-redes-titulo {
    font-size: 17px;
}

.footer-redes {
    gap: 14px;
}

.footer-redes a {
    width: 46px;
    height: 46px;
    font-size: 21px;
}

.volver-arriba {
    font-size: 14px;
}

.copyright {
    font-size: 12px;
}

/* =========================
   TRANSICIÓN SUAVE ENTRE SECCIONES
   ========================= */

.sobre-mi,
.musica,
.videos,
.galeria,
.tienda,
.contacto {
    position: relative;
}

/* DIFUMINADO SUPERIOR */

.sobre-mi::before,
.musica::before,
.videos::before,
.galeria::before,
.tienda::before,
.contacto::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;

    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 1) 0%,
            rgba(10, 10, 10, .70) 25%,
            rgba(10, 10, 10, .25) 65%,
            transparent 100%);

    pointer-events: none;
    z-index: 1;
}

/* DIFUMINADO INFERIOR */

.sobre-mi::after,
.musica::after,
.videos::after,
.galeria::after,
.tienda::after,
.contacto::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;

    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(10, 10, 10, .25) 35%,
            rgba(10, 10, 10, .70) 75%,
            rgba(10, 10, 10, 1) 100%);

    pointer-events: none;
    z-index: 1;
}

/* EL CONTENIDO QUEDA ENCIMA DEL DIFUMINADO */

.sobre-mi .contenedor,
.musica .contenedor,
.videos .contenedor,
.galeria .contenedor,
.tienda .contenedor,
.contacto .contenedor {
    position: relative;
    z-index: 2;
}

/* =========================
   DISCOGRAFÍA RESPONSIVE
========================= */

@media (max-width: 900px) {
    .discografia-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .discografia-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lanzamiento-card {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .lanzamiento-info {
        padding: 20px 18px 24px;
    }
}

@media (max-width: 600px) {

    header .logo {
        transform: none;
        margin: 0 auto;
        padding-left: 0;
    }

    header .logo img {
        display: block;
        margin: 0 auto;
    }

}

.menu-toggle {
    display: none;
}

@media (max-width: 600px) {

    header {
        position: relative;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;

        position: absolute;
        top: 24px;
        right: 22px;

        width: 44px;
        height: 44px;

        border: none;
        background: transparent;
        color: #D4AF37;

        font-size: 28px;
        cursor: pointer;

        z-index: 1100;
    }

    header nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 12px;

        padding: 10px 0 6px;
    }

    header nav.activo {
        display: flex;
    }

    header nav a {
        margin-left: 0;
        font-size: 16px;
    }
}