/* ═══════════════════════════════════════════
   LANDING PAGE — OPTIMIZADA PARA CELULARES
   ═══════════════════════════════════════════ */

:root {
    --color-bg:            #0a0a0a;
    --color-bg-alt:        #111111;
    --color-bg-card:       #1a1a1a;
    --color-accent:        #c8a84e;
    --color-accent-dark:   #a8882e;
    --color-accent-glow:   rgba(200, 168, 78, 0.3);
    --color-white:         #ffffff;
    --color-text:          #d0d0d0;
    --color-text-muted:    #777777;
    --font-heading:        'Montserrat', sans-serif;
    --font-elegant:        'Cormorant Garamond', serif;
    --speed-fast:          0.3s ease;
    --speed-medium:        0.6s ease;
    --section-padding:     100px 0;
    --container-max:       1200px;
}

/* --- RESET --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

body {
    font-family: var(--font-heading);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100vw;
}

body.loading {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

ul { list-style: none; }

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

img, video {
    content-visibility: auto;
}

button {
    -webkit-tap-highlight-color: transparent;
}


/* --- CONTENEDOR --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    overflow: hidden;
}

/* --- ENCABEZADOS DE SECCIÓN --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header__tag {
    display: inline-block;
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: var(--color-accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-header__line {
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* --- BOTONES --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--speed-fast);
    min-height: 48px;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-bg);
}

.btn--primary:hover,
.btn--primary:active {
    background: var(--color-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--color-accent-glow);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover,
.btn--outline:active {
    background: var(--color-white);
    color: var(--color-bg);
    transform: translateY(-3px);
}


/* ═══════════════════════════════════
   PRELOADER
   ═══════════════════════════════════ */

.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__content {
    text-align: center;
    padding: 20px;
}

.preloader__logo {
    width: 300px;
    margin-bottom: 30px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.preloader__bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader__bar-fill {
    height: 100%;
    width: 0%;
    background: var(--color-accent);
    border-radius: 2px;
    animation: loading-bar 2.2s ease-in-out forwards;
}


/* ═══════════════════════════════════
   NAVBAR
   ═══════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all var(--speed-fast);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__logo img {
    height: 38px;
    width: auto;
    transition: opacity var(--speed-fast), transform 0.5s ease;
}

.navbar__logo:hover img { opacity: 0.7; }

.navbar__menu {
    display: flex;
    gap: 40px;
}

.navbar__link {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-white);
    position: relative;
    transition: color var(--speed-fast);
    padding: 8px 0;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--speed-fast);
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--color-accent);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 100%;
}

/* Hamburguesa */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.navbar__toggle span {
    width: 26px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--speed-fast);
    transform-origin: center;
}

.navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: var(--color-bg);
}

.hero__video-wrapper {
    position: absolute;
    inset: 0;
    background: var(--color-bg);
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--color-bg);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        var(--color-bg) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    width: 100%;
}

.hero__logo {
    margin-bottom: 35px;
}

.hero__logo img {
    max-width: 500px;
    width: 80%;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.5));
}

.hero__subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--color-accent);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero__title {
    font-size: clamp(2rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.05;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero__title-sub {
    display: block;
    font-size: 0.45em;
    font-weight: 300;
    letter-spacing: 10px;
    color: var(--color-accent);
    margin-top: 10px;
}

.hero__tagline {
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    font-weight: 300;
    color: var(--color-text);
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--color-text-muted);
}

.hero__scroll span {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-accent);
    margin: 0 auto;
    animation: scroll-bounce 2s ease-in-out infinite;
    transform-origin: top;
}


/* ═══════════════════════════════════
   VIDEO DESTACADO
   ═══════════════════════════════════ */

.video-section {
    padding: 30px 0;
    background: #0a0a0a;
    overflow: hidden;
}

.video-section__wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.video-section__player {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(200, 168, 78, 0.1);
}

.video-section__video {
    width: 100%;
    height: auto;
    display: block;
}

.video-section__play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 2;
    border-radius: 12px;
    cursor: pointer;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.video-section__play-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-section__play-btn {
    width: 55px;
    height: 55px;
    background: #c8a84e;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-play 2s ease-in-out infinite;
}

.video-section__play-btn:hover,
.video-section__play-btn:active {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(200, 168, 78, 0.5);
}

.video-section__play-btn i {
    color: #0a0a0a;
    font-size: 1.3rem;
    margin-left: 4px;
}

.video-section__play-text {
    font-size: 0.7rem;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

@keyframes pulse-play {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(200, 168, 78, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(200, 168, 78, 0);
    }
}


/* ═══════════════════════════════════
   ABOUT
   ═══════════════════════════════════ */

.about {
    padding: var(--section-padding);
    background: var(--color-bg);
    overflow: hidden;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about__image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about__image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(200, 168, 78, 0.2);
    border-radius: 8px;
    pointer-events: none;
}

.about__image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.8s ease;
}

