/* ============================================================
   QUINT PRESS KIT — STYLES
   Dark underground aesthetic | Minimal Bass / Electronic
   Palette: #06040E bg · #8B3FD0 purple · #ffffff text
   ============================================================ */

/* -------------------------------------------------------
   CSS Variables
------------------------------------------------------- */
:root {
    --primary:        #8B3FD0;
    --primary-light:  #B06EFF;
    --primary-dark:   #5C1D9E;
    --primary-glow:   rgba(139, 63, 208, 0.55);
    --primary-soft:   rgba(139, 63, 208, 0.15);
    --primary-subtle: rgba(139, 63, 208, 0.08);

    --bg:             #06040E;
    --bg-2:           #09061A;
    --bg-card:        #0E0A1C;
    --bg-card-hover:  #130E24;

    --text:           #ffffff;
    --text-muted:     #888888;
    --text-dim:       #444444;

    --border:         rgba(139, 63, 208, 0.25);
    --border-subtle:  rgba(255, 255, 255, 0.06);

    --font:           'Inter', sans-serif;
    --font-display:   'Bebas Neue', sans-serif;

    --nav-h:          68px;
    --max-w:          1200px;
    /* Mesma margem horizontal do hero — alinha header com o texto */
    --page-gutter:    clamp(2rem, 7vw, 7rem);
    /* Safe area (notch / home indicator) — mobile */
    --safe-top:       env(safe-area-inset-top, 0px);
    --safe-left:      env(safe-area-inset-left, 0px);
    --safe-right:     env(safe-area-inset-right, 0px);
    --nav-total:      calc(var(--nav-h) + var(--safe-top));
    --radius:         4px;

    --ease:           0.3s ease;
    --ease-slow:      0.7s ease;
}

/* -------------------------------------------------------
   Reset & Base
------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Ancoras (#musicas etc.) respeitam a navbar fixa + safe area */
    scroll-padding-top: calc(var(--nav-total) + 0.75rem);
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

ul {
    list-style: none;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

/* -------------------------------------------------------
   Layout
------------------------------------------------------- */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    position: relative;
    z-index: 1;
}

/* -------------------------------------------------------
   Utility
------------------------------------------------------- */
.text-glow {
    color: var(--primary);
    text-shadow:
        0 0 20px var(--primary-glow),
        0 0 50px rgba(139, 63, 208, 0.3);
}

.mt-btn { margin-top: 2rem; }

.section-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--primary);
    text-transform: uppercase;
    padding: 0.28rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--primary-subtle);
    margin-bottom: 1.2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.03em;
    margin-bottom: 0.8rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto;
}

/* -------------------------------------------------------
   BUTTONS
------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.9rem;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 63, 208, 0.35);
}
.btn-primary:hover {
    background: var(--primary-light);
    box-shadow: 0 6px 30px rgba(139, 63, 208, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(139, 63, 208, 0.2);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.btn-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

.btn-instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: #fff;
}
.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(253, 29, 29, 0.45);
    filter: brightness(1.1);
}

.btn-email {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-email:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(139, 63, 208, 0.2);
    transform: translateY(-2px);
}

/* -------------------------------------------------------
   NAVIGATION
------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: var(--safe-top);
    height: var(--nav-total);
    z-index: 1000;
    transition: background var(--ease), border-color var(--ease);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-color: var(--border-subtle);
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 calc(var(--page-gutter) + var(--safe-right)) 0 calc(var(--page-gutter) + var(--safe-left));
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ---- Language Switcher — dropdown ---- */
/* Fixo na mesma coluna do hero (fora do bloco centralizado de 1200px) */
.lang-switcher {
    position: fixed;
    left: calc(var(--page-gutter) + var(--safe-left));
    top: var(--safe-top);
    z-index: 1001;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px 6px 9px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 8, 8, 0.7);
    backdrop-filter: blur(12px);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
}

.lang-trigger:hover,
.lang-switcher.open .lang-trigger {
    border-color: rgba(139, 63, 208, 0.4);
    box-shadow: 0 0 14px rgba(139, 63, 208, 0.15), 0 2px 10px rgba(0, 0, 0, 0.4);
    background: rgba(14, 6, 6, 0.85);
}

.lang-chevron {
    width: 9px;
    height: 9px;
    opacity: 0.5;
    transition: transform 0.22s ease, opacity 0.2s ease;
    flex-shrink: 0;
}

.lang-switcher.open .lang-chevron {
    transform: rotate(180deg);
    opacity: 0.9;
}

.lang-flag {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

.lang-code {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 9px);
    left: 0;
    min-width: 152px;
    background: rgba(6, 6, 6, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 9999;
    backdrop-filter: blur(24px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(139, 63, 208, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.2s cubic-bezier(0.34, 1.2, 0.64, 1);
    transform-origin: top left;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 11px;
    border-radius: 9px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: background 0.14s ease, color 0.14s ease;
    width: 100%;
    text-align: left;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.9);
}

.lang-option--active {
    background: linear-gradient(135deg, rgba(139, 63, 208, 0.18) 0%, rgba(40, 10, 80, 0.1) 100%);
    color: #fff;
}

.lang-option--active:hover {
    background: linear-gradient(135deg, rgba(139, 63, 208, 0.26) 0%, rgba(40, 10, 80, 0.16) 100%);
}

@media (max-width: 560px) {
    /* Área de toque ~44px (Apple HIG) sem inflar demais o pill */
    .lang-trigger {
        padding: 10px 11px;
        gap: 6px;
        min-height: 44px;
        min-width: 44px;
        justify-content: center;
    }
    .lang-code { display: none; }
    .lang-dropdown { min-width: 134px; }
}

/* Keep old logo-dot for footer fallback */
.logo-dot {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.nav-link {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius);
    transition: color var(--ease), text-shadow var(--ease);
    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.85),
        0 0 1px rgba(0, 0, 0, 0.9);
}
.nav-link:hover,
.nav-link.active {
    color: #B06EFF;
    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.85),
        0 0 18px rgba(139, 63, 208, 0.45);
}

.nav-link.nav-cta {
    color: var(--primary);
    border: 1px solid var(--border);
    padding: 0.5rem 1.1rem;
    background: var(--primary-subtle);
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.75),
        0 0 12px rgba(139, 63, 208, 0.25);
}
.nav-link.nav-cta:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: all var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------
   HERO  —  Inspired by modern split hero (circular visual right)
------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    overflow: hidden;
    padding: calc(var(--nav-total) + 5rem) calc(var(--page-gutter) + var(--safe-right)) 5rem calc(var(--page-gutter) + var(--safe-left));
    background: var(--bg);
    /* Linha superior discreta — acabamento editorial */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Só cobre o lado esquerdo para o texto ser legível — foto intocada */
    background: linear-gradient(
        90deg,
        rgba(6, 4, 14, 0.82) 0%,
        rgba(6, 4, 14, 0.36) 36%,
        transparent 55%
    );
    z-index: 1;
    pointer-events: none;
}

/* Glow roxo ambiente — halo atrás da figura + canto esquerdo */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 68% at 76% 44%, rgba(139, 63, 208, 0.32) 0%, rgba(139, 63, 208, 0.08) 50%, transparent 68%),
        radial-gradient(ellipse 44% 48% at 2% 90%, rgba(72, 28, 120, 0.52) 0%, transparent 55%);
    animation: heroAmbient 20s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
    .hero::after,
    .hero-grain,
    .hero-scanner::before,
    .hero-logo-wrap,
    .hero-logo-img,
    .hero-logo-wrap::before,
    .hero-logo-wrap::after {
        animation: none;
        clip-path: none;
    }
}

/* ============ LEFT CONTENT ============ */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    flex-shrink: 0;
    animation: fadeInUp 0.85s ease both;
}

/* Traço superior — hierarquia visual clean */
.hero-content::before {
    content: '';
    display: block;
    width: min(120px, 28vw);
    height: 1px;
    margin-bottom: 1.75rem;
    background: linear-gradient(90deg, rgba(139, 63, 208, 0.65), rgba(139, 63, 208, 0.08));
}

/* Grain cinematográfico */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.055;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    animation: grainShift 0.4s steps(1) infinite;
}

/* Scanner desativado */
.hero-scanner { display: none; }

/* ---- Hero Logo — reveal wipe + glitch ---- */
.hero-logo-wrap {
    position: relative;
    display: block;
    overflow: hidden;   /* fix dots + clipa a wipe */
    line-height: 0.95;
    margin-bottom: 0;
    animation: logoWipeReveal 0.9s cubic-bezier(0.2, 0, 0.25, 1) both;
}

/* Camadas fantasma — aberração cromática (cyan + magenta) */
.hero-logo-wrap::before,
.hero-logo-wrap::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('Logo/logo_branca.png') left top / contain no-repeat;
    pointer-events: none;
    opacity: 0;
    z-index: 2;
}
.hero-logo-wrap::before {
    mix-blend-mode: screen;
    filter: hue-rotate(190deg) saturate(10) brightness(2);
    animation: logoGhostCyan 5s 0.9s linear infinite;
}
.hero-logo-wrap::after {
    mix-blend-mode: screen;
    filter: hue-rotate(310deg) saturate(10) brightness(2);
    animation: logoGhostMagenta 5s 0.9s linear infinite;
}

.hero-logo-img {
    position: relative;
    height: clamp(160px, 26vw, 340px);
    width: auto;
    max-width: min(92vw, 520px);
    display: block;
    z-index: 1;
    animation: logoGlitch 5s 0.9s linear infinite;
}

/* Eyebrow — tipografia sóbria + cursor de digitação */
.hero-pill {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0.35rem 0 0.35rem 0.95rem;
    border-left: 2px solid rgba(155, 80, 232, 0.55);
    background: transparent;
    border-radius: 0;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    min-height: 1.2em;
}
.hero-pill.typing::after {
    content: '|';
    margin-left: 1px;
    color: rgba(155, 80, 232, 0.85);
    animation: cursorBlink 0.55s step-end infinite;
}

/* Title — huge, bold, two lines */
.hero-title {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 2rem;
    gap: 0;
    align-items: flex-start;
}

.title-line-white {
    font-family: var(--font-display);
    font-size: clamp(5rem, 11vw, 10.5rem);
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.03em;
    line-height: 0.95;
}

.title-line-red {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.5vw, 6rem);
    font-weight: 400;
    color: #9B50E8;
    letter-spacing: 0.03em;
    line-height: 0.95;
    text-shadow: 0 0 30px rgba(139, 63, 208, 0.45);
}

