:root {
    --bg: #fcfbff;
    --bg-secondary: #f5f1ff;
    --bg-tertiary: #efe7ff;
    --text: #2a2140;
    --muted: #6d6384;
    --accent: #ff7db8;
    --accent-strong: #ffb347;
    --accent-soft: rgba(255, 125, 184, 0.12);
    --card: rgba(255, 255, 255, 0.82);
    --border: rgba(112, 95, 150, 0.14);
    --glow-blue: rgba(128, 174, 255, 0.18);
    --glow-gold: rgba(255, 196, 93, 0.2);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 190, 90, 0.16), transparent 26%),
        radial-gradient(circle at 85% 12%, rgba(132, 188, 255, 0.16), transparent 24%),
        linear-gradient(180deg, #fffdfd 0%, #f8f4ff 36%, #f6f7ff 72%, #fffefe 100%);
    color: var(--text);
    line-height: 1.75;
    position: relative;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    width: 32rem;
    height: 32rem;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: -1;
}

body::before {
    top: -8rem;
    left: -8rem;
    background: rgba(255, 191, 99, 0.14);
}

body::after {
    right: -10rem;
    top: 16rem;
    background: rgba(128, 174, 255, 0.1);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 20;
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    box-shadow: none;
    transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(92, 69, 138, 0.78);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 28px rgba(47, 28, 84, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 0 1rem;
    min-height: 5.4rem;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-shadow: 0 0 24px rgba(255, 179, 71, 0.18);
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.main-nav a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.94);
    font-weight: 600;
    transition: color 0.25s ease;
}

.main-nav a:hover {
    color: #ffd4ea;
}

.hero {
    min-height: 94vh;
    padding: 8.8rem 0 3.2rem;
    background:
        radial-gradient(circle at 50% 16%, rgba(244, 66, 224, 0.34), transparent 18%),
        radial-gradient(circle at 26% 44%, rgba(74, 129, 255, 0.3), transparent 22%),
        radial-gradient(circle at 78% 42%, rgba(68, 215, 255, 0.16), transparent 18%),
        linear-gradient(180deg, #130126 0%, #1a0340 42%, #110225 100%);
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 1, 28, 0.92) 0%, rgba(12, 1, 28, 0.58) 44%, rgba(12, 1, 28, 0.14) 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.hero::before {
    top: 3rem;
    width: min(82vw, 840px);
    height: min(82vw, 840px);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    border: 4px solid rgba(255, 94, 219, 0.4);
    filter: drop-shadow(0 0 18px rgba(255, 94, 219, 0.42));
    opacity: 0.9;
}

.hero::after {
    top: 5.4rem;
    width: min(62vw, 620px);
    height: min(62vw, 620px);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    border: 3px solid rgba(91, 182, 255, 0.24);
    filter: drop-shadow(0 0 22px rgba(91, 182, 255, 0.28));
    opacity: 0.84;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 420px);
    gap: 3rem;
    align-items: center;
}

.hero-copy {
    max-width: 680px;
}

.hero-topline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffe7fb;
    background: linear-gradient(135deg, rgba(255, 65, 191, 0.22), rgba(124, 96, 255, 0.14));
    border: 1px solid rgba(255, 170, 230, 0.2);
}

.hero-pill-alt {
    background: linear-gradient(135deg, rgba(91, 182, 255, 0.22), rgba(255, 65, 191, 0.14));
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffbe63;
    text-shadow: 0 0 14px rgba(255, 190, 99, 0.24);
}

.hero h1 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(4rem, 8vw, 7.2rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 18px 46px rgba(6, 2, 20, 0.48);
}

.hero-logo-wrap {
    line-height: 1;
}

.hero-logo {
    display: block;
    width: min(100%, 34rem);
    height: auto;
    filter:
        drop-shadow(0 0 10px rgba(255, 72, 177, 0.45))
        drop-shadow(0 0 28px rgba(255, 72, 177, 0.28));
}

.hero h1 span {
    display: block;
    color: #fffaff;
    -webkit-text-stroke: 2px rgba(255, 72, 177, 0.95);
    text-shadow:
        0 0 10px rgba(255, 72, 177, 0.78),
        0 0 24px rgba(255, 72, 177, 0.52),
        0 0 54px rgba(255, 72, 177, 0.2);
}

