:root {
    --activa-bg: #111111;
    --activa-bg-soft: #171717;
    --activa-card: #202020;
    --activa-text: #f2f2f2;
    --activa-muted: #bdbdbd;
    --activa-accent: #1ca2cd;
    --activa-accent-dark: #168db4;
    --activa-border: rgba(255, 255, 255, 0.12);
    --activa-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.activa-page {
    background: var(--activa-bg);
    color: var(--activa-text);
}

.activa-page a {
    color: var(--activa-accent);
}

.activa-page a:hover {
    color: #6ad2ef;
    text-decoration: none;
}

.activa-nav {
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.activa-nav .navbar-brand,
.activa-nav .nav-link {
    color: #ffffff;
}

.activa-nav .nav-link:hover,
.activa-nav .nav-link:focus {
    color: var(--activa-accent);
}

.activa-nav .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
}

.activa-logo {
    font-weight: 900;
    letter-spacing: -0.04em;
}

.activa-hero {
    position: relative;
    min-height: 100vh;
    padding: 130px 0 88px;
    overflow: hidden;
    background-image:
        radial-gradient(circle at top right, rgba(28, 162, 205, 0.24), transparent 36%),
        radial-gradient(circle at left center, rgba(28, 162, 205, 0.14), transparent 28%),
        linear-gradient(rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.55)),
        var(--activa-hero-image, linear-gradient(180deg, #101010 0%, #0b0b0b 100%));
    background-position: top right, left center, center, center;
    background-size: auto, auto, auto, cover;
    background-repeat: no-repeat;
}

.activa-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.38));
    opacity: 1;
}

.activa-hero > .container {
    position: relative;
    z-index: 1;
}

.activa-hero-copy {
    max-width: 760px;
}

.activa-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 8px 16px;
    border: 1px solid rgba(28, 162, 205, 0.45);
    border-radius: 999px;
    background: rgba(28, 162, 205, 0.12);
    color: var(--activa-accent);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.activa-badge.is-live {
    background: rgba(29, 185, 84, 0.16);
    border-color: rgba(29, 185, 84, 0.5);
    color: #8df0b0;
}