.hero-desc {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.82;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 2.5rem;
    max-width: 420px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.85rem 1.4rem;
    border-radius: var(--radius);
    text-decoration: none;
    transition: color var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.btn-ghost:hover {
    color: #ffffff;
}

/* ============ RIGHT VISUAL (circular) ============ */
.hero-visual {
    position: relative;
    flex-shrink: 0;
    width: clamp(280px, 36vw, 500px);
    height: clamp(280px, 36vw, 500px);
    z-index: 2;
    animation: fadeIn 1.1s ease 0.3s both;
}

/* Glow blob behind the circle */
.hv-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(
        circle,
        rgba(139, 63, 208, 0.22) 0%,
        rgba(139, 63, 208, 0.06) 45%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(30px);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

/* Rotating rings around the circle */
.hv-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid;
    pointer-events: none;
    transform: translate(-50%, -50%);
}
.hv-ring-1 {
    width: 108%;
    height: 108%;
    border-color: rgba(139, 63, 208, 0.2);
    animation: spinSlow 20s linear infinite;
}
.hv-ring-2 {
    width: 122%;
    height: 122%;
    border-color: rgba(139, 63, 208, 0.1);
    animation: spinSlow 35s linear infinite reverse;
}
.hv-ring-3 {
    width: 140%;
    height: 140%;
    border-color: rgba(139, 63, 208, 0.05);
    animation: spinSlow 50s linear infinite;
}

/* Photo circle */
.hv-circle {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(139, 63, 208, 0.3);
    box-shadow:
        0 0 50px rgba(139, 63, 208, 0.25),
        0 0 100px rgba(139, 63, 208, 0.1),
        inset 0 0 40px rgba(0, 0, 0, 0.6);
}

.hv-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(15%) brightness(0.82) contrast(1.08);
    transition: filter 0.5s ease;
}
.hv-circle:hover img {
    filter: grayscale(0%) brightness(0.9);
}

/* Red inner vignette on circle */
.hv-circle-inner-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle at 50% 100%,
        rgba(139, 63, 208, 0.2) 0%,
        transparent 60%
    );
    pointer-events: none;
}

/* Floating badges */
.hv-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(139, 63, 208, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text);
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: floatBadge 4s ease-in-out infinite;
}

.hv-badge-top {
    top: 8%;
    right: -8%;
    animation-delay: 0s;
}
.hv-badge-bottom {
    bottom: 12%;
    left: -10%;
    animation-delay: 2s;
}

.hv-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--primary-glow);
    flex-shrink: 0;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    animation: fadeIn 2s ease 1.8s both;
}
.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(139, 63, 208, 0.55), transparent);
    animation: scrollBounce 1.8s ease-in-out infinite;
}
.scroll-indicator span {
    font-size: 0.56rem;
    letter-spacing: 0.35em;
    color: var(--text-dim);
    text-transform: uppercase;
    order: -1;
}

/* -------------------------------------------------------
   ABOUT
------------------------------------------------------- */
.about {
    padding: 7rem 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

/* Image side */
.about-image-wrapper { position: relative; }

.about-image { position: relative; }

/* Real photo in about section */
.about-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: var(--radius);
    filter: grayscale(15%) brightness(0.85) contrast(1.08);
    transition: filter 0.5s ease;
}
.about-image:hover .about-photo {
    filter: grayscale(0%) brightness(0.9) contrast(1.05);
}

/* Red vertical accent line on the left of the photo */
.about-accent-line {
    position: absolute;
    top: 10%;
    left: -1px;
    width: 3px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    border-radius: 2px;
    box-shadow: 0 0 12px var(--primary-glow);
}

.about-image-border {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: -1rem;
    bottom: -1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    z-index: -1;
}

.about-image-glow {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 3rem;
    background: var(--primary);
    filter: blur(45px);
    opacity: 0.18;
    z-index: -1;
}

/* Content side */
.about-content {
    display: flex;
    flex-direction: column;
}

.about-text {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 1.2rem 0;
}

.tag {
    padding: 0.3rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--primary);
    text-transform: uppercase;
    background: var(--primary-subtle);
    transition: all var(--ease);
}
.tag:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
    box-shadow: 0 0 12px rgba(139, 63, 208, 0.2);
}

/* -------------------------------------------------------
   DOWNLOADS (FOTOS ALTA QUALIDADE)
------------------------------------------------------- */
.downloads-section {
    padding: 7rem 0 8rem;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%,   rgba(139, 63, 208,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(139, 63, 208,0.04) 0%, transparent 60%),
        #040404;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

/* Red accent line top */
.downloads-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 160px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 20px rgba(139, 63, 208, 0.35);
}

.downloads-cta {
    display: flex;
    justify-content: center;
    margin: 1.2rem 0 3rem;
}

.downloads-cta--zip-parts {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.downloads-zip-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 28rem;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.downloads-zip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.downloads-tabs {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin: 0 0 1.4rem;
}

.downloads-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 0.98rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(15,15,15,0.75);
    color: rgba(255,255,255,0.72);
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.downloads-tab:hover {
    border-color: rgba(139, 63, 208,0.35);
    color: #fff;
}

.downloads-tab.active {
    color: #fff;
    border-color: rgba(139, 63, 208,0.5);
    background: linear-gradient(135deg, rgba(139, 63, 208,0.88) 0%, rgba(50, 12, 100,0.92) 100%);
    box-shadow: 0 0 18px rgba(139, 63, 208,0.25);
}

.downloads-panel {
    display: none;
}

.downloads-panel.active {
    display: block;
}

/* Troca de abas instantanea nesta secao (evita atraso visual) */
.downloads-panel .reveal-up,
.downloads-panel .reveal-left,
.downloads-panel .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.logo-download-feature {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.4rem;
    align-items: center;
    margin: 0 auto 2.2rem;
    padding: 1.15rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(140deg, rgba(139, 63, 208, 0.09) 0%, rgba(139, 63, 208, 0.015) 45%, transparent 100%),
        rgba(8, 8, 8, 0.92);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(139, 63, 208, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
    transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.logo-download-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.05) 48%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.65s ease;
    pointer-events: none;
}

.logo-download-feature:hover {
    border-color: rgba(139, 63, 208, 0.26);
    box-shadow:
        0 22px 46px rgba(0, 0, 0, 0.52),
        0 0 28px rgba(139, 63, 208, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.logo-download-feature:hover::before {
    transform: translateX(120%);
}

.logo-download-media {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: radial-gradient(circle at 50% 50%, rgba(139, 63, 208, 0.12), rgba(10, 10, 10, 0.94));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.logo-download-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    padding: 1.05rem;
    filter: drop-shadow(0 0 20px rgba(139, 63, 208, 0.5));
    transition: transform 0.32s ease, filter 0.32s ease;
}

.logo-download-feature:hover .logo-download-img {
    transform: scale(1.025);
    filter: drop-shadow(0 0 24px rgba(139, 63, 208, 0.58));
}

.logo-download-tag {
    display: inline-block;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--primary);
    padding: 0.28rem 0.62rem;
    border: 1px solid rgba(139, 63, 208, 0.22);
    border-radius: 999px;
    margin-bottom: 0.5rem;
}

.logo-download-title {
    font-family: var(--font);
    font-size: clamp(1.08rem, 2.4vw, 1.48rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.24;
    margin-bottom: 0.4rem;
    color: #f6f6f6;
    text-transform: none;
}

.logo-download-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    max-width: 60ch;
    margin-bottom: 0.85rem;
}

.logo-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.42rem 0.82rem;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    border-width: 1px;
    border-radius: 999px;
    border-color: rgba(255, 70, 70, 0.38);
    color: #fff;
    background: linear-gradient(135deg, rgba(139, 63, 208, 0.9) 0%, rgba(165, 8, 8, 0.92) 100%);
    box-shadow:
        0 0 0 1px rgba(139, 63, 208, 0.18),
        0 8px 18px rgba(110, 0, 0, 0.35);
}

.logo-download-btn:hover {
    border-color: rgba(255, 115, 115, 0.55);
    background: linear-gradient(135deg, rgba(255, 48, 48, 0.98) 0%, rgba(190, 12, 12, 0.98) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 70, 70, 0.25),
        0 0 20px rgba(139, 63, 208, 0.35),
        0 10px 20px rgba(120, 0, 0, 0.42);
}

/* ---- Grid layout ---- */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.85rem;
}

.downloads-grid--single {
    grid-template-columns: repeat(2, minmax(220px, 280px));
    justify-content: center;
}

@media (max-width: 1100px) { .downloads-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 860px)  { .downloads-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .downloads-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; } }

@media (max-width: 900px) {
    .logo-download-feature {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1rem;
        gap: 0.9rem;
    }
    .logo-download-media {
        max-width: 280px;
        margin: 0 auto;
    }
    .logo-download-img {
        height: 165px;
    }
    .logo-download-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .logo-download-feature:hover {
        transform: none;
    }
}

@media (max-width: 560px) {
    .downloads-tabs {
        gap: 0.42rem;
    }
    .downloads-tab {
        font-size: 0.88rem;
        padding: 0.4rem 0.75rem;
        letter-spacing: 0.07em;
    }
    .logo-download-feature {
        border-radius: 14px;
    }
    .logo-download-title {
        font-size: 1rem;
    }
    .logo-download-desc {
        font-size: 0.84rem;
        line-height: 1.6;
    }
}

/* Touch devices — botão sempre visível, sem efeito hover */
@media (hover: none) {
    .download-btn {
        opacity: 1;
        transform: translateY(0);
    }
    .download-card:hover .download-photo {
        filter: brightness(0.88) contrast(1.05);
        transform: none;
    }
    .download-card:hover {
        transform: none;
    }
    .download-card::before {
        display: none;
    }
}

/* ---- Card ---- */
.download-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    cursor: pointer;
    transition: transform 0.32s cubic-bezier(0.22,1,0.36,1),
                border-color 0.32s ease,
                box-shadow 0.32s ease;
}

/* Glow overlay on hover */
.download-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(139, 63, 208,0.12) 0%,
        transparent 55%);
    opacity: 0;
    transition: opacity 0.32s ease;
    pointer-events: none;
    border-radius: 16px;
}

.download-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(139, 63, 208,0.5);
    box-shadow:
        0 20px 48px rgba(0,0,0,0.55),
        0 0 28px rgba(139, 63, 208,0.18),
        inset 0 1px 0 rgba(255,80,80,0.12);
}

.download-card:hover::after { opacity: 1; }

/* Photo */
.download-photo {
    width: 100%;
    aspect-ratio: 2 / 3;
    display: block;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.88) contrast(1.05);
    transition: filter 0.32s ease, transform 0.5s ease;
}

.download-photo--logo {
    object-fit: contain;
    object-position: center;
    padding: 1rem;
    background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.96), rgba(238,238,238,0.98));
    filter: brightness(1) contrast(1);
}

.download-photo--logo-white {
    background: radial-gradient(circle at 50% 50%, rgba(35,35,35,0.95), rgba(8,8,8,0.98));
    filter: brightness(1.05) contrast(1.02);
}

.download-card:hover .download-photo {
    filter: brightness(0.6) contrast(1.1);
    transform: scale(1.04);
}

.download-card:hover .download-photo--logo {
    filter: brightness(1) contrast(1.02);
}

.download-card:hover .download-photo--logo-white {
    filter: brightness(1.08) contrast(1.05);
}

@media (max-width: 700px) {
    .downloads-grid--single {
        grid-template-columns: minmax(220px, 280px);
    }
}