.about__image-frame:hover .about__image {
    transform: scale(1.04);
}

.about__name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.about__name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

.about__subtitle {
    font-family: var(--font-elegant);
    font-size: 1.15rem;
    color: var(--color-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.about__bio {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 16px;
}

.about__bio strong {
    color: var(--color-white);
    font-weight: 600;
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about__stat { text-align: center; }

.about__stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1.2;
}

.about__stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* ═══════════════════════════════════
   ABOUT — TIMELINE / TRAYECTORIA
   ═══════════════════════════════════ */

.about__timeline {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 80px;
}

.about__timeline-block {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 45px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: transform var(--speed-fast), box-shadow var(--speed-fast);
}

.about__timeline-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about__timeline-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.about__timeline-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(200, 168, 78, 0.1);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__timeline-icon i {
    color: var(--color-accent);
    font-size: 1.3rem;
}

.about__timeline-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about__timeline-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 25px;
}

.about__timeline-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.about__timeline-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 25px;
    transition: transform var(--speed-fast), border-color var(--speed-fast);
}

.about__timeline-card:hover {
    transform: translateY(-3px);
    border-color: rgba(200, 168, 78, 0.3);
}

.about__timeline-year {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-accent);
    background: rgba(200, 168, 78, 0.1);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.about__timeline-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.about__timeline-card-text {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
}

.about__timeline-card-text strong {
    color: var(--color-white);
    font-weight: 600;
}

.about__timeline-card-text em {
    color: var(--color-accent);
    font-style: italic;
}


/* ═══════════════════════════════════
   ABOUT — GALERÍA CON LINKS
   ═══════════════════════════════════ */

.about__gallery-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 30px;
}

.about__gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

a.about__gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--speed-fast), box-shadow var(--speed-fast);
    cursor: pointer;
}

a.about__gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

a.about__gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--speed-medium);
    filter: grayscale(10%);
}

a.about__gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.about__gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--speed-fast);
    border-radius: 12px;
}

a.about__gallery-item:hover .about__gallery-overlay {
    opacity: 1;
}

.about__gallery-overlay i {
    color: var(--color-accent);
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}


/* ═══════════════════════════════════
   MUSIC
   ═══════════════════════════════════ */

.music {
    padding: var(--section-padding);
    background: var(--color-bg-alt);
    overflow: hidden;
}

.music__release {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 0;
    background: var(--color-bg-card);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 70px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform var(--speed-fast), box-shadow var(--speed-fast);
}

.music__release:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.music__cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

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

.music__cover:hover img {
    transform: scale(1.08);
}

.music__cover-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 65px;
    height: 65px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all var(--speed-fast);
}

.music__cover:hover .music__cover-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.music__cover-play i {
    color: var(--color-bg);
    font-size: 1.3rem;
    margin-left: 4px;
}

.music__info {
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.music__label {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    background: rgba(200, 168, 78, 0.1);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.music__song-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 14px;
}

.music__description {
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 30px;
}

.music__platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.music__platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 30px;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--speed-fast);
    min-height: 44px;
}

.music__platform-btn:hover,
.music__platform-btn:active {
    transform: translateY(-2px);
    border-color: transparent;
}

.music__platform-btn--spotify:hover,
.music__platform-btn--spotify:active { background: #1DB954; }
.music__platform-btn--apple:hover,
.music__platform-btn--apple:active   { background: #FC3C44; }
.music__platform-btn--youtube:hover,
.music__platform-btn--youtube:active { background: #FF0000; }

.music__video-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 30px;
}

.music__video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.music__video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* ═══════════════════════════════════
   GALERÍA DE VIDEOS
   ═══════════════════════════════════ */

.videos-gallery {
    padding: var(--section-padding);
    background: var(--color-bg);
    overflow: hidden;
}

.videos-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.videos-gallery__item {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--speed-fast), box-shadow var(--speed-fast);
}

.videos-gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.videos-gallery__item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */

.footer {
    padding: 70px 0 35px;
    background: var(--color-bg);
    text-align: center;
    overflow: hidden;
}

.footer__logo {
    margin-bottom: 35px;
}

.footer__logo img {
    height: 50px;
    width: auto;
    margin: 0 auto;
    opacity: 0.6;
    transition: opacity var(--speed-fast);
}

.footer__logo:hover img { opacity: 1; }

.footer__social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 45px;
}

.footer__social-link {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--color-white);
    transition: all var(--speed-fast);
    min-width: 48px;
    min-height: 48px;
}

.footer__social-link:hover,
.footer__social-link:active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px var(--color-accent-glow);
}

.footer__social-link--whatsapp:hover,
.footer__social-link--whatsapp:active {
    background: #25D366;
    border-color: #25D366;
}