.activa-eyebrow {
    color: #d8d8d8;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.activa-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.9rem, 8vw, 6rem);
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.activa-lead {
    max-width: 760px;
    margin-bottom: 32px;
    color: var(--activa-muted);
    font-size: 1.2rem;
    line-height: 1.7;
}

.activa-countdowns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.activa-countdown-card {
    padding: 18px 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(5, 8, 14, 0.58);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.activa-countdown-card.is-live {
    border-color: rgba(29, 185, 84, 0.28);
    background: rgba(10, 22, 14, 0.72);
}

.activa-countdown-card-primary {
    border-color: rgba(28, 162, 205, 0.26);
}

.activa-countdown-label {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.activa-countdown-value {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.activa-countdown-value.is-live {
    color: #8df0b0;
}

.activa-countdown-chunk {
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
    min-width: 62px;
}

.activa-countdown-number {
    display: inline-block;
    min-width: 2ch;
    font-variant-numeric: tabular-nums;
}

.activa-countdown-unit {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.activa-countdown-meta {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
    line-height: 1.55;
}

.activa-btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 28px;
    border: 0;
    border-radius: 999px;
    background: var(--activa-accent);
    color: #ffffff !important;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(28, 162, 205, 0.2);
}

.activa-btn-main:hover {
    background: var(--activa-accent-dark);
    color: #ffffff !important;
}

.activa-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #ffffff !important;
    font-weight: 700;
    background: transparent;
}

.activa-btn-outline:hover {
    border-color: rgba(28, 162, 205, 0.5);
    color: var(--activa-accent) !important;
}

.activa-btn-disabled {
    cursor: default;
    opacity: 0.55;
    pointer-events: none;
}

.activa-btn-disabled-soft {
    opacity: 0.82;
    cursor: not-allowed;
}

.activa-icon-tiktok {
    display: inline-flex;
    width: 1.05em;
    height: 1.05em;
    vertical-align: -0.12em;
}

.activa-icon-tiktok svg {
    display: block;
    width: 100%;
    height: 100%;
}

.activa-note {
    color: var(--activa-muted);
    font-size: 0.95rem;
}

@media (min-width: 992px) {
    .activa-hero::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.03) 42%, rgba(0, 0, 0, 0) 100%);
    }

    .activa-hero-copy {
        position: relative;
        z-index: 1;
        width: min(100%, 580px);
        max-width: 580px;
        padding: 26px 28px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .activa-hero-copy::before {
        content: "";
        position: absolute;
        inset: -18px;
        z-index: -1;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 32px;
        background: linear-gradient(180deg, rgba(3, 7, 12, 0.9), rgba(0, 0, 0, 0.94));
        opacity: 0.94;
        box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
        backdrop-filter: blur(12px);
    }

    .activa-badge {
        background: rgba(6, 17, 24, 0.92);
        border-color: rgba(28, 162, 205, 0.72);
        color: #75ddf8;
    }

    .activa-countdown-card {
        background: rgba(4, 10, 18, 0.76);
        box-shadow: 0 20px 36px rgba(0, 0, 0, 0.24);
    }

    .activa-countdown-label {
        height: 2.6em;
        overflow: hidden;
    }

    .activa-countdown-value {
        flex-wrap: nowrap;
        font-size: 1.2rem;
        gap: 6px;
    }

    .activa-countdown-chunk {
        min-width: 46px;
    }

    .activa-eyebrow,
    .activa-hero h1,
    .activa-lead,
    .activa-note {
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
    }

    .activa-eyebrow,
    .activa-hero h1 {
        color: #ffffff;
    }

    .activa-hero h1 {
        font-size: clamp(3rem, 5vw, 4.6rem);
    }

    .activa-lead {
        color: #ffffff;
        font-size: 1.14rem;
        line-height: 1.72;
    }

    .activa-note {
        color: rgba(255, 255, 255, 0.94);
    }

    .activa-btn-outline {
        background: rgba(0, 0, 0, 0.72);
        border-color: rgba(255, 255, 255, 0.68);
    }
}

.activa-section {
    padding: 44px 0;
}

.activa-section-alt {
    background: #151515;
}

.activa-title {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.05em;
}

.activa-subtitle {
    max-width: 780px;
    color: var(--activa-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.activa-stream-card,
.activa-box,
.activa-press-box,
.activa-video-box {
    height: 100%;
    border: 1px solid var(--activa-border);
    border-radius: 24px;
    box-shadow: var(--activa-shadow);
}

.activa-stream-card {
    display: flex;
    align-items: center;
    padding: 12px;
    background: var(--activa-card);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.activa-stream-card:hover {
    transform: translateY(-4px);
    background: #262626;
    border-color: rgba(28, 162, 205, 0.48);
}

.activa-stream-card h3,
.activa-stream-card p {
    color: inherit;
}

.activa-stream-icon {
    flex: 0 0 auto;
    width: 54px;
    margin-right: 18px;
    font-size: 2.2rem;
    text-align: center;
}

.activa-stream-icon .activa-brand-icon {
    display: block;
    width: 1em;
    height: 1em;
    margin: 0 auto;
}

.activa-stream-copy {
    min-width: 0;
}

.activa-stream-copy h3 {
    margin-bottom: 6px;
}

.activa-spotify {
    color: #1db954;
}

.activa-apple {
    color: #ffffff;
}

.activa-youtube {
    color: #ff0000;
}

.activa-youtube-music {
    color: #ff0033;
}

.activa-soundcloud {
    color: #ff5500;
}

.activa-amazon {
    color: #00a8e1;
}

.activa-deezer {
    color: #ff0092;
}

.activa-tidal {
    color: #ffffff;
}

.activa-box,
.activa-video-box {
    padding: 34px;
    background: var(--activa-bg-soft);
}

.activa-video-player {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 340px;
    border-radius: 18px;
    background: #000000;
}

.activa-video-player img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
}

.activa-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.3) 42%, rgba(0, 0, 0, 0.68) 100%);
}

.activa-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 0, 0, 0.9);
    color: #ffffff;
    font-size: 1.9rem;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.activa-video-play i {
    margin-left: 4px;
}

.activa-video-player:hover .activa-video-play {
    background: rgba(204, 0, 0, 0.96);
    transform: translate(-50%, -50%) scale(1.05);
}