/* Download button — hidden by default, slides up on hover */
.download-btn {
    position: absolute;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(139, 63, 208,0.6);
    background: linear-gradient(120deg,
        rgba(139, 63, 208,0.95) 0%,
        rgba(130,0,0,0.92) 100%);
    backdrop-filter: blur(8px);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font);
    font-size: 0.65rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(139, 63, 208,0.3);
    transform: translateY(8px);
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.download-card:hover .download-btn {
    opacity: 1;
    transform: translateY(0);
}

.download-btn:hover {
    box-shadow: 0 10px 28px rgba(139, 63, 208,0.45);
}

/* Shine sweep on the button */
.download-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -60%;
    width: 40%; height: 100%;
    background: linear-gradient(90deg,
        transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-18deg);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0%   { left: -60%; opacity: 0; }
    20%  { opacity: 1; }
    60%  { left: 130%; opacity: 0; }
    100% { left: 130%; opacity: 0; }
}

/* Photo number badge */
.download-card::before {
    content: attr(data-num);
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* -------------------------------------------------------
   LUGARES
------------------------------------------------------- */
.lugares-section {
    padding: 6rem 0 7rem;
    background: #050505;
    overflow: hidden;
    position: relative;
}

/* Roxo ambiente pulsando no centro da seção */
.lugares-section::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 55%;
    background: radial-gradient(ellipse, rgba(139, 63, 208, 0.13) 0%, transparent 70%);
    animation: lugaresAmbient 5s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes lugaresAmbient {
    from { opacity: 0.5; transform: translateX(-50%) scale(0.95); }
    to   { opacity: 1;   transform: translateX(-50%) scale(1.1); }
}

.lugares-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding: 0 2rem;
}

/* ---- Track wrapper ---- */
.lugares-track-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    z-index: 1;
}

.lugares-track {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.lugares-strip {
    display: flex;
    gap: 1rem;
    width: max-content;
    will-change: transform;
    transform: translateZ(0);
}

.lugares-track--left  .lugares-strip { animation: lugares-left  28s linear infinite; }
.lugares-track--right .lugares-strip { animation: lugares-right 28s linear infinite; }

/* Pausa só em dispositivos com mouse (evita travar no mobile após toque) */
@media (hover: hover) {
    .lugares-track--left:hover  .lugares-strip,
    .lugares-track--right:hover .lugares-strip { animation-play-state: paused; }
}

/* ---- Items ---- */
.lugares-item {
    flex-shrink: 0;
    width: clamp(220px, 20vw, 320px);
    height: clamp(370px, 34vw, 540px);
    border-radius: 14px;
    overflow: hidden;
    border: none;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Sheen: reflexo de luz que passa ao hover */
.lugares-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,0.10) 50%,
        transparent 60%
    );
    background-size: 200% 100%;
    background-position: -100% 0;
    z-index: 3;
    pointer-events: none;
    transition: background-position 0s;
    border-radius: 14px;
}

/* Efeitos de hover só em dispositivos com ponteiro (mouse) */
@media (hover: hover) {
    .lugares-item:hover::before {
        background-position: 200% 0;
        transition: background-position 0.55s ease;
    }

    .lugares-item:hover {
        transform: scale(1.04) translateY(-6px);
        box-shadow: 0 0 32px rgba(139, 63, 208,0.4), 0 16px 40px rgba(0,0,0,0.7);
        z-index: 4;
    }

    .lugares-item:hover::after { opacity: 1; }
}

/* Glow roxo suave na borda (definição base, sem hover) */
.lugares-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px rgba(139, 63, 208, 0);
    background: linear-gradient(180deg, rgba(139, 63, 208,0.0) 60%, rgba(139, 63, 208,0.18) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.lugares-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(10%) brightness(0.9);
    transition: filter 0.35s ease;
}

@media (hover: hover) {
    .lugares-item:hover img {
        filter: grayscale(0%) brightness(1);
    }
}

@keyframes lugares-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes lugares-right {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* -------------------------------------------------------
   FEATURED SET — Sixx House DJ Contest
------------------------------------------------------- */
.featured-set {
    position: relative;
    padding: 7rem 0 6rem;
    background:
        radial-gradient(ellipse 70% 60% at 20% 50%, rgba(139, 63, 208,0.09) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(180,0,0,0.05) 0%, transparent 60%),
        #040404;
    border-bottom: 1px solid rgba(139, 63, 208,0.12);
    overflow: hidden;
}

.fs-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 80% at 15% 50%, rgba(139, 63, 208,0.07) 0%, transparent 55%);
    z-index: 0;
}

/* Video-first layout */
.fs-inner {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    position: relative;
    z-index: 1;
}

/* Top row: foto pequena + info */
.fs-top-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2.4rem;
    align-items: center;
}

.fs-cta-wrap {
    display: flex;
    justify-content: center;
}

/* ---- Poster ---- */
.fs-poster-wrap {
    position: relative;
    flex-shrink: 0;
}

.fs-poster {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center 65%;
    border-radius: 14px;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow:
        0 0 0 1px rgba(139, 63, 208,0.2),
        0 20px 60px rgba(0,0,0,0.7);
}

.fs-poster-glow {
    position: absolute;
    inset: -18px;
    border-radius: 20px;
    background: radial-gradient(ellipse at center, rgba(139, 63, 208,0.28) 0%, transparent 70%);
    filter: blur(28px);
    z-index: 0;
    animation: fsPosterPulse 3.5s ease-in-out infinite;
}

@keyframes fsPosterPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.04); }
}

.fs-poster {
    border-radius: 14px;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow:
        0 0 0 1px rgba(139, 63, 208,0.2),
        0 20px 60px rgba(0,0,0,0.7);
}

/* "NOVO SET" badge */
.fs-poster-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(139, 63, 208,0.92);
    backdrop-filter: blur(8px);
    color: #fff;
    font-family: var(--font);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    box-shadow: 0 0 18px rgba(139, 63, 208,0.55);
}

.fs-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: pulseDot 1.4s ease-in-out infinite;
    flex-shrink: 0;
}

.fs-badge-dot--rec {
    background: #ff2b2b;
    box-shadow: 0 0 6px rgba(255, 43, 43, 0.8);
}

/* ---- Right content ---- */
.fs-eyebrow {
    margin-bottom: 0.8rem;
}

.fs-title {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0.06em;
    margin-bottom: 0.5rem;
}

.fs-title-line1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.fs-title-line2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.04em;
    line-height: 0.9;
    text-shadow: 0 0 40px rgba(139, 63, 208,0.25);
}

.fs-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.4rem;
}

.fs-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 0;
}

.fs-player {
    width: 100%;
    margin-bottom: 0;
}

/* YouTube cinematic frame */
.fs-yt-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    isolation: isolate;
}

/* Halo roxo pulsando atrás do vídeo */
.fs-yt-glow {
    position: absolute;
    inset: -20px;
    border-radius: 24px;
    background: radial-gradient(ellipse at center, rgba(139, 63, 208, 0.45) 0%, transparent 65%);
    filter: blur(24px);
    animation: ytGlowPulse 3.5s ease-in-out infinite alternate;
    z-index: -1;
    pointer-events: none;
}

@keyframes ytGlowPulse {
    from { opacity: 0.5; transform: scale(0.96); }
    to   { opacity: 1;   transform: scale(1.04); }
}

/* Borda roxa fina ao redor */
.fs-yt-border {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    border: 1px solid rgba(139, 63, 208, 0.45);
    z-index: 2;
    pointer-events: none;
    box-shadow:
        inset 0 0 18px rgba(139, 63, 208, 0.12),
        0 0 28px rgba(139, 63, 208, 0.2);
}

.fs-yt-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    border-radius: 14px;
    position: relative;
    z-index: 1;
}

.fs-cta {
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
    .fs-top-row {
        grid-template-columns: 160px 1fr;
        gap: 1.8rem;
    }
    .fs-poster { height: 200px; }
}

@media (max-width: 700px) {
    .featured-set {
        padding: 5rem 0 4rem;
    }
    .fs-top-row {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
    .fs-poster-wrap { max-width: 220px; }
    .fs-poster { height: 180px; }
    .fs-title-line2 {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }
    .fs-desc {
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .fs-poster-wrap {
        max-width: 220px;
    }
}

/* -------------------------------------------------------
   DROPS DE ELETRÔNICA
------------------------------------------------------- */
.drops-section {
    position: relative;
    padding: 7rem 0 6rem;
    background: #030208;
    overflow: hidden;
    border-top: 1px solid rgba(139, 63, 208, 0.12);
    border-bottom: 1px solid rgba(139, 63, 208, 0.12);
}

/* Grain animado */
.drops-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    animation: dropsGrain 0.4s steps(1) infinite;
}

@keyframes dropsGrain {
    0%  { background-position: 0 0; }
    25% { background-position: -40px 20px; }
    50% { background-position: 20px -30px; }
    75% { background-position: -20px 40px; }
}

/* Glow roxo pulsante no fundo */
.drops-ambient {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(139, 63, 208, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: dropsAmbient 4s ease-in-out infinite alternate;
}

@keyframes dropsAmbient {
    from { opacity: 0.5; transform: translateX(-50%) scale(0.95); }
    to   { opacity: 1;   transform: translateX(-50%) scale(1.1); }
}

/* Header */
.drops-header {
    position: relative;
    z-index: 1;
    margin-bottom: 3.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(139, 63, 208, 0.18);
}

.drops-header-left {
    flex: 1;
}

.drops-header-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.4rem;
}

.drops-nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(139, 63, 208, 0.55);
    background: rgba(139, 63, 208, 0.08);
    color: rgba(176, 110, 255, 0.9);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease,
                color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(8px);
}

.drops-nav-btn:hover {
    background: rgba(139, 63, 208, 0.3);
    border-color: rgba(176, 110, 255, 0.9);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(139, 63, 208, 0.45);
}

.drops-nav-btn:active {
    transform: scale(0.95);
}

.drops-eyebrow {
    margin-bottom: 1rem;
}

/* Título "DROPS" com glitch cromático */
.drops-title {
    font-family: var(--font-display);
    font-size: clamp(5rem, 14vw, 12rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 0.85;
    color: #fff;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    text-shadow: 0 0 60px rgba(139, 63, 208, 0.4);
}

.drops-title::before,
.drops-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    pointer-events: none;
    animation: dropsGlitch 6s infinite;
}

.drops-title::before {
    color: #0ff;
    clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%);
    animation-delay: 0s;
    mix-blend-mode: screen;
}

.drops-title::after {
    color: #f0f;
    clip-path: polygon(0 55%, 100% 55%, 100% 70%, 0 70%);
    animation-delay: 0.04s;
    mix-blend-mode: screen;
}

@keyframes dropsGlitch {
    0%, 88%, 100% { transform: translate(0); opacity: 0; }
    90%           { transform: translate(-3px, 1px); opacity: 0.7; }
    92%           { transform: translate(3px, -1px); opacity: 0.8; }
    94%           { transform: translate(-2px, 2px); opacity: 0.6; }
    96%           { transform: translate(0); opacity: 0; }
}