.hero p {
    max-width: 600px;
    margin: 1.4rem 0 2rem;
    color: rgba(244, 237, 255, 0.82);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-self: stretch;
}

.hero-visual::before,
.hero-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(24px);
    pointer-events: none;
}

.hero-visual::before {
    width: 18rem;
    height: 18rem;
    top: 18%;
    left: 3%;
    background: rgba(255, 72, 177, 0.24);
}

.hero-visual::after {
    width: 16rem;
    height: 16rem;
    right: -2%;
    bottom: 13%;
    background: rgba(91, 182, 255, 0.22);
}

.hero-cutout-blur {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.82;
    transform: translateY(1.2rem) scale(1.08);
    filter: blur(10px) saturate(1.14) brightness(0.98);
}

.hero-cutout {
    width: min(100%, 500px);
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 18px 38px rgba(13, 5, 34, 0.36)) saturate(1.02);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #ff2dac, #ff8a54);
    color: #fff;
    box-shadow: 0 18px 40px rgba(255, 45, 172, 0.28);
}

.btn-secondary {
    border: 1px solid rgba(255, 170, 230, 0.22);
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(119, 94, 255, 0.16));
}

.section {
    padding: 6rem 0;
    position: relative;
}

.intro {
    padding-top: 2rem;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 190, 90, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(63, 43, 99, 0.96), rgba(74, 50, 116, 0.94));
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

.highlight-card,
.contact-card {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(23, 12, 45, 0.22);
}

.intro h2,
.intro p {
    color: #f8f3ff;
}

.contact-section h2,
.contact-section p,
.contact-list li,
.contact-list a,
.contact-card h3 {
    color: #33234d;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading span {
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.22em;
    color: #ffd36f;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.4rem);
    letter-spacing: -0.04em;
}

.section-heading.white span,
.section-heading.white h2 {
    color: #3f2b63;
}

.music-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.track-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 239, 255, 0.9));
    border: 1px solid rgba(112, 95, 150, 0.12);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 18px 50px rgba(189, 174, 219, 0.14);
}

.player-card {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 190, 90, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 239, 255, 0.9));
    border: 1px solid rgba(112, 95, 150, 0.12);
    animation: fadeInUp 0.8s ease both;
    box-shadow: 0 28px 80px rgba(189, 174, 219, 0.16);
}

.player-left h3 {
    margin: 0.4rem 0 1rem;
    font-size: 2rem;
}

.player-left p,
.player-note {
    color: var(--muted);
    font-size: 0.98rem;
}

.player-right audio {
    width: 100%;
    border-radius: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

.player-note {
    margin-top: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.track-info {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.track-number {
    font-weight: 700;
    color: #3f2b63;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.6rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.social-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.social-highlight-card {
    position: relative;
    display: block;
    min-height: 320px;
    overflow: hidden;
    border-radius: 28px;
    color: #fff;
    text-decoration: none;
    isolation: isolate;
    background-color: rgba(34, 20, 61, 0.6);
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    animation: fadeInUp 0.8s ease both;
}

.social-highlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1);
    transition: transform 0.55s ease, filter 0.35s ease;
    z-index: -2;
}

.social-highlight-card::after {
    content: "Visitar red";
    position: absolute;
    left: 2rem;
    bottom: 1.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.social-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px rgba(8, 5, 20, 0.3);
    border-color: rgba(255, 255, 255, 0.24);
}

.social-highlight-card:hover::before {
    transform: scale(1.08);
    filter: saturate(1.08);
}

.social-highlight-card:hover::after {
    opacity: 1;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.2);
}

.highlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 13, 34, 0.08), rgba(18, 13, 34, 0.78));
    transition: background 0.35s ease, opacity 0.35s ease;
    z-index: -1;
}

.social-highlight-card:hover .highlight-overlay {
    background: linear-gradient(180deg, rgba(8, 8, 16, 0.1), rgba(8, 8, 16, 0.68));
}

.highlight-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 2rem 5.75rem;
    gap: 0.45rem;
    transform: translateY(0);
    transition: transform 0.35s ease;
}

.social-highlight-card:hover .highlight-content {
    transform: translateY(-2.8rem);
}