.footer__divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin-bottom: 30px;
}

.footer__bottom {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer__copyright { margin-bottom: 6px; }
.footer__credits i { color: var(--color-accent); }


/* ═══════════════════════════════════
   BOTÓN CONTACTO DIRECTO (HERO)
   ═══════════════════════════════════ */

.hero__contact {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.btn-contacto-directo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: #25D366;
    border: none;
    border-radius: 8px;
    color: white;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
    -webkit-tap-highlight-color: transparent;
}

.btn-contacto-directo:hover,
.btn-contacto-directo:active {
    background: #20ba5d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-contacto-directo i {
    font-size: 1.3rem;
}


/* ═══════════════════════════════════
   ANIMACIONES
   ═══════════════════════════════════ */

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.96);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
        filter: drop-shadow(0 0 25px var(--color-accent-glow));
    }
}

@keyframes loading-bar {
    0%   { width: 0%;   }
    40%  { width: 60%;  }
    80%  { width: 90%;  }
    100% { width: 100%; }
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: scaleY(0.4);
        opacity: 0.4;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(35px);
    animation: fade-up 0.9s ease forwards;
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px);  }
.reveal-up    { transform: translateY(40px);  }

.reveal-left.revealed,
.reveal-right.revealed,
.reveal-up.revealed {
    opacity: 1;
    transform: translate(0, 0);
}