.drops-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Reel scrollável */
.drops-reel-wrap {
    position: relative;
    z-index: 1;
    /* Fade nas bordas */
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.drops-reel {
    display: flex;
    gap: 1.6rem;
    padding: 2rem 5vw 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    will-change: transform;
    align-items: stretch;
}

.drops-reel::-webkit-scrollbar { display: none; }
.drops-reel.is-dragging { cursor: grabbing; scroll-behavior: auto; }

/* Cards individuais */
.drop-card {
    flex-shrink: 0;
    width: clamp(200px, 20vw, 290px);
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(139, 63, 208, 0.15);
    scroll-snap-align: start;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s ease,
                box-shadow 0.4s ease,
                filter 0.4s ease;
    background: #06040d;
    filter: brightness(0.88) saturate(0.9);
}

/* Cards que não estão em hover ficam levemente apagados (só desktop) */
@media (hover: hover) {
    .drops-reel:hover .drop-card {
        filter: brightness(0.72) saturate(0.75);
    }
    .drops-reel:hover .drop-card:hover {
        filter: brightness(1) saturate(1.1);
        transform: scale(1.05) translateY(-10px);
        border-color: rgba(139, 63, 208, 0.7);
        box-shadow:
            0 0 0 1px rgba(139, 63, 208, 0.3),
            0 0 30px rgba(139, 63, 208, 0.55),
            0 0 70px rgba(139, 63, 208, 0.2),
            0 20px 50px rgba(0,0,0,0.8);
        z-index: 2;
    }
}

.drop-card.is-active {
    filter: brightness(1) saturate(1.1) !important;
    border-color: rgba(139, 63, 208, 0.8) !important;
    box-shadow:
        0 0 0 1px rgba(139, 63, 208, 0.4),
        0 0 30px rgba(139, 63, 208, 0.6),
        0 0 70px rgba(139, 63, 208, 0.25),
        0 20px 50px rgba(0,0,0,0.8) !important;
}

.drop-thumb {
    width: 100%;
    height: 100%;
    position: relative;
}

.drop-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay sobre o vídeo */
.drop-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 0%,
        transparent 30%,
        transparent 45%,
        rgba(6,4,14,0.92) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease;
}

.drop-card.is-active .drop-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        transparent 30%,
        transparent 55%,
        rgba(6,4,14,0.95) 100%
    );
}

/* Número decorativo no topo-esquerdo */
.drop-num {
    position: absolute;
    top: 14px;
    left: 16px;
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.18);
    letter-spacing: 0.02em;
    pointer-events: none;
    transition: -webkit-text-stroke 0.35s ease, color 0.35s ease;
    user-select: none;
}

@media (hover: hover) {
    .drop-card:hover .drop-num,
    .drop-card.is-active .drop-num {
        -webkit-text-stroke: 1px rgba(176, 110, 255, 0.6);
    }
}

/* Rodapé do card: label + barras */
.drop-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 18px 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.drop-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-family: var(--font-body);
    font-weight: 500;
    transition: color 0.3s ease;
}

.drop-label em {
    font-style: normal;
    color: rgba(176, 110, 255, 0.8);
}

@media (hover: hover) {
    .drop-card:hover .drop-label,
    .drop-card.is-active .drop-label {
        color: rgba(255,255,255,0.7);
    }
}

/* Barras de energia (5 barras) */
.drop-energy {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drop-card.is-active .drop-energy { opacity: 1; }

.drop-energy span {
    display: block;
    width: 3px;
    border-radius: 2px;
    background: var(--primary-light);
    box-shadow: 0 0 6px rgba(176, 110, 255, 0.9);
    transform-origin: bottom;
}

.drop-energy span:nth-child(1) { animation: energyBar 0.55s ease-in-out infinite alternate; }
.drop-energy span:nth-child(2) { animation: energyBar 0.38s ease-in-out infinite alternate 0.08s; }
.drop-energy span:nth-child(3) { animation: energyBar 0.65s ease-in-out infinite alternate 0.15s; }
.drop-energy span:nth-child(4) { animation: energyBar 0.42s ease-in-out infinite alternate 0.03s; }
.drop-energy span:nth-child(5) { animation: energyBar 0.5s ease-in-out infinite alternate 0.22s; }

@keyframes energyBar {
    from { height: 3px;  opacity: 0.4; }
    to   { height: 17px; opacity: 1; }
}

/* Sheen sweep ao hover */
.drop-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 30%,
        rgba(255,255,255,0.06) 50%,
        transparent 70%
    );
    background-size: 200% 100%;
    background-position: -100% 0;
    z-index: 3;
    pointer-events: none;
    transition: background-position 0s;
    border-radius: 20px;
}

@media (hover: hover) {
    .drop-card:hover::before {
        background-position: 200% 0;
        transition: background-position 0.6s ease;
    }
}

/* Barra de progresso de scroll */
.drops-progress-wrap {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.8rem;
}

.drops-progress-track {
    flex: 1;
    height: 2px;
    background: rgba(139, 63, 208, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.drops-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(139, 63, 208, 0.8), rgba(176, 110, 255, 1));
    border-radius: 2px;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(176, 110, 255, 0.5);
}


/* ---- Modal fullscreen ---- */
.drop-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drop-modal.is-open {
    opacity: 1;
    pointer-events: all;
}

.drop-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 2, 8, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.drop-modal-inner {
    position: relative;
    z-index: 1;
    width: min(90vw, 480px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.drop-modal-close {
    align-self: flex-end;
    background: rgba(139, 63, 208, 0.2);
    border: 1px solid rgba(139, 63, 208, 0.4);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(8px);
}

.drop-modal-close:hover {
    background: rgba(139, 63, 208, 0.5);
    transform: rotate(90deg);
}

.drop-modal-video-wrap {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(139, 63, 208, 0.5);
    box-shadow:
        0 0 40px rgba(139, 63, 208, 0.4),
        0 0 80px rgba(139, 63, 208, 0.15),
        0 24px 60px rgba(0,0,0,0.8);
    position: relative;
}

.drop-modal-video-wrap::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(139,63,208,0.6), transparent 50%, rgba(176,110,255,0.3));
    z-index: 0;
    pointer-events: none;
}

#drop-modal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    position: relative;
    z-index: 1;
}

/* Mobile */
@media (max-width: 700px) {
    .drops-section { padding: 5rem 0 4rem; }
    .drop-card { width: clamp(155px, 44vw, 210px); }
    .drop-modal-inner { width: 92vw; }
    .drops-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .drops-header-right { flex-direction: row; gap: 0.5rem; }
    .drops-nav-btn { width: 44px; height: 44px; font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
    .drops-grain,
    .drops-ambient,
    .drops-title::before,
    .drops-title::after,
    .drop-energy span { animation: none; }
    .drop-card { transition: none; }
}

/* -------------------------------------------------------
   AUTORAIS
------------------------------------------------------- */
.autorais-section {
    position: relative;
    padding: 7rem 0 0;
    background: #030208;
    overflow: hidden;
    border-top: 1px solid rgba(139, 63, 208, 0.12);
}

.autorais-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    animation: dropsGrain 0.4s steps(1) infinite;
}

.autorais-ambient {
    position: absolute;
    top: -10%;
    left: 30%;
    width: 60%;
    height: 50%;
    background: radial-gradient(ellipse, rgba(139, 63, 208, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: dropsAmbient 5s ease-in-out infinite alternate;
}

/* Header */
.autorais-header {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(139, 63, 208, 0.18);
}

.autorais-header-left { flex: 1; }

.autorais-eyebrow { margin-bottom: 1rem; }

.autorais-header-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.4rem;
}

.autorais-nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(139, 63, 208, 0.55);
    background: rgba(139, 63, 208, 0.08);
    color: rgba(176, 110, 255, 0.9);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease,
                color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(8px);
}

.autorais-nav-btn:hover {
    background: rgba(139, 63, 208, 0.3);
    border-color: rgba(176, 110, 255, 0.9);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(139, 63, 208, 0.45);
}

.autorais-nav-btn:active { transform: scale(0.95); }

/* Título com glitch cromático */
.autorais-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 11vw, 9rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 0.85;
    color: #fff;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    text-shadow: 0 0 60px rgba(139, 63, 208, 0.35);
}

.autorais-title::before,
.autorais-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    pointer-events: none;
    animation: dropsGlitch 8s infinite;
}

.autorais-title::before {
    color: #0ff;
    clip-path: polygon(0 15%, 100% 15%, 100% 35%, 0 35%);
    animation-delay: 0s;
    mix-blend-mode: screen;
}

.autorais-title::after {
    color: #f0f;
    clip-path: polygon(0 60%, 100% 60%, 100% 75%, 0 75%);
    animation-delay: 0.05s;
    mix-blend-mode: screen;
}

/* Reel */
.autorais-reel-wrap {
    position: relative;
    z-index: 1;
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.autorais-reel {
    display: flex;
    gap: 1.4rem;
    padding: 1.5rem 5vw 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    will-change: transform;
}

.autorais-reel::-webkit-scrollbar { display: none; }
.autorais-reel.is-dragging { cursor: grabbing; scroll-behavior: auto; }

/* Cards quadrados */
.autoral-card {
    flex-shrink: 0;
    width: clamp(160px, 18vw, 240px);
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(139, 63, 208, 0.15);
    scroll-snap-align: start;
    position: relative;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.35s ease,
                box-shadow 0.35s ease,
                filter 0.35s ease;
    background: #09060f;
    filter: brightness(0.9) saturate(0.85);
}

.autoral-card.is-active {
    border-color: rgba(139, 63, 208, 0.85) !important;
    box-shadow:
        0 0 0 1px rgba(139, 63, 208, 0.4),
        0 0 28px rgba(139, 63, 208, 0.55),
        0 0 60px rgba(139, 63, 208, 0.2),
        0 16px 40px rgba(0,0,0,0.8) !important;
    filter: brightness(1.05) saturate(1.1) !important;
}

@media (hover: hover) {
    .autorais-reel:hover .autoral-card {
        filter: brightness(0.7) saturate(0.7);
    }
    .autorais-reel:hover .autoral-card:hover {
        filter: brightness(1.05) saturate(1.1);
        transform: scale(1.04) translateY(-8px);
        border-color: rgba(139, 63, 208, 0.65);
        box-shadow:
            0 0 22px rgba(139, 63, 208, 0.45),
            0 16px 40px rgba(0,0,0,0.7);
        z-index: 2;
    }
}

.autoral-thumb {
    width: 100%;
    height: 100%;
    position: relative;
}

.autoral-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

@media (hover: hover) {
    .autoral-card:hover .autoral-thumb img {
        transform: scale(1.06);
    }
}

/* Overlay: título + ícone */
.autoral-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 35%,
        rgba(6,4,14,0.88) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px 16px;
    gap: 4px;
    transition: background 0.3s ease;
}

.autoral-card.is-active .autoral-card-overlay {
    background: linear-gradient(
        to bottom,
        rgba(139, 63, 208, 0.12) 0%,
        rgba(6,4,14,0.92) 100%
    );
}