.activa-video-meta {
    position: absolute;
    right: 20px;
    bottom: 18px;
    left: 20px;
    color: #ffffff;
    font-size: 0.98rem;
    line-height: 1.6;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.activa-artwork {
    overflow: hidden;
    background: #101010;
    padding: 0;
}

.activa-artwork img {
    display: block;
    width: 100%;
    height: auto;
}

.activa-download-panel {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .activa-download-panel {
        margin-left: 0;
        margin-right: auto;
    }
}

.activa-omolink-mbb-link:hover .activa-omolink-mbb {
    border-color: rgba(28, 162, 205, 0.48);
    transform: translateY(-2px);
}

.activa-omolink-mbb {
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.activa-download-stores {
    padding: 24px;
    background: var(--activa-card);
}

.activa-store-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.activa-store-badge {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.activa-store-badge:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.activa-store-badge img {
    display: block;
    height: 46px;
    width: auto;
}

.activa-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    padding: 30px;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    color: var(--activa-muted);
    text-align: center;
    line-height: 1.7;
}

.activa-lyrics {
    margin: 0;
    white-space: pre-line;
    color: #e9e9e9;
    font-size: 1.02rem;
    line-height: 1.85;
}

.activa-lyrics-locked {
    text-align: center;
}

.activa-lyrics-lock-icon {
    margin-bottom: 14px;
    color: #75ddf8;
    font-size: 2rem;
}

.activa-lyrics-lock-title {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
}

.activa-lyrics-lock-copy {
    max-width: 640px;
    margin: 0 auto;
    color: var(--activa-muted);
    line-height: 1.8;
}

.activa-press-box {
    padding: 38px;
    background: linear-gradient(135deg, rgba(28, 162, 205, 0.18), rgba(255, 255, 255, 0.04));
    border-color: rgba(28, 162, 205, 0.28);
}

.activa-social {
    gap: 16px;
}

.activa-footer {
    padding: 36px 0;
    background: #0b0b0b;
    border-top: 1px solid var(--activa-border);
    color: var(--activa-muted);
}

.activa-footer a {
    color: #ffffff;
}

#escuchar,
#descargar-omolink,
#video,
#letra,
#historia,
#prensa,
#redes {
    scroll-margin-top: 92px;
}

@media (max-width: 991.98px) {
    .activa-hero {
        min-height: auto;
        padding: 118px 0 64px;
        background-image:
            radial-gradient(circle at top right, rgba(28, 162, 205, 0.24), transparent 36%),
            radial-gradient(circle at left center, rgba(28, 162, 205, 0.14), transparent 28%),
            linear-gradient(rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.55)),
            var(--activa-hero-image-mobile, var(--activa-hero-image, linear-gradient(180deg, #101010 0%, #0b0b0b 100%)));
        background-position: top right, left center, center, center top;
    }

    .activa-hero::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.5) 22%, rgba(0, 0, 0, 0.72) 62%, rgba(0, 0, 0, 0.9) 100%);
    }

    .activa-hero-copy {
        padding: 24px 20px;
        margin: 0 -4px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.58));
        box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
    }

    .activa-badge {
        background: rgba(6, 17, 24, 0.88);
        border-color: rgba(28, 162, 205, 0.7);
        color: #6ad2ef;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    }

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

    .activa-countdown-card {
        padding: 16px;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.48);
    }

    .activa-countdown-value {
        font-size: 1.35rem;
        min-height: 48px;
    }

    .activa-countdown-chunk {
        min-width: 56px;
    }

    .activa-eyebrow,
    .activa-hero h1,
    .activa-lead,
    .activa-note {
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.78);
    }

    .activa-hero h1 {
        font-size: clamp(2.6rem, 10vw, 4.1rem);
    }

    .activa-lead {
        color: #f0f0f0;
        font-size: 1.08rem;
        line-height: 1.65;
    }

    .activa-note {
        color: #ffffff;
    }

    .activa-btn-main,
    .activa-btn-outline {
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
    }

    .activa-btn-outline {
        background: rgba(0, 0, 0, 0.48);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .activa-video-player,
    .activa-video-player img,
    .activa-placeholder {
        min-height: 240px;
    }

    .activa-stream-card {
        align-items: flex-start;
    }

    .activa-stream-icon {
        width: 46px;
        margin-right: 14px;
        font-size: 1.95rem;
    }

    .activa-video-play {
        width: 76px;
        height: 54px;
        font-size: 1.45rem;
    }
}

.activa-press-links {
    padding: 32px 38px;
}

.activa-press-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activa-press-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--activa-border);
}

.activa-press-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.activa-press-list a {
    color: #ffffff;
    font-weight: 600;
    line-height: 1.5;
}

.activa-press-list a:hover {
    color: var(--activa-accent);
}

.activa-press-source {
    display: inline-block;
    margin-top: 6px;
    color: var(--activa-muted);
    font-size: 0.92rem;
}