/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (1024px)
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
    .about__grid { gap: 40px; }
    .about__image { height: 420px; }
    .music__release { grid-template-columns: 260px 1fr; }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — CELULARES (768px)
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    /* --- Fix scroll horizontal celular --- */
    .reveal-left {
        transform: translateX(-25px);
    }

    .reveal-right {
        transform: translateX(25px);
    }

    .reveal-up {
        transform: translateY(30px);
    }

    /* --- Navbar celular --- */
    .navbar {
        padding: 15px 0;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    .navbar__logo img {
        height: 32px;
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: rgba(12, 12, 12, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right var(--speed-fast);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .navbar__menu.active {
        right: 0;
    }

    .navbar__link {
        font-size: 1.1rem;
        letter-spacing: 3px;
        padding: 12px 20px;
    }

    /* --- Hero celular --- */
    .hero {
        height: 100vh;
        height: 100dvh;
    }

    .hero__content {
        padding: 0 16px;
    }

    .hero__logo img {
        max-width: 300px;
        width: 75%;
    }

    .hero__tagline {
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero__buttons {
        gap: 12px;
    }

    .hero__scroll {
        bottom: 25px;
    }

    .preloader__logo {
        width: 200px;
    }

    /* --- Video section celular --- */
    .video-section {
        padding: 30px 0;
    }

    .video-section__wrapper {
        max-width: 90%;
    }

    .video-section__player {
        border-radius: 12px;
    }

    .video-section__play-overlay {
        border-radius: 12px;
    }

    .video-section__play-btn {
        width: 60px;
        height: 60px;
    }

    .video-section__play-btn i {
        font-size: 1.3rem;
    }

    .video-section__play-text {
        font-size: 0.65rem;
    }

    /* --- About celular --- */
    .about__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about__image {
        height: 350px;
        border-radius: 12px;
    }

    .about__name {
        text-align: center;
        font-size: 1.5rem;
    }

    .about__name::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about__subtitle {
        text-align: center;
        font-size: 1rem;
    }

    .about__bio {
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .about__stats {
        justify-content: center;
        gap: 30px;
    }

    .about__stat-number {
        font-size: 1.8rem;
    }

    .about__gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    a.about__gallery-item {
        border-radius: 8px;
    }

    .about__gallery-overlay {
        border-radius: 8px;
    }

    /* --- Timeline celular --- */
    .about__timeline {
        margin-top: 50px;
        gap: 30px;
        margin-bottom: 50px;
    }

    .about__timeline-block {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .about__timeline-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .about__timeline-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .about__timeline-icon i {
        font-size: 1.1rem;
    }

    .about__timeline-title {
        font-size: 1.15rem;
        letter-spacing: 1px;
    }

    .about__timeline-text {
        font-size: 0.9rem;
        text-align: center;
    }

    .about__timeline-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about__timeline-card {
        padding: 20px;
    }

    /* --- Music celular --- */
    .music__release {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }

    .music__cover {
        aspect-ratio: 16 / 10;
    }

    .music__cover-play {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .music__info {
        padding: 25px 20px 30px;
    }

    .music__label {
        align-self: center;
    }

    .music__song-title {
        text-align: center;
        font-size: 1.5rem;
    }

    .music__description {
        text-align: center;
        font-size: 0.9rem;
    }

    .music__platforms {
        justify-content: center;
    }

    .music__platform-btn {
        padding: 12px 20px;
        min-height: 48px;
    }

    .music__video-container {
        border-radius: 12px;
    }

    .music__video-heading {
        font-size: 1.3rem;
    }

    /* --- Videos gallery: 1 por fila en celular --- */
    .videos-gallery__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .videos-gallery__item {
        border-radius: 10px;
    }

    /* --- Footer celular --- */
    .footer {
        padding: 50px 0 30px;
    }

    .footer__logo img {
        height: 40px;
    }

    .footer__social {
        gap: 12px;
        margin-bottom: 35px;
    }

    .footer__social-link {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .footer__bottom {
        font-size: 0.8rem;
    }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — CELULARES PEQUEÑOS (480px)
   ═══════════════════════════════════════════ */

@media (max-width: 480px) {
    :root {
        --section-padding: 50px 0;
    }

    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header__tag {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .section-header__title {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    /* Fix scroll horizontal celular pequeño */
    .reveal-left {
        transform: translateX(-15px);
    }

    .reveal-right {
        transform: translateX(15px);
    }

    .reveal-up {
        transform: translateY(25px);
    }

    /* Hero */
    .hero__logo img {
        max-width: 250px;
        width: 70%;
    }

    .hero__title {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .hero__tagline {
        font-size: 0.8rem;
        margin-bottom: 25px;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 10px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.8rem;
    }

    .preloader__logo {
        width: 180px;
    }

    /* Botón contacto directo */
    .btn-contacto-directo {
        padding: 14px 20px;
        font-size: 0.85rem;
    }

    /* Video section */
    .video-section {
        padding: 20px 0;
    }

    .video-section__wrapper {
        max-width: 95%;
    }

    .video-section__player {
        border-radius: 10px;
    }

    .video-section__play-overlay {
        border-radius: 10px;
    }

    .video-section__play-btn {
        width: 50px;
        height: 50px;
    }

    .video-section__play-btn i {
        font-size: 1.1rem;
        margin-left: 3px;
    }

    .video-section__play-text {
        font-size: 0.6rem;
    }

    /* About */
    .about__image {
        height: 280px;
    }

    .about__name {
        font-size: 1.3rem;
    }

    .about__bio {
        font-size: 0.9rem;
    }

    .about__stats {
        flex-direction: column;
        gap: 20px;
    }

    .about__gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about__gallery-title {
        font-size: 1.2rem;
    }

    .about__subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .about__gallery-overlay i {
        font-size: 1.4rem;
    }

    /* Timeline celular pequeño */
    .about__timeline {
        margin-top: 35px;
        gap: 25px;
        margin-bottom: 35px;
    }

    .about__timeline-block {
        padding: 20px 16px;
    }

    .about__timeline-title {
        font-size: 1rem;
    }

    .about__timeline-text {
        font-size: 0.85rem;
    }

    .about__timeline-card {
        padding: 18px 14px;
    }

    .about__timeline-card-title {
        font-size: 0.95rem;
    }

    .about__timeline-card-text {
        font-size: 0.85rem;
    }

    .about__timeline-year {
        font-size: 0.75rem;
        padding: 3px 12px;
    }

    /* Music */
    .music__info {
        padding: 20px 16px 25px;
    }

    .music__song-title {
        font-size: 1.3rem;
    }

    .music__description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .music__platform-btn {
        font-size: 0.75rem;
        padding: 10px 16px;
    }

    .music__video-container {
        border-radius: 10px;
    }

    /* Videos gallery celular pequeño */
    .videos-gallery__grid {
        gap: 16px;
    }

    .videos-gallery__item {
        border-radius: 8px;
    }

    /* Footer */
    .footer__social {
        gap: 10px;
    }

    .footer__social-link {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }
}


/* ═══════════════════════════════════════════
   CELULARES MUY PEQUEÑOS (360px)
   ═══════════════════════════════════════════ */

@media (max-width: 360px) {
    .reveal-left {
        transform: translateX(-10px);
    }

    .reveal-right {
        transform: translateX(10px);
    }

    .reveal-up {
        transform: translateY(20px);
    }

    .hero__logo img {
        max-width: 200px;
    }

    .hero__title {
        font-size: 1.6rem;
        letter-spacing: 3px;
    }

    .hero__tagline {
        font-size: 0.75rem;
    }

    .about__image {
        height: 240px;
    }

    .about__stats {
        gap: 15px;
    }

    .about__stat-number {
        font-size: 1.5rem;
    }

    .footer__social-link {
        width: 42px;
        height: 42px;
    }
}


/* ═══════════════════════════════════════════
   MEJORAS PARA PANTALLAS LANDSCAPE
   (celular acostado)
   ═══════════════════════════════════════════ */

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        padding: 80px 20px 40px;
    }

    .hero__logo img {
        max-width: 200px;
    }

    .hero__tagline {
        margin-bottom: 20px;
    }

    .hero__scroll {
        display: none;
    }

    .preloader__logo {
        width: 120px;
    }
}