.autoral-card-title {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 1.6vw, 1.2rem);
    letter-spacing: 0.06em;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.autoral-card-hint {
    font-size: 0.75rem;
    color: rgba(176, 110, 255, 0.75);
    transition: color 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.autoral-card.is-active .autoral-card-hint {
    color: rgba(176, 110, 255, 1);
    opacity: 1;
}

/* Sheen */
.autoral-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 30%,
        rgba(255,255,255,0.06) 50%,
        transparent 70%
    );
    background-size: 200% 100%;
    background-position: -100% 0;
    z-index: 3;
    pointer-events: none;
    transition: background-position 0s;
    border-radius: 14px;
}

@media (hover: hover) {
    .autoral-card:hover::before {
        background-position: 200% 0;
        transition: background-position 0.55s ease;
    }
}

/* Progress bar */
.autorais-progress-wrap {
    display: flex;
    align-items: center;
    margin-top: 1.4rem;
}

.autorais-progress-track {
    flex: 1;
    height: 2px;
    background: rgba(139, 63, 208, 0.12);
    border-radius: 2px;
    overflow: hidden;
}

.autorais-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(139, 63, 208, 0.8), rgba(176, 110, 255, 1));
    border-radius: 2px;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(176, 110, 255, 0.5);
}

/* Player Spotify expansível */
.autoral-player {
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s ease,
                padding 0.45s ease;
    padding: 0;
    border-top: 1px solid transparent;
}

.autoral-player.is-open {
    max-height: 160px;
    opacity: 1;
    padding: 1.6rem 0 2rem;
    border-top-color: rgba(139, 63, 208, 0.15);
}

.autoral-player-inner {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.autoral-player-meta {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
}

.autoral-player-icon {
    font-size: 1.4rem;
    color: #1DB954;
    line-height: 1;
}

.autoral-player-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
}

.autoral-iframe-wrap {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(139, 63, 208, 0.2);
    box-shadow: 0 0 20px rgba(139, 63, 208, 0.15);
}

.autoral-iframe-wrap iframe {
    display: block;
    width: 100%;
    border-radius: 12px;
}

/* Mobile */
@media (max-width: 700px) {
    .autorais-section { padding: 5rem 0 0; }
    .autorais-header { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
    .autorais-nav-btn { width: 44px; height: 44px; font-size: 0.9rem; }
    .autoral-card { width: clamp(140px, 42vw, 185px); }
    .autoral-player-meta { display: none; }
    .autoral-player.is-open { max-height: 120px; }
}

@media (prefers-reduced-motion: reduce) {
    .autorais-grain,
    .autorais-ambient,
    .autorais-title::before,
    .autorais-title::after { animation: none; }
    .autoral-card { transition: none; }
    .autoral-player { transition: none; }
}

/* -------------------------------------------------------
   MUSIC
------------------------------------------------------- */
.music {
    padding: 7rem 0;
}

/* -------------------------------------------------------
   STREAM TABS
------------------------------------------------------- */
.stream-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 2.5rem 0 2rem;
    flex-wrap: wrap;
}

.stream-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.45);
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.stream-tab i { font-size: 1rem; }

.tab-count {
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    padding: 0.1rem 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
}

.stream-tab:hover {
    border-color: rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.75);
}

.stream-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(139, 63, 208,0.4);
}

.stream-tab.active .tab-count {
    background: rgba(255,255,255,0.25);
}

/* ---- Panels ---- */
.stream-panel {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.stream-panel.active {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

/* ---- SoundCloud grid ---- */
.sc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 1.85rem;
}

.sc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.sc-grid--1 { grid-template-columns: 1fr; }

/* Painel Spotify: embed do artista em largura confortável */
.spotify-artist-grid,
.youtube-embed-grid {
    width: 100%;
    max-width: 660px;
}

.sc-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sc-card:hover {
    border-color: rgba(139, 63, 208,0.3);
    box-shadow: 0 0 24px rgba(139, 63, 208,0.12);
}

.sc-card-label {
    padding: 0.75rem 1rem 0.5rem;
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.sc-card-label span {
    color: var(--primary);
}

.sc-card iframe {
    display: block;
    width: 100%;
    height: 166px;
    border: 0;
}

.sc-card--tall iframe  { height: 380px; }
.sc-card--video iframe { height: 420px; }

/* ---- CTA button below panel ---- */
.stream-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255,85,0,0.35);
    background: rgba(255,85,0,0.06);
    color: #ff5500;
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.25s ease;
    margin-top: 1.1rem;
    margin-bottom: 0;
    /* centralizado e sem overflow no mobile */
    align-self: center;
}

.stream-cta:hover {
    background: rgba(255,85,0,0.15);
    box-shadow: 0 0 20px rgba(255,85,0,0.25);
}

.stream-cta--spotify {
    border-color: rgba(30,215,96,0.35);
    background: rgba(30,215,96,0.05);
    color: #1ed760;
}

.stream-cta--spotify:hover {
    background: rgba(30,215,96,0.12);
    box-shadow: 0 0 20px rgba(30,215,96,0.2);
}

.stream-cta--youtube {
    border-color: rgba(255,0,0,0.35);
    background: rgba(255,0,0,0.05);
    color: #ff4444;
}

.stream-cta--youtube:hover {
    background: rgba(255,0,0,0.12);
    box-shadow: 0 0 20px rgba(255,0,0,0.2);
}

@media (max-width: 768px) {
    .sc-grid,
    .sc-grid--2 {
        grid-template-columns: 1fr;
        width: 100%;
    }
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.music-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    transition: all var(--ease);
}
.music-card:hover {
    border-color: var(--border);
    box-shadow:
        0 8px 40px rgba(139, 63, 208, 0.1),
        0 0 0 1px rgba(139, 63, 208, 0.08);
    transform: translateY(-4px);
}

.music-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.platform-badge.spotify  { color: #1DB954; }
.platform-badge.soundcloud    { color: #ff5500; }
.platform-badge.youtubemusic { color: #ff0000; }

.music-card-label {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.embed-wrapper { display: block; }
.embed-wrapper iframe { display: block; }

/* Platform links */
.music-platforms {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 63, 208, 0.1);
}

.platforms-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 1.65rem;
    font-weight: 600;
}

.platforms-row {
    display: flex;
    justify-content: center;
    gap: 1.15rem;
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.25rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    transition: all var(--ease);
}
.platform-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 14px rgba(139, 63, 208, 0.15);
}

/* -------------------------------------------------------
   VIDEOS
------------------------------------------------------- */
.videos {
    padding: 7rem 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    transition: all var(--ease);
}
.video-card:hover {
    border-color: var(--border);
    box-shadow: 0 8px 40px rgba(139, 63, 208, 0.1);
    transform: translateY(-4px);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1.1rem;
    border-top: 1px solid var(--border-subtle);
}

.video-badge {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    padding: 0.22rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--primary-subtle);
    white-space: nowrap;
    flex-shrink: 0;
}

.video-title {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.4;
}

/* -------------------------------------------------------
   NUMBERS
------------------------------------------------------- */
.numbers {
    padding: 7rem 0;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.number-card {
    text-align: center;
    padding: 3rem 1.5rem 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    transition: all var(--ease);
    position: relative;
    overflow: hidden;
}
.number-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity var(--ease);
}
.number-card:hover {
    border-color: var(--border);
    transform: translateY(-6px);
    box-shadow:
        0 14px 40px rgba(139, 63, 208, 0.12),
        0 0 0 1px rgba(139, 63, 208, 0.08);
}
.number-card:hover::after {
    opacity: 1;
}

.number-icon {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0.75;
}

.number-display {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.number-value {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1;
    letter-spacing: 0.04em;
}

.number-suffix {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    color: var(--primary);
    line-height: 1;
    padding-bottom: 0.1rem;
    letter-spacing: 0.04em;
}

.number-label {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 500;
}

/* -------------------------------------------------------
   BOOKING
------------------------------------------------------- */
.booking {
    padding: clamp(4rem, 10vw, 9rem) 0;
    position: relative;
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 70% 80% at 50% 50%,
        rgba(139, 63, 208, 0.07) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* Animated vertical lines */
.booking-lines {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-around;
    pointer-events: none;
}
.booking-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(139, 63, 208, 0.06) 30%,
        rgba(139, 63, 208, 0.06) 70%,
        transparent 100%
    );
}

.booking-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.booking-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
}

.booking-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 3rem;
    font-weight: 300;
}

.booking-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.booking-available {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.available-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}
.available-item i {
    color: var(--primary);
    font-size: 0.7rem;
}

/* -------------------------------------------------------
   FOOTER
------------------------------------------------------- */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 0.9rem;
    transition: opacity var(--ease);
}
.footer-logo:hover { opacity: 0.7; }

.footer-logo-img {
    height: 44px;
    width: auto;
    display: block;
    opacity: 0.85;
    transition: opacity var(--ease), filter var(--ease);
}
.footer-logo:hover .footer-logo-img {
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(139, 63, 208,0.55));
}

.footer-tagline {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-heading {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 1.2rem;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-nav a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color var(--ease);
}
.footer-nav a:hover { color: var(--primary); }

.social-links {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--ease);
}
.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 14px rgba(139, 63, 208, 0.2);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.78rem;
    color: var(--text-dim);
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.footer-credit-link {
    color: var(--primary);
    font-weight: 700;
    transition: color var(--ease), text-shadow var(--ease);
}

.footer-credit-link:hover {
    color: var(--primary-light);
    text-shadow: 0 0 12px rgba(139, 63, 208, 0.35);
}

/* -------------------------------------------------------
   REVEAL ANIMATIONS
------------------------------------------------------- */
.reveal-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity var(--ease-slow), transform var(--ease-slow);
    transition-delay: var(--delay, 0s);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity var(--ease-slow), transform var(--ease-slow);
}
.reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity var(--ease-slow), transform var(--ease-slow);
}
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: none;
}

/* -------------------------------------------------------
   KEYFRAMES
------------------------------------------------------- */
@keyframes glowPulse {
    0%, 100% {
        text-shadow:
            0 0 50px rgba(139, 63, 208, 0.25),
            0 0 100px rgba(139, 63, 208, 0.1);
    }
    50% {
        text-shadow:
            0 0 70px rgba(139, 63, 208, 0.45),
            0 0 140px rgba(139, 63, 208, 0.2),
            0 0 200px rgba(139, 63, 208, 0.08);
    }
}

@keyframes spinSlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes linePulse {
    0%, 100% { opacity: 0.25; }
    50%       { opacity: 0.65; }
}