.highlight-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.social-highlight-card h3 {
    margin: 0;
    font-size: 2.1rem;
    line-height: 1.05;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.social-highlight-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.social-highlight-card.instagram::before { background-image: url('../images/hero.jpg'); }
.social-highlight-card.youtube::before { background-image: url('../images/hero.jpg'); }
.social-highlight-card.tiktok::before { background-image: url('../images/hero.jpg'); }
.social-highlight-card.facebook::before { background-image: url('../images/hero.jpg'); }

.social-highlight-card.instagram::after { content: "Ir a Instagram"; }
.social-highlight-card.youtube::after { content: "Ver en YouTube"; }
.social-highlight-card.tiktok::after { content: "Abrir TikTok"; }
.social-highlight-card.facebook::after { content: "Entrar a Facebook"; }

.social-highlight-card.instagram .highlight-content,
.social-highlight-card.tiktok .highlight-content {
    align-items: flex-start;
}

.social-highlight-card.youtube .highlight-content,
.social-highlight-card.facebook .highlight-content {
    align-items: flex-start;
}

.social-highlight-card.instagram { background-color: #d63d8e; }
.social-highlight-card.youtube { background-color: #ff3333; }
.social-highlight-card.tiktok { background-color: #25f4ee; }
.social-highlight-card.facebook { background-color: #1877f2; }

.social-highlight-card.instagram .highlight-overlay { background: linear-gradient(180deg, rgba(214, 61, 142, 0.20), rgba(14, 10, 22, 0.85)); }
.social-highlight-card.youtube .highlight-overlay { background: linear-gradient(180deg, rgba(255, 51, 51, 0.20), rgba(14, 10, 22, 0.85)); }
.social-highlight-card.tiktok .highlight-overlay { background: linear-gradient(180deg, rgba(37, 244, 238, 0.16), rgba(14, 10, 22, 0.85)); }
.social-highlight-card.facebook .highlight-overlay { background: linear-gradient(180deg, rgba(24, 119, 242, 0.18), rgba(14, 10, 22, 0.85)); }

.social-icon {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.social-icon.instagram { background: #d63d8e; }
.social-icon.youtube { background: #ff3333; }
.social-icon.tiktok { background: #25f4ee; color: #07070f; }
.social-icon.facebook { background: #1877f2; }
.social-icon.spotify { background: #1db954; }

.social-card span {
    color: var(--text);
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
    min-height: 320px;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(255, 177, 27, 0.1), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-empty {
    padding: 1.5rem;
    text-align: center;
}

.gallery-note {
    margin-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
}

.gallery-section {
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 190, 90, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(63, 43, 99, 0.98), rgba(74, 50, 116, 0.95));
}

.gallery-section .section-heading h2,
.gallery-section .section-heading span {
    color: #f8f3ff;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    gap: 1rem;
}

.contact-list li strong {
    display: inline-block;
    width: 95px;
    color: #3f2b63;
}

.contact-card h3 {
    margin-top: 0;
    font-size: 1.7rem;
}

.contact-action {
    margin-top: 1.5rem;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2rem 0;
    background: linear-gradient(180deg, rgba(63, 43, 99, 0.98), rgba(52, 35, 84, 1));
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 900px) {
    .grid-2,
    .music-grid,
    .socials-grid,
    .gallery-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 88vh;
        padding: 7.4rem 0 2.4rem;
        background-position: center top;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero::before {
        width: min(92vw, 720px);
        height: min(92vw, 720px);
    }

    .hero::after {
        width: min(72vw, 520px);
        height: min(72vw, 520px);
    }

    .social-highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        gap: 1rem;
    }

    .hero {
        min-height: 82vh;
        padding: 6.3rem 0 2rem;
    }

    .hero h1 {
        font-size: 3.1rem;
    }

    .hero-logo {
        width: min(100%, 28rem);
    }

    .hero p {
        font-size: 0.95rem;
        margin: 1.2rem auto 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.9rem;
    }

    .hero-cutout {
        width: min(100%, 370px);
    }

    .hero-cutout-blur {
        transform: translateY(0.8rem) scale(1.04);
        filter: blur(8px) saturate(1.1);
    }

    .social-highlight-card {
        min-height: 280px;
    }

    .social-highlight-card:hover .highlight-content {
        transform: translateY(-2.2rem);
    }
}