@keyframes scrollBounce {
    0%   { transform: scaleY(1);   opacity: 1; transform-origin: top; }
    100% { transform: scaleY(0);   opacity: 0; transform-origin: top; }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes heroAmbient {
    0%   { opacity: 0.72; }
    50%  { opacity: 1; }
    100% { opacity: 0.85; }
}

@keyframes grainShift {
    0%   { background-position: 0 0; }
    20%  { background-position: -40px -20px; }
    40%  { background-position: 20px 42px; }
    60%  { background-position: -28px 14px; }
    80%  { background-position: 36px -30px; }
    100% { background-position: -12px 8px; }
}

@keyframes scanSweep {
    0%   { transform: translateY(-3px); opacity: 0; }
    4%   { opacity: 1; }
    96%  { opacity: 0.55; }
    100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes logoWipeReveal {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0% 0 0); }
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ---- Glitch da logo ---- */
/* ---- Glitch 5s — tremida começa imediatamente, repete a cada 5s ---- */
/* Glitch ocupa os primeiros 18% (~0.9s), depois fica normal por ~4.1s */
@keyframes logoGlitch {
    0% {
        transform: translate(-5px, 0) skewX(-6deg);
        opacity: 0.75;
        clip-path: polygon(0 0, 100% 0, 100% 38%, 0 38%);
        filter: brightness(1.4);
    }
    3% {
        transform: translate(6px, 1px) skewX(4deg);
        opacity: 1;
        clip-path: polygon(0 62%, 100% 62%, 100% 100%, 0 100%);
        filter: brightness(0.8);
    }
    5% {
        transform: translate(-3px, -1px);
        opacity: 0.2;
        clip-path: none;
        filter: brightness(2.2);
    }
    7% {
        transform: translate(5px, 0) skewX(-4deg);
        opacity: 1;
        clip-path: polygon(0 25%, 100% 25%, 100% 74%, 0 74%);
        filter: none;
    }
    10% {
        transform: translate(-6px, 2px) skewX(5deg);
        opacity: 0.8;
        clip-path: none;
        filter: brightness(1.3);
    }
    12% {
        transform: translate(2px, 0);
        opacity: 0.12;
        filter: brightness(1.8);
    }
    14% {
        transform: translate(-3px, 0) skewX(-2deg);
        opacity: 1;
        clip-path: none;
        filter: none;
    }
    16% {
        transform: translate(2px, -1px) skewX(1deg);
        opacity: 0.9;
    }
    18%, 100% {
        transform: none;
        opacity: 1;
        clip-path: none;
        filter: none;
    }
}

/* Fantasma cyan */
@keyframes logoGhostCyan {
    0%   { opacity: 0.55; transform: translateX(-6px); }
    3%   { opacity: 0;    transform: translateX(0); }
    5%   { opacity: 0.45; transform: translateX(5px); }
    7%   { opacity: 0;    transform: translateX(0); }
    10%  { opacity: 0.5;  transform: translateX(-4px); }
    14%  { opacity: 0.3;  transform: translateX(3px); }
    18%, 100% { opacity: 0; transform: translateX(0); }
}

/* Fantasma magenta */
@keyframes logoGhostMagenta {
    0%   { opacity: 0; }
    3%   { opacity: 0.55; transform: translateX(7px); }
    5%   { opacity: 0;    transform: translateX(0); }
    7%   { opacity: 0.45; transform: translateX(-5px); }
    10%  { opacity: 0;    transform: translateX(0); }
    12%  { opacity: 0.5;  transform: translateX(5px); }
    16%  { opacity: 0.3;  transform: translateX(-3px); }
    18%, 100% { opacity: 0; transform: translateX(0); }
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--primary-glow); }
    50%       { opacity: 0.5; box-shadow: 0 0 12px var(--primary-glow); }
}

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

/* -------------------------------------------------------
   RESPONSIVE
------------------------------------------------------- */
@media (max-width: 1024px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 960px) {
    /* Hero: stack vertically on tablet/mobile; foto puxa para a direita */
    .hero-bg-img {
        object-position: 68% 45%;
    }
    .hero {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: calc(var(--nav-total) + 3rem);
        padding-bottom: 5rem;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        order: 2;
    }
    .hero-pill { margin: 0 auto 1.5rem; }
    .hero-content::before {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }

    .hero-visual {
        order: 1;
        width: clamp(220px, 55vw, 340px);
        height: clamp(220px, 55vw, 340px);
    }

    .hv-badge-top    { right: -4%; top: 4%; }
    .hv-badge-bottom { left: -4%; bottom: 8%; }
}

/* Em mobile o círculo some — o tiger já é o fundo */
@media (max-width: 768px) {
    .hero-visual { display: none; }
}

@media (max-width: 768px) {
    /* Nav mobile */
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: var(--nav-total);
        left: 0;
        right: 0;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.3rem;
        border-bottom: 1px solid var(--border-subtle);
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s ease;
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image-wrapper {
        max-width: 360px;
        margin: 0 auto;
    }

    /* Videos */
    .videos-grid {
        grid-template-columns: 1fr;
    }

    /* Numbers */
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        margin-bottom: 1.8rem;
    }
    .footer-brand,
    .footer-nav,
    .footer-social-col {
        text-align: center;
    }
    .footer-tagline {
        font-size: 0.8rem;
        max-width: 260px;
        margin: 0 auto;
    }
    .footer-heading {
        margin-bottom: 0.8rem;
    }
    .footer-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem 1.1rem;
    }
    .social-links {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }

}

@media (max-width: 520px) {
    .container { padding: 0 1.25rem; }

    .music-grid { grid-template-columns: 1fr; }

    /* Hero titles — evitar overflow no mobile */
    .title-line-white { font-size: clamp(2.8rem, 13vw, 5rem); }
    .title-line-red   { font-size: clamp(2rem, 10vw, 3.5rem); }

    .hero-buttons,
    .booking-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Badges flutuantes — esconder no mobile pequeno */
    .hv-badge { display: none; }

    /* Tension block — "AGORA??" não overflow */
    .tl-tension-now-text { font-size: clamp(3.5rem, 14vw, 8rem); }
    .tl-tension-phrase   { font-size: clamp(1.8rem, 7vw, 3rem); }

    /* Timeline carousel no mobile */
    .tl-vc-mask  { height: 220px; }
    .tl-vc-item  { width: clamp(140px, 40vw, 180px); flex-shrink: 0; }
    .tl-vc-item img { width: clamp(140px, 40vw, 180px); height: 210px; }

    /* Node year menor */
    .tl-node-year { font-size: 2.2rem; }

    /* Booking — menos espaço vazio */
    .booking { padding: 3.5rem 0; }
    .booking-available { gap: 1rem; }
    .booking-title { font-size: clamp(2rem, 10vw, 3rem); }

    /* Tabs de música menores */
    .stream-tab { padding: 0.5rem 0.9rem; font-size: 0.7rem; }
    .tab-count  { display: none; }

    /* SoundCloud CTA — centralizado */
    .stream-cta { align-self: center; width: 100%; justify-content: center; }

    /* Footer — menos padding */
    .footer {
        padding: 2.2rem 0 1.25rem;
    }
    .footer-logo {
        margin-bottom: 0.55rem;
    }
    .footer-logo-img {
        height: 22px;
    }
    .footer-tagline {
        font-size: 0.74rem;
        line-height: 1.55;
        max-width: 220px;
    }
    .footer-heading {
        font-size: 0.6rem;
        letter-spacing: 0.22em;
        margin-bottom: 0.65rem;
    }
    .footer-nav a {
        font-size: 0.82rem;
    }
    .social-links {
        gap: 0.5rem;
    }
    .social-link {
        width: 34px;
        height: 34px;
        font-size: 0.82rem;
    }
    .footer-bottom {
        padding-top: 1.25rem;
        font-size: 0.72rem;
        gap: 0.3rem;
    }
    .footer-credit {
        justify-content: center;
        line-height: 1.45;
    }
}

/* ============================================================
   TIMELINE — A HISTÓRIA  (vertical spine layout)
   ============================================================ */

.timeline-section {
    position: relative;
    background: #020202;
    padding-bottom: 6rem;
}

/* ---- Section header ---- */
.tl-header {
    text-align: center;
    padding: 6rem 2rem 3rem;
}

/* ---- Story tabs (Performance / Educação) ---- */
.timeline-story-tabs {
    margin: 0 auto 2.75rem;
    padding: 0 1.25rem;
    max-width: var(--max-w);
}

/* ---- Educação musical — mesmo layout da timeline (spine + nós + carrossel) ---- */
.tl-spine-wrapper--edu {
    padding-bottom: 2rem;
}

.tl-node--edu .tl-chapter-title {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    line-height: 1.25;
    margin-top: 0.35rem;
}

.tl-chapter-tag--edu {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    line-height: 1.35;
    white-space: normal;
}

.tl-node--edu .tl-node-year {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
}

.tl-edu-role-line {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.45;
    margin: 0 0 0.85rem;
}

a.tl-edu-text-wrap {
    display: block;
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    border-radius: 4px;
    transition: opacity 0.2s ease;
}

a.tl-edu-text-wrap:hover .tl-chapter-title {
    color: #fff;
}

a.tl-edu-text-wrap:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

@media (hover: none) {
    a.tl-edu-text-wrap:active {
        opacity: 0.88;
    }
}

/* ---- SPINE WRAPPER (só envolve 2011 → 2022) ---- */
.tl-spine-wrapper {
    position: relative;
}

/* ---- VERTICAL SPINE ---- */
.tl-spine {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: rgba(139, 63, 208,0.08);
}

.tl-spine-line {
    width: 100%;
    height: 0;
    max-height: 100%;
    background: linear-gradient(to bottom, var(--primary), rgba(139, 63, 208,0.4));
    box-shadow: 0 0 12px rgba(139, 63, 208,0.4);
    transition: height 0.1s linear;
}

/* ---- NODE base ---- */
.tl-node {
    position: relative;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 5rem clamp(2rem, 6vw, 5rem);
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    grid-template-rows: auto;
    align-items: start;
    gap: 0 1.5rem;
    z-index: 2;
}

/* ---- NODE DOT (sits on spine) ---- */
.tl-node-dot {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1.2rem;
    z-index: 3;
}

.tl-node-dot-inner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--primary);
    box-shadow: 0 0 18px rgba(139, 63, 208,0.6), 0 0 40px rgba(139, 63, 208,0.2);
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tl-node-dot-inner::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.9;
}
.tl-node-dot--red .tl-node-dot-inner {
    width: 24px;
    height: 24px;
    box-shadow: 0 0 30px rgba(139, 63, 208,0.9), 0 0 60px rgba(139, 63, 208,0.3);
}
.tl-node-dot--tension {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 0;
}

/* ---- Content (text side) ---- */
.tl-node-content--left {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    padding-right: 2rem;
}
.tl-node-content--right {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
    padding-left: 2rem;
}

.tl-node-year {
    font-family: var(--font-display);
    font-size: clamp(5rem, 10vw, 9rem);
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.22);
    line-height: 1;
    letter-spacing: 0.06em;
    margin-bottom: 0.1rem;
    user-select: none;
    text-shadow: 0 0 40px rgba(255,255,255,0.06);
}
.tl-node-year--red {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(139, 63, 208,0.45);
    text-shadow: 0 0 40px rgba(139, 63, 208,0.15);
}

.tl-chapter-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.45em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    display: block;
}
.tl-chapter-tag--white { color: rgba(255,255,255,0.35); }

.tl-chapter-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
    color: var(--text);
    margin-bottom: 1rem;
}
.tl-title-accent {
    color: var(--primary);
    text-shadow: 0 0 25px rgba(139, 63, 208,0.4);
}

.tl-chapter-desc {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: var(--text-muted);
    line-height: 1.85;
    font-weight: 300;
}

/* ---- Crowd badge ---- */
.tl-crowd-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.55rem 1.5rem;
    margin-bottom: 1.4rem;
    width: fit-content;
    background: linear-gradient(110deg, #8B3FD0 0%, #2D1054 45%, #080414 100%);
    border: 1px solid rgba(255, 60, 60, 0.35);
    box-shadow:
        0 0 18px rgba(139, 63, 208, 0.45),
        0 0 40px rgba(139, 63, 208, 0.2),
        0 0 80px rgba(139, 63, 208, 0.08),
        inset 0 1px 0 rgba(255, 120, 120, 0.25);
    animation: crowdGlow 2.8s ease-in-out infinite;
    overflow: hidden;
}
.tl-crowd-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.12) 50%,
        transparent 100%);
    transform: translateX(-100%);
    animation: crowdShine 3.5s ease-in-out infinite;
}
.tl-crowd-text {
    position: relative;
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(255, 80, 80, 0.6);
}
@keyframes crowdGlow {
    0%, 100% {
        box-shadow:
            0 0 18px rgba(139, 63, 208, 0.45),
            0 0 40px rgba(139, 63, 208, 0.2),
            0 0 80px rgba(139, 63, 208, 0.08),
            inset 0 1px 0 rgba(255, 120, 120, 0.25);
    }
    50% {
        box-shadow:
            0 0 28px rgba(139, 63, 208, 0.7),
            0 0 60px rgba(139, 63, 208, 0.35),
            0 0 110px rgba(139, 63, 208, 0.15),
            inset 0 1px 0 rgba(255, 120, 120, 0.35);
    }
}
@keyframes crowdShine {
    0%    { transform: translateX(-100%); opacity: 0; }
    30%   { opacity: 1; }
    60%   { transform: translateX(200%); opacity: 0; }
    100%  { transform: translateX(200%); opacity: 0; }
}

/* ---- Photos side ---- */
.tl-node-photos--left {
    grid-column: 1;
    grid-row: 1;
}
.tl-node-photos--right {
    grid-column: 3;
    grid-row: 1;
}

/* ---- Photo grid (chapter 1: tall + 2 stacked) ---- */
.tl-photo-grid--3 {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5px;
    height: 380px;
}

.tl-pg-photo {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.06);
}
.tl-pg-photo--tall {
    height: 100%;
}
.tl-pg-col {
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 100%;
}
.tl-pg-col .tl-pg-photo {
    flex: 1;
}

.tl-pg-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(55%) sepia(15%) brightness(0.72) contrast(1.1);
    transition: filter 0.5s ease, transform 0.5s ease;
    transform: scale(1.02);
}
.tl-pg-photo:hover img {
    filter: grayscale(10%) brightness(0.85) contrast(1.05);
    transform: scale(1.07);
}

.tl-pg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
    pointer-events: none;
}

/* Badge on show photo */
.tl-pg-badge {
    position: absolute;
    bottom: 0.8rem;
    left: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 63, 208,0.9);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(139, 63, 208,0.6);
}

/* ---- Photo grid (chapter 2: mosaic) ---- */
.tl-photo-grid--mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 160px;
    gap: 5px;
}
.tl-pg-photo--wide {
    grid-column: 1 / 3;
}

/* ---- FLIP node: photos left, text right ---- */
.tl-node--flip .tl-node-photos--left {
    grid-column: 1;
}
.tl-node--flip .tl-node-content--right {
    grid-column: 3;
}

/* ---- Quote block ---- */
.tl-quote {
    position: relative;
    margin: 1.5rem 0 1.2rem;
    padding: 1.4rem 1.6rem;
    border-left: 2px solid var(--primary);
    background: rgba(139, 63, 208, 0.04);
    border-radius: 0 4px 4px 0;
    font-size: clamp(0.88rem, 1.2vw, 1rem);
    color: var(--text-muted);
    line-height: 1.9;
    font-weight: 300;
    font-style: italic;
    box-shadow: inset 0 0 40px rgba(139, 63, 208, 0.03);
}
.tl-quote-mark {
    font-family: Georgia, serif;
    font-size: 2rem;
    color: var(--primary);
    line-height: 0;
    vertical-align: -0.4em;
    opacity: 0.7;
    font-style: normal;
}

.tl-quote-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}
.tl-quote-line {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--primary);
    opacity: 0.6;
}

/* ---- DJ node ---- */
.tl-node--dj {
    padding-top: 5rem;
    padding-bottom: 0;
}

/* Gallery override inside node */
.tl-node-photos--gallery {
    overflow: hidden;
}

.tl-dj-gallery {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    cursor: grab;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.tl-dj-gallery::-webkit-scrollbar { display: none; }
.tl-dj-gallery.grabbing { cursor: grabbing; }

.tl-dj-photo {
    position: relative;
    flex-shrink: 0;
    width: clamp(160px, 20vw, 260px);
    height: clamp(220px, 32vh, 420px);
    scroll-snap-align: start;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.4s ease;
}
.tl-dj-photo:hover { transform: scale(1.03); z-index: 2; }

.tl-dj-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(15%) brightness(0.8) contrast(1.1);
    transition: filter 0.5s ease;
}
.tl-dj-photo:hover img {
    filter: grayscale(0%) brightness(0.9) contrast(1.05);
}

.tl-dj-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.7) 0%, transparent 50%);
    pointer-events: none;
}
.tl-dj-photo:first-child::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 20px var(--primary-glow);
}

.tl-dj-gallery-hint {
    padding: 0.8rem 0 2rem;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--text-dim);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* ---- TENSION BLOCK ---- */
.tl-chapter--tension {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
    overflow: hidden;
    z-index: 3;
}

.tl-tension-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(139, 63, 208,0.12) 0%, transparent 65%);
    animation: tensionPulse 3s ease-in-out infinite;
}

.tl-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px, transparent 3px,
        rgba(0,0,0,0.2) 3px, rgba(0,0,0,0.2) 4px
    );
    pointer-events: none;
    opacity: 0.4;
}

.tl-tension-content {
    position: relative;
    z-index: 2;
    padding: 6rem 2rem;
}

.tl-tension-phrase {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 7rem);
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.5);
    line-height: 1;
}
.tl-tension-e { color: var(--primary); }

.tl-tension-now { line-height: 1; margin-bottom: 3rem; }

.tl-tension-now-text {
    font-family: var(--font-display);
    font-size: clamp(5rem, 16vw, 16rem);
    letter-spacing: 0.02em;
    color: var(--text);
    display: block;
    position: relative;
    text-shadow:
        0 0 60px rgba(139, 63, 208,0.5),
        0 0 120px rgba(139, 63, 208,0.2);
    animation: glowPulse 3s ease-in-out infinite;
}
.tl-tension-now-text::before,
.tl-tension-now-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; right: 0;
    overflow: hidden;
}
.tl-tension-now-text::before {
    color: var(--primary);
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    animation: glitchTop 4s steps(1) infinite;
    opacity: 0.7;
}
.tl-tension-now-text::after {
    color: #00f0ff;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    animation: glitchBot 4s steps(1) infinite;
    opacity: 0.5;
}

.tl-tension-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, rgba(139, 63, 208,0.8), transparent);
    margin: 0 auto 1.5rem;
}
.tl-tension-sub {
    font-size: 0.7rem; letter-spacing: 0.4em;
    color: var(--text-dim); text-transform: uppercase;
    margin-bottom: 2rem;
}
.tl-tension-arrow {
    color: var(--primary);
    font-size: 1.1rem;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

/* ---- Keyframes ---- */
@keyframes tensionPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.05); }
}
@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50%       { transform: translateY(8px); opacity: 1; }
}
@keyframes glitchTop {
    0%,  90%  { transform: none; opacity: 0; }
    91%  { transform: translateX(-4px); opacity: 0.7; }
    92%  { transform: translateX(4px);  opacity: 0.7; }
    93%  { transform: translateX(-2px); opacity: 0.7; }
    94%, 100% { transform: none; opacity: 0; }
}
@keyframes glitchBot {
    0%,  94% { transform: none; opacity: 0; }
    95%  { transform: translateX(4px);  opacity: 0.5; }
    96%  { transform: translateX(-4px); opacity: 0.5; }
    97%, 100% { transform: none; opacity: 0; }
}

/* ============================================================
   VERTICAL PHOTO CAROUSEL — inside each timeline node
   ============================================================ */

/* The carousel occupies the 3rd column (right) or 1st (left) */
.tl-node-carousel--right {
    grid-column: 3;
    grid-row: 1;
}
.tl-node-carousel--left {
    grid-column: 1;
    grid-row: 1;
}
.tl-node--flip .tl-node-carousel--left {
    grid-column: 1;
}

/* Clipping window — fixed height, hides overflow */
.tl-vc-mask {
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    /* Top & bottom fade */
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* Static single photo (used in ch01) */
.tl-node-photo {
    width: 100%;
    height: 520px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.tl-node-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(15%) brightness(0.88);
    transition: filter 0.4s ease, transform 0.4s ease;
}

@media (hover: hover) {
    .tl-node-photo:hover img {
        filter: grayscale(0%) brightness(1);
        transform: scale(1.03);
    }
}

/* Vertical scrolling strip */
.tl-vc-track {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    will-change: transform;
}

.tl-vc-track--up {
    animation: vc-scroll-up var(--vc-speed, 20s) linear infinite;
}
.tl-vc-track--down {
    animation: vc-scroll-down var(--vc-speed, 28s) linear infinite;
}

/* Pause on hover */
.tl-vc-mask:hover .tl-vc-track {
    animation-play-state: paused;
}

/* Individual photo */
.tl-vc-item {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.tl-vc-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    filter: grayscale(45%) brightness(0.72) contrast(1.1);
    transition: filter 0.5s ease, transform 0.5s ease;
    transform: scale(1.02);
}

.tl-vc-item:hover img {
    filter: grayscale(0%) brightness(0.9) contrast(1.05);
    transform: scale(1.06);
}

/* Red line on hover */
.tl-vc-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.tl-vc-item:hover::after { transform: scaleX(1); }

@keyframes vc-scroll-up {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
}
@keyframes vc-scroll-down {
    from { transform: translateY(-50%); }
    to   { transform: translateY(0); }
}
/* Horizontal versions for mobile */
@keyframes vc-h-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes vc-h-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .tl-node {
        grid-template-columns: 32px 1fr;
        grid-template-rows: auto auto;
        padding: 3rem clamp(1.5rem, 4vw, 3rem);
        gap: 0 1.2rem;
    }
    .tl-node-dot {
        grid-column: 1; grid-row: 1;
        padding-top: 0.8rem;
    }
    .tl-node-content--left,
    .tl-node-content--right {
        grid-column: 2; grid-row: 1;
        text-align: left; padding: 0;
    }
    .tl-node--flip .tl-node-content--right {
        grid-column: 2;
    }
    .tl-node-carousel--right,
    .tl-node-carousel--left {
        grid-column: 1 / 3;
        grid-row: 2;
        margin-top: 1.5rem;
    }
    .tl-node--flip .tl-node-carousel--left {
        grid-column: 1 / 3;
        grid-row: 2;
    }
    .tl-node-photo {
        height: 260px;
    }
    .tl-node-photo img {
        object-position: center center;
    }
    .tl-vc-mask {
        height: 280px;
        overflow-x: auto;
        overflow-y: hidden;
        mask-image: none;
        -webkit-mask-image: none;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
    }
    .tl-vc-mask::-webkit-scrollbar { display: none; }
    .tl-vc-track {
        width: max-content;
        min-width: max-content;
        flex-direction: row;
        animation: none !important;
    }
    .tl-vc-item {
        width: clamp(160px, 42vw, 220px);
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    .tl-vc-item img { width: clamp(160px, 42vw, 220px); height: 260px; aspect-ratio: unset; }

    .tl-spine { left: clamp(1.5rem, 4vw, 3rem); }
    .tl-node-year { font-size: 3rem; }

    /* História — abas e educação (mobile) */
    .timeline-section {
        padding-bottom: 4.5rem;
    }
    .tl-header {
        padding: 4rem clamp(1rem, 4vw, 2rem) 2rem;
    }
    .timeline-story-tabs {
        margin-bottom: 2.25rem;
        padding: 0 clamp(0.75rem, 3vw, 1.25rem);
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.5rem;
    }
    #tl-panel-education {
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }
    .tl-node--edu .tl-chapter-tag--edu {
        font-size: 0.58rem;
        letter-spacing: 0.08em;
    }
    .tl-node--edu .tl-edu-role-line {
        font-size: 0.76rem;
    }
    .tl-node--edu .tl-chapter-desc {
        font-size: 0.9rem;
    }
}

@media (max-width: 560px) {
    .timeline-story-tabs .downloads-tab {
        font-size: 0.82rem;
        padding: 0.48rem 0.65rem;
        letter-spacing: 0.06em;
        flex: 1 1 auto;
        min-width: 0;
        text-align: center;
    }
    .tl-header .section-title {
        font-size: clamp(1.35rem, 7vw, 1.75rem);
    }
}

@media (max-width: 400px) {
    .timeline-story-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.45rem;
        padding: 0 0.5rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    .timeline-story-tabs .downloads-tab {
        font-size: 0.76rem;
        padding: 0.5rem 0.45rem;
    }
}

/* ============================================================
   MOBILE — melhorias abrangentes
   ============================================================ */

/* ---- Tablet: reduz espaçamento das seções ---- */
@media (max-width: 960px) {
    .about         { padding: 4.5rem 0; }
    .music         { padding: 4.5rem 0; }
    .lugares-section { padding: 4rem 0 5rem; }
    .featured-set  { padding: 4rem 0 3rem; }
}

/* ---- Mobile médio (≤768px) ---- */
@media (max-width: 768px) {
    /* Hero: foto de fundo ancorada à direita (a figura fica no canto) */
    .hero-bg-img {
        object-position: 72% 42%;
    }
    .hero {
        padding-top: calc(var(--nav-total) + 2.5rem);
        padding-bottom: 4rem;
    }
    .hero::before {
        background: linear-gradient(
            165deg,
            rgba(6, 4, 14, 0.9) 0%,
            rgba(6, 4, 14, 0.52) 50%,
            rgba(6, 4, 14, 0.22) 100%
        );
    }

    /* Hero logo: centralizado */
    .hero-logo-wrap { margin-left: auto; margin-right: auto; }
    .hero-logo-img  { margin: 0 auto; }

    /* Hero title centralizado */
    .hero-title { align-items: center; }

    /* Hero desc: centralizado e sem max-width apertada */
    .hero-desc { max-width: 100%; font-size: 0.92rem; }

    /* Hero buttons: centralizar e deixar um pouco menores */
    .hero-buttons { margin-bottom: 2.5rem; }

    /* Seções */
    .about  { padding: 3.5rem 0; }
    .music  { padding: 3.5rem 0; }
    .section-header { margin-bottom: 2rem; }
    .about-grid { gap: 2rem; }
    .about-text { font-size: 0.91rem; line-height: 1.75; margin-bottom: 0.95rem; }

    /* Embeds: altura menor */
    .sc-card--tall  iframe { height: 280px; }
    .sc-card--video iframe { height: 280px; }

    /* Tabs de música */
    .stream-tabs { margin: 1.5rem 0 1.25rem; }

    /* Booking */
    .booking-desc { font-size: 0.95rem; margin-bottom: 2.25rem; }
}

/* ---- Mobile pequeno (≤520px) ---- */
@media (max-width: 520px) {
    /* Hero: reforça canto direito em telas estreitas */
    .hero-bg-img {
        object-position: 74% 38%;
    }
    .hero {
        padding-top: calc(var(--nav-total) + 2rem);
        padding-bottom: 3rem;
    }
    .hero-logo-img {
        height: clamp(120px, 34vw, 200px);
    }
    .hero-pill {
        font-size: 0.62rem;
        padding: 0.38rem 0 0.38rem 0.85rem;
        margin-bottom: 1.5rem;
    }
    .hero-desc {
        font-size: 0.86rem;
        margin-bottom: 2rem;
    }
    .hero-buttons { margin-bottom: 2rem; }

    /* Seções */
    .about  { padding: 3rem 0; }
    .music  { padding: 3rem 0; }
    .lugares-section { padding: 3rem 0 4rem; }

    /* About: limitar altura da foto em telas muito pequenas */
    .about-image-wrapper { max-width: 260px; }
    .about-photo { max-height: 340px; }
    .about-text  { font-size: 0.87rem; margin-bottom: 0.8rem; }

    /* Embeds: ainda menores */
    .sc-card--tall  iframe { height: 230px; }
    .sc-card--video iframe { height: 230px; }
    .sc-card iframe        { height: 146px; }

    /* Tabs de música: compactas */
    .stream-tab   { padding: 0.42rem 0.75rem; font-size: 0.68rem; gap: 0.3rem; }
    .stream-tab i { font-size: 0.9rem; }
    .stream-tabs  { gap: 0.3rem; }

    /* CTA e plataformas */
    .stream-cta     { font-size: 0.74rem; padding: 0.75rem 1.25rem; }
    .platforms-label { font-size: 0.62rem; letter-spacing: 0.18em; margin-bottom: 1.1rem; }
    .platforms-row  { gap: 0.5rem; }
    .platform-link  { font-size: 0.76rem; padding: 0.55rem 0.85rem; }

    /* Booking */
    .booking-desc { font-size: 0.88rem; margin-bottom: 1.75rem; }
    .booking-buttons .btn { min-width: 260px; }

    /* Sixx House */
    .fs-desc    { font-size: 0.86rem; }
    .fs-eyebrow { font-size: 0.58rem; }
}

/* ---- Telas muito pequenas (≤380px) ---- */
@media (max-width: 380px) {
    .hero-bg-img {
        object-position: 76% 35%;
    }
    .hero-logo-img { height: clamp(100px, 32vw, 160px); }
    .hero-pill { font-size: 0.56rem; letter-spacing: 0.06em; }
    .stream-tab span { display: none; }   /* só ícone nas abas */
    .stream-tab { padding: 0.45rem 1rem; }
    .booking-buttons .btn { min-width: 0; width: 100%; }
}

/* =============================================================
   AFTERMOOVIE SECTION
   ============================================================= */

.aftermoovie-section {
    position: relative;
    padding: 8rem 0 7rem;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%,   rgba(139, 63, 208, 0.13) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 100%, rgba(139, 63, 208, 0.07) 0%, transparent 55%),
        #040404;
    border-top: 1px solid rgba(139, 63, 208, 0.14);
    overflow: hidden;
}

.am-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%,   rgba(139, 63, 208, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 50% 100%, rgba(139, 63, 208, 0.06) 0%, transparent 55%);
    z-index: 0;
    animation: amGlowPulse 6s ease-in-out infinite;
}

@keyframes amGlowPulse {
    0%, 100% { opacity: 0.7; }
    50%       { opacity: 1; }
}

.am-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.am-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* ---- Header ---- */
.am-header {
    text-align: center;
    max-width: 680px;
}

.am-title {
    font-family: var(--font);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
    margin: 0.5rem 0 0.6rem;
    text-shadow:
        0 0 40px rgba(139, 63, 208, 0.55),
        0 0 80px rgba(139, 63, 208, 0.25);
    position: relative;
}

.am-title::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #c084fc 0%, #8b3fd0 40%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.18;
    pointer-events: none;
}

.am-subtitle {
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--purple-light, #c084fc);
    margin: 0 0 1.2rem;
    opacity: 0.85;
}

.am-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

/* ---- Player frame ---- */
.am-player {
    position: relative;
    width: 100%;
    max-width: 1000px;
}

.am-yt-glow {
    position: absolute;
    inset: -30px;
    border-radius: 24px;
    background: radial-gradient(ellipse at center, rgba(139, 63, 208, 0.35) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: amGlowPulse 4s ease-in-out infinite;
}

.am-yt-border {
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(139, 63, 208, 0.5), transparent 50%, rgba(139, 63, 208, 0.2));
    z-index: 1;
    pointer-events: none;
}

.am-yt-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(10, 4, 20, 0.9);
    box-shadow:
        0 0 0 1px rgba(139, 63, 208, 0.25),
        0 30px 80px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(139, 63, 208, 0.12);
}

.am-yt-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

/* ---- Placeholder (enquanto não tem o YouTube ID) ---- */
.am-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(10, 4, 20, 0.95);
    border-radius: 16px;
}

.am-placeholder-icon {
    font-size: 3.5rem;
    color: rgba(139, 63, 208, 0.45);
    animation: amIconPulse 3s ease-in-out infinite;
}

@keyframes amIconPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50%       { opacity: 0.75; transform: scale(1.08); }
}

.am-placeholder-text {
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

/* ---- CTA ---- */
.am-cta-wrap {
    display: flex;
    justify-content: center;
}

.am-cta--disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .aftermoovie-section { padding: 5rem 0 4rem; }
    .am-desc { font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .aftermoovie-section { padding: 4rem 0 3rem; }
    .am-yt-glow { inset: -15px; }
}

/* ---- Suporte (#suporte): mesmo layout dos Drops + poster JPG + vídeo lazy ---- */

.sup-desc {
    font-size: clamp(0.82rem, 1.2vw, 0.92rem);
    color: rgba(200, 195, 215, 0.72);
    line-height: 1.75;
    max-width: 600px;
    margin-top: 1.2rem;
    letter-spacing: 0.01em;
}

.sup-artist {
    color: var(--primary-light, #b06eff);
    font-weight: 600;
    white-space: nowrap;
}

#suporte .drop-poster-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

#suporte .drop-thumb video {
    position: absolute;
    inset: 0;
    z-index: 1;
}

#suporte .drop-thumb video:not([src]) {
    opacity: 0;
}

#suporte .drop-overlay {
    z-index: 2;
}
