/* ==========================================================================
   DJ Duda Master — cartaz de festa retrô, premium
   ========================================================================== */

:root {
    --bg: #140b13;
    --bg2: #1c1120;
    --paper: #f4ecdd;
    --ink: #1a0f16;
    --text: #f5ece3;
    --text-dim: #b9a7ad;
    --pink: #ff3aa8;
    --cyan: #34e3ff;
    --gold: #eec161;
    --gold-ink: #c9962f;
    --radius: 0;
    --header-h: 84px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

h1, h2, h3, .disp {
    font-family: 'Bebas Neue', 'Segoe UI', sans-serif;
    letter-spacing: 0.02em;
    margin: 0;
    font-weight: 400;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container { width: min(1180px, 92%); margin: 0 auto; }

.section { padding: 110px 0; position: relative; }

.kicker {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 14px;
    display: block;
}

.section-title {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 0.96;
    margin-bottom: 18px;
}

.section-lead {
    color: var(--text-dim);
    max-width: 600px;
    margin-bottom: 56px;
    font-size: 1.02rem;
}

.laser-rule {
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--pink), var(--cyan), var(--gold));
    background-size: 200% 2px;
    opacity: .75;
    overflow: hidden;
    animation: laser-sweep 6s linear infinite;
}
@keyframes laser-sweep {
    0%   { background-position: 0% 0; }
    100% { background-position: -200% 0; }
}
.laser-rule::after {
    content: "";
    position: absolute;
    top: -3px; bottom: -3px; width: 70px;
    background: radial-gradient(circle, rgba(255,255,255,.95), transparent 70%);
    filter: blur(2px);
    animation: laser-dot 6s linear infinite;
}
@keyframes laser-dot {
    0%   { left: -70px; }
    100% { left: 100%; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 30px;
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.18s ease, opacity 0.18s ease;
    white-space: nowrap;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: linear-gradient(100deg, var(--gold), var(--pink)); color: var(--ink); }
.btn-primary:hover { opacity: .92; }

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(245,236,227,0.32);
    color: var(--text);
    clip-path: none;
    padding: 14.5px 28px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost {
    background: rgba(245,236,227,0.06);
    color: var(--text);
    clip-path: none;
    padding: 14.5px 28px;
}

.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* ---------- Header / nav ---------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--header-h);
    z-index: 100;
    display: flex;
    align-items: center;
    background: rgba(20, 11, 19, 0.7);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(245,236,227,0.08);
}

.nav-inner {
    width: min(1180px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: var(--text);
}
.logo span { color: var(--pink); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--cyan); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.6rem;
    cursor: pointer;
}

@media (max-width: 860px) {
    .nav-links {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: var(--bg2);
        border-bottom: 1px solid rgba(245,236,227,0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 8%;
        gap: 18px;
        transform: translateY(-130%);
        transition: transform 0.25s ease;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: var(--header-h);
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
    filter: saturate(1.05) contrast(1.05);
    transform: scale(1.08);
    will-change: transform;
}
.hero-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,11,19,.55) 0%, rgba(20,11,19,.74) 48%, var(--bg) 96%);
}
.hero-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 55% at 78% 8%, rgba(52,227,255,.16), transparent 60%);
}
.hero-lights {
    position: absolute;
    inset: -25%;
    z-index: 1;
    pointer-events: none;
    background: conic-gradient(from 0deg,
        rgba(255,58,168,.18), rgba(52,227,255,.16) 25%,
        transparent 45%, rgba(238,193,97,.16) 65%,
        transparent 85%, rgba(255,58,168,.18));
    mix-blend-mode: screen;
    filter: blur(60px);
    animation: lights-spin 30s linear infinite;
}
@keyframes lights-spin { to { transform: rotate(360deg); } }

.hero-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0 0;
}

.stamp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(238,193,97,.55);
    color: var(--gold);
    padding: 8px 18px;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    transform: rotate(-2deg);
    width: fit-content;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 9.5rem);
    line-height: 0.86;
    margin: 26px 0 0;
}
.hero-title .l1 {
    color: var(--gold);
    text-shadow: 0 0 46px rgba(238,193,97,.35);
    display: block;
    position: relative;
    animation: neon-flicker 6s ease-in-out infinite;
}
.hero-title .l2 {
    -webkit-text-stroke: 2px var(--pink);
    color: transparent;
    text-shadow: 0 0 34px rgba(255,58,168,.4);
    display: block;
    position: relative;
}

/* Neon sign flicker — linha "FLASHBACK" */
@keyframes neon-flicker {
    0%, 3%, 6%, 40%, 43%, 100% { opacity: 1; text-shadow: 0 0 46px rgba(238,193,97,.35); }
    4%, 5%, 41%, 42%           { opacity: .55; text-shadow: none; }
}

/* Glitch cromático (VHS tracking) — copia ciano/magenta some por cima do texto */
.hero-title .l1::before, .hero-title .l1::after,
.hero-title .l2::before, .hero-title .l2::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    pointer-events: none;
    -webkit-text-stroke: 0;
    text-shadow: none;
    opacity: 0;
}
.hero-title .l1::before, .hero-title .l2::before { color: var(--cyan); animation: glitch-cyan 9s ease-in-out infinite; }
.hero-title .l1::after,  .hero-title .l2::after  { color: var(--pink); animation: glitch-pink 9s ease-in-out infinite; }
.hero-title .l2::before, .hero-title .l2::after  { animation-delay: -3s; }

@keyframes glitch-cyan {
    0%, 94%, 100% { opacity: 0; transform: translate(0,0); clip-path: inset(0 0 100% 0); }
    94.5%         { opacity: .85; transform: translate(-4px,1px); clip-path: inset(15% 0 55% 0); }
    95.5%         { opacity: .7; transform: translate(-2px,-1px); clip-path: inset(55% 0 10% 0); }
    96.5%         { opacity: .85; transform: translate(-5px,0); clip-path: inset(75% 0 5% 0); }
    97.5%         { opacity: 0; clip-path: inset(0 0 100% 0); }
}
@keyframes glitch-pink {
    0%, 94%, 100% { opacity: 0; transform: translate(0,0); clip-path: inset(0 0 100% 0); }
    94.5%         { opacity: .85; transform: translate(4px,-1px); clip-path: inset(20% 0 50% 0); }
    95.5%         { opacity: .7; transform: translate(2px,1px); clip-path: inset(60% 0 8% 0); }
    96.5%         { opacity: .85; transform: translate(5px,0); clip-path: inset(78% 0 4% 0); }
    97.5%         { opacity: 0; clip-path: inset(0 0 100% 0); }
}

.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--text);
    max-width: 540px;
    margin: 28px 0 40px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 70px; }

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
    align-items: baseline;
    padding: 26px 0 44px;
    border-top: 2px solid transparent;
    background-image: linear-gradient(90deg, var(--gold), var(--pink), var(--cyan));
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: top;
}
.hero-stats .stat b { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; letter-spacing: .02em; }
.hero-stats .stat span { font-size: 0.72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-dim); margin-left: 8px; }
.hero-stats .sep { color: rgba(245,236,227,.3); }

/* ---------- Sobre ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo-frame {
    position: absolute;
    top: -22px; left: -22px;
    width: 100%; height: 100%;
    border: 1.5px solid rgba(238,193,97,.35);
    z-index: 0;
}
.about-photo {
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
    height: 560px;
    overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.about-photo::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(200deg, transparent 60%, rgba(20,11,19,.75));
}

.about-badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 26px 0 32px; }
.patch {
    border: 1px solid rgba(245,236,227,.3);
    padding: 9px 16px;
    font-size: 0.72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.patch.accent { color: var(--pink); border-color: rgba(255,58,168,.4); }
.about-text p { color: var(--text-dim); margin: 0 0 18px; font-size: 1.05rem; line-height: 1.75; }

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-photo-wrap { max-width: 380px; margin: 0 auto; }
    .about-photo-frame { display: none; }
}

/* ---------- Agenda / tickets ---------- */
.events-row { display: flex; flex-wrap: wrap; gap: 40px; }

.ticket {
    width: 100%;
    max-width: 540px;
    background: var(--paper);
    color: var(--ink);
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.ticket .thumb { position: relative; height: 210px; overflow: hidden; }
.ticket .thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.1) contrast(1.08); }
.ticket .halftone {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(20,11,19,.55) 1px, transparent 1.3px);
    background-size: 5px 5px;
    mix-blend-mode: multiply;
    opacity: .45;
}
.ticket .thumb::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(0deg, var(--paper) 2%, transparent 40%);
}
.ticket .split { display: flex; }
.ticket .info { flex: 1; padding: 26px 24px 28px; min-width: 0; }
.ticket .tag { font-size: 0.68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--pink); margin-bottom: 8px; }
.ticket h3 { font-size: 2.2rem; margin: 0 0 10px; letter-spacing: .02em; }
.ticket .meta { font-size: 0.86rem; color: #5a4a4f; margin-bottom: 22px; line-height: 1.7; }
.ticket .row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ticket .price { font-family: 'Bebas Neue', sans-serif; font-size: 1.55rem; }
.ticket .divider { width: 1px; background-image: linear-gradient(var(--ink) 60%, transparent 0%); background-size: 1px 12px; opacity: .25; }
.ticket .datebox {
    width: 108px; flex-shrink: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 20px 0;
}
.ticket .datebox .k { font-size: 0.62rem; letter-spacing: .18em; text-transform: uppercase; color: #8a7a7e; }
.ticket .datebox .day { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; line-height: .9; margin-top: 4px; }
.ticket .datebox .mon { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: .15em; }
.notch { position: absolute; width: 30px; height: 30px; background: var(--bg2); border-radius: 50%; left: calc(100% - 108px); margin-left: -15px; }
.notch.top { top: -15px; }
.notch.bottom { bottom: -15px; }
.sold-out-tag { font-weight: 700; color: #b23a3a; font-size: 0.86rem; }

.ticket-ghost {
    width: 100%; max-width: 540px;
    border: 1.5px dashed rgba(245,236,227,.3);
    display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
    padding: 44px; text-align: center;
    min-height: 260px;
}
.ticket-ghost .disp { font-size: 1.7rem; color: var(--text-dim); line-height: 1.15; }
.ticket-ghost p { font-size: 0.9rem; color: var(--text-dim); max-width: 320px; margin: 0; line-height: 1.6; }

.btn-ticket {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 22px; font-size: 0.78rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700;
    border: none; cursor: pointer; background: var(--ink); color: var(--paper);
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

/* ---------- Sets ---------- */
.sets-grid { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: center; }

.vinyl { position: relative; width: 320px; height: 320px; margin: 0 auto; }
.vinyl .disc {
    position: absolute; inset: 0; border-radius: 50%;
    background: repeating-radial-gradient(circle at 50% 50%, #0c0710 0 2px, #221420 2px 4px);
    box-shadow: 0 30px 70px rgba(0,0,0,.5);
    animation: vinyl-spin 3.6s linear infinite;
    animation-play-state: paused;
}
.vinyl.playing .disc { animation-play-state: running; }
@keyframes vinyl-spin { to { transform: rotate(360deg); } }
.vinyl .label {
    position: absolute; inset: 34%; border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--gold));
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.vinyl .label span { font-family: 'Bebas Neue', sans-serif; font-size: 0.85rem; color: var(--ink); letter-spacing: .06em; line-height: 1.1; }
.vinyl .hole { position: absolute; inset: 46.5%; border-radius: 50%; background: var(--bg); }
.vinyl .arm {
    position: absolute; top: -10px; right: 14px; width: 6px; height: 118px;
    background: var(--text-dim); transform: rotate(28deg); transform-origin: top center; border-radius: 3px; opacity: .7;
    transition: transform .5s ease;
}
.vinyl.playing .arm { transform: rotate(20deg); }
.vinyl::after {
    content: "";
    position: absolute; inset: 0; border-radius: 50%;
    background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.16) 45%, transparent 60%);
    animation: vinyl-shine 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes vinyl-shine {
    0%, 100% { transform: translateX(-30%); opacity: .35; }
    50%      { transform: translateX(30%); opacity: .75; }
}

.track-list { display: flex; flex-direction: column; }
.track-row {
    display: flex; align-items: center; gap: 20px;
    padding: 16px 8px;
    border-bottom: 1px solid rgba(245,236,227,.1);
    cursor: pointer;
}
.track-row:first-child { border-top: 1px solid rgba(245,236,227,.1); }
.track-row:hover { background: rgba(245,236,227,.04); }
.track-row .num { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; color: var(--text-dim); width: 44px; flex-shrink: 0; }
.track-row.active .num { color: var(--pink); }
.track-row .info { flex: 1; min-width: 0; }
.track-row .info .t-title { font-weight: 600; font-size: 0.98rem; }
.track-row .info .t-sub { font-size: 0.78rem; letter-spacing: .04em; color: var(--text-dim); }

.sc-hidden-embed { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* Persistent mini player — cassette deck styling */
.mini-player {
    position: fixed; left: 0; right: 0; bottom: -110px;
    background: var(--bg2);
    border-top: 1px solid rgba(245,236,227,.12);
    z-index: 200;
    transition: bottom 0.3s ease;
    padding: 18px 0;
}
.mini-player.visible { bottom: 0; }
.mini-player-inner {
    width: min(1180px, 92%); margin: 0 auto;
    display: flex; align-items: center; gap: 24px;
}
.reel {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: conic-gradient(var(--pink), var(--gold), var(--cyan), var(--pink));
    display: flex; align-items: center; justify-content: center;
    border: none; cursor: pointer;
}
.mini-player.playing .reel { animation: vinyl-spin 1.6s linear infinite; }
.reel .hub {
    width: 22px; height: 22px; border-radius: 50%; background: var(--bg2);
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; color: var(--text); line-height: 1;
}
.mini-player .track-meta { min-width: 0; width: 200px; flex-shrink: 1; }
.mini-player .track-meta .t-title { font-weight: 600; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-player .track-meta .t-sub { color: var(--text-dim); font-size: 0.74rem; }
.mini-player .progress-wrap { flex: 1; display: flex; align-items: center; gap: 12px; }
.mini-player .progress-bar { flex: 1; height: 2px; background: rgba(245,236,227,.15); position: relative; cursor: pointer; }
.mini-player .progress-fill { position: absolute; left:0; top:0; bottom:0; width:0%; background: linear-gradient(90deg, var(--pink), var(--gold)); }
.mini-player .time { font-size: 0.72rem; color: var(--text-dim); width: 36px; }
.mini-player .nav-btn { background: none; border: none; color: var(--text-dim); font-size: 1.2rem; cursor: pointer; flex-shrink: 0; }
.mini-player .nav-btn:hover { color: var(--cyan); }

@media (max-width: 860px) {
    .sets-grid { grid-template-columns: 1fr; }
    .vinyl { width: 220px; height: 220px; }
}
@media (max-width: 720px) {
    .mini-player .track-meta { width: 110px; }
    .mini-player .time:first-of-type { display: none; }
}

/* ---------- Galeria ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 26px;
    align-items: start;
}
.polaroid { background: var(--paper); padding: 12px 12px 40px; box-shadow: 0 20px 40px rgba(0,0,0,.4); cursor: pointer; }
.polaroid img { width: 100%; height: 240px; object-fit: cover; display: block; }
.gallery-plain { height: 380px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-plain img { width: 100%; height: 100%; object-fit: cover; }
.gallery-plain::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,11,19,.5), transparent 45%); pointer-events: none; }

.lightbox {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(6, 3, 12, 0.92);
    display: none; align-items: center; justify-content: center;
    padding: 5vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 88vh; box-shadow: 0 0 60px rgba(255,58,168,.2); }
.lightbox-close { position: absolute; top: 24px; right: 30px; font-size: 2rem; color: #fff; background: none; border: none; cursor: pointer; }

@media (max-width: 860px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid > * { grid-column: span 1 !important; }
}

/* ---------- Contratação ---------- */
.booking-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; }

.step { display: flex; gap: 20px; margin-bottom: 32px; }
.step .n { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; width: 56px; flex-shrink: 0; }
.step .n.c1 { color: var(--gold); }
.step .n.c2 { color: var(--pink); }
.step .n.c3 { color: var(--cyan); }
.step h4 { font-weight: 700; font-size: 1.02rem; margin: 0 0 6px; }
.step p { color: var(--text-dim); font-size: 0.92rem; line-height: 1.6; margin: 0; }

form.booking-form { background: var(--bg2); border: 1px solid rgba(245,236,227,.1); padding: 40px; }
.form-row { display: grid; gap: 6px; margin-bottom: 24px; }
.form-row.two { grid-template-columns: 1fr 1fr; gap: 22px; }
label { font-size: 0.68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); font-weight: 600; }
input, textarea, select {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(245,236,227,.28);
    padding: 12px 2px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    width: 100%;
    border-radius: 0;
}
input:focus, textarea:focus, select:focus { outline: none; border-bottom-color: var(--gold); }
textarea { resize: vertical; min-height: 80px; }
.form-note { font-size: 0.8rem; color: var(--text-dim); }
.form-feedback { font-size: 0.86rem; min-height: 20px; margin-top: 12px; }
.form-feedback.error { color: #ff6b6b; }
.form-feedback.success { color: #45f0a0; }

@media (max-width: 900px) {
    .booking-wrap { grid-template-columns: 1fr; }
    .form-row.two { grid-template-columns: 1fr; }
}

/* ---------- Contato / footer ---------- */
.social-row { display: flex; gap: 48px; flex-wrap: wrap; align-items: center; margin-bottom: 56px; }
.social-item { display: flex; align-items: center; gap: 14px; }
.social-badge {
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid rgba(245,236,227,.25);
    font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: .04em;
}
.social-item .label { font-weight: 700; }
.social-item .sub { color: var(--text-dim); font-size: 0.8rem; }

.site-footer {
    padding: 30px 0;
    border-top: 1px solid rgba(245,236,227,.1);
    color: var(--text-dim);
    font-size: 0.82rem;
}

/* ---------- Modal (checkout) ---------- */
.modal-overlay {
    position: fixed; inset: 0; z-index: 250;
    background: rgba(6,3,12,0.78);
    display: none; align-items: center; justify-content: center;
    padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
    background: var(--bg2);
    border: 1px solid rgba(245,236,227,.12);
    padding: 34px;
    width: min(440px, 100%);
    position: relative;
}
.modal-close { position: absolute; top: 18px; right: 20px; background: none; border: none; color: var(--text-dim); font-size: 1.4rem; cursor: pointer; }
.modal-box h3 { font-size: 1.7rem; margin-bottom: 6px; }
.modal-box .sub { color: var(--text-dim); font-size: 0.86rem; margin-bottom: 22px; }
.modal-box form { display: grid; }

.text-center { text-align: center; }

/* ==========================================================================
   IMERSÃO FLASHBACK — grão/scanlines globais, revelação de scroll
   ========================================================================== */

/* ---------- VHS: scanlines + grão sobre o site inteiro ---------- */
body::before {
    content: "";
    position: fixed; inset: 0;
    z-index: 9990;
    pointer-events: none;
    background: repeating-linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0,0,0,.05) 1px, rgba(0,0,0,0) 2px);
    mix-blend-mode: overlay;
}
body::after {
    content: "";
    position: fixed; inset: 0;
    z-index: 9991;
    pointer-events: none;
    background-image: radial-gradient(rgba(245,236,227,.8) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: .035;
    mix-blend-mode: overlay;
    animation: noise-shift .5s steps(1) infinite;
}
@keyframes noise-shift {
    0%   { transform: translate(0,0); }
    20%  { transform: translate(-1%,-1%); }
    40%  { transform: translate(1%,1%); }
    60%  { transform: translate(-1%,1%); }
    80%  { transform: translate(1%,-1%); }
    100% { transform: translate(0,0); }
}

/* ---------- Intro: mergulho retrowave / túnel do tempo ---------- */
body.intro-lock { overflow: hidden; height: 100vh; }

.intro-warp {
    position: fixed; inset: 0;
    z-index: 99999;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    cursor: pointer;
    animation: warp-sequence 3.2s cubic-bezier(.6,0,.85,1) forwards;
    transition: opacity .35s ease;
}
.intro-warp::after {
    content: "";
    position: absolute; inset: 0;
    background: repeating-linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0,0,0,.18) 1px, rgba(0,0,0,0) 2px);
    mix-blend-mode: overlay;
}
@keyframes warp-sequence {
    0%   { opacity: 0; transform: scale(1); filter: blur(0); }
    5%   { opacity: 1; }
    62%  { opacity: 1; transform: scale(1); filter: blur(0); }
    80%  { transform: scale(2.4); filter: blur(1px); }
    94%  { transform: scale(6); filter: blur(4px); opacity: 1; }
    100% { transform: scale(9); filter: blur(8px); opacity: 0; visibility: hidden; }
}

.warp-stars {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 20% 20%, rgba(245,236,227,.8), transparent),
        radial-gradient(1.5px 1.5px at 65% 12%, rgba(245,236,227,.6), transparent),
        radial-gradient(1px 1px at 85% 28%, rgba(245,236,227,.7), transparent),
        radial-gradient(1px 1px at 40% 8%, rgba(245,236,227,.5), transparent),
        radial-gradient(1.5px 1.5px at 10% 35%, rgba(245,236,227,.6), transparent),
        radial-gradient(1px 1px at 92% 15%, rgba(245,236,227,.6), transparent);
    background-size: 100% 55%;
    background-repeat: no-repeat;
}
.warp-sky {
    position: absolute; left: 0; right: 0; top: 0; height: 55%;
    background: linear-gradient(180deg, #0d0618 0%, #2a0f3d 40%, #6c1f6b 68%, #ff3aa8 88%, #eec161 100%);
}
.warp-sun {
    position: absolute; left: 50%; top: 34%;
    width: 320px; height: 320px;
    margin: -160px 0 0 -160px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gold) 0%, #ff8a3d 45%, var(--pink) 100%);
    box-shadow: 0 0 120px rgba(255,58,168,.55), 0 0 220px rgba(238,193,97,.35);
    overflow: hidden;
    animation: warp-sun-pulse 1.6s ease-in-out infinite;
}
.warp-sun::before {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 0; height: 55%;
    background: repeating-linear-gradient(180deg, transparent 0 7px, var(--bg) 7px 13px);
    opacity: .9;
}
@keyframes warp-sun-pulse {
    0%, 100% { box-shadow: 0 0 120px rgba(255,58,168,.55), 0 0 220px rgba(238,193,97,.35); }
    50%      { box-shadow: 0 0 150px rgba(255,58,168,.75), 0 0 260px rgba(238,193,97,.5); }
}
.warp-grid {
    position: absolute; left: -25%; right: -25%; bottom: 0; height: 50%;
    background:
        repeating-linear-gradient(90deg, rgba(52,227,255,.55) 0 2px, transparent 2px 60px),
        repeating-linear-gradient(0deg, rgba(52,227,255,.4) 0 2px, transparent 2px 40px);
    background-size: 60px 100%, 100% 40px;
    transform: perspective(300px) rotateX(65deg);
    transform-origin: bottom center;
    animation: warp-grid-move .5s linear infinite;
}
.warp-grid::before {
    content: "";
    position: absolute; left: 0; right: 0; top: 0; height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--pink), var(--gold));
    box-shadow: 0 0 24px rgba(255,58,168,.8);
}
@keyframes warp-grid-move {
    from { background-position: 0 0, 0 0; }
    to   { background-position: 0 0, 0 40px; }
}
.warp-logo {
    position: relative; z-index: 2;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: .12em;
    color: var(--text);
    text-shadow: 0 0 30px rgba(255,58,168,.6), 0 0 60px rgba(52,227,255,.4);
    opacity: 0;
    animation: warp-logo-seq 3.2s ease forwards;
}
.warp-logo .accent { color: var(--pink); }
.warp-hint {
    position: absolute; left: 0; right: 0; bottom: 34px;
    text-align: center;
    font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--text-dim);
    opacity: 0;
    animation: warp-hint-seq 3.2s ease forwards;
}
@keyframes warp-logo-seq {
    0%   { opacity: 0; transform: translateY(14px); }
    10%  { opacity: 1; transform: translateY(0); }
    55%  { opacity: 1; transform: translateY(0); }
    68%  { opacity: 0; transform: translateY(-14px); }
    100% { opacity: 0; }
}
@keyframes warp-hint-seq {
    0%, 20% { opacity: 0; }
    32%     { opacity: .65; }
    55%     { opacity: .65; }
    68%     { opacity: 0; }
    100%    { opacity: 0; }
}
.warp-flash {
    position: absolute; inset: 0;
    background: radial-gradient(circle, #fff 0%, var(--pink) 35%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    animation: warp-flash-seq 3.2s ease forwards;
}
@keyframes warp-flash-seq {
    0%, 78% { opacity: 0; }
    90%     { opacity: .95; }
    100%    { opacity: 0; }
}

/* ---------- CRT power-on ao carregar o hero ---------- */
@keyframes crt-on {
    0%   { filter: brightness(0) contrast(1.4); transform: scaleY(.015); }
    6%   { filter: brightness(4) contrast(1.4); transform: scaleY(1); }
    9%   { filter: brightness(.4); }
    14%  { filter: brightness(2.2); }
    18%  { filter: brightness(1); }
    100% { filter: brightness(1); transform: scaleY(1); }
}
.hero { animation: crt-on 1.2s cubic-bezier(.4,0,.2,1) both; }

/* ---------- Scroll cinematográfico: revelação das seções ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .8s cubic-bezier(.22,.68,0,1.01), transform .8s cubic-bezier(.22,.68,0,1.01);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* stagger automático do cabeçalho de seção (kicker -> título -> texto) */
.kicker.reveal { --reveal-delay: 0s; }
.kicker.reveal + .section-title { --reveal-delay: .1s; }
.kicker.reveal + .section-title + .section-lead { --reveal-delay: .2s; }

/* stagger dos grids repetidos */
.events-row > *:nth-child(1) { --reveal-delay: 0s; }
.events-row > *:nth-child(2) { --reveal-delay: .15s; }
.events-row > *:nth-child(3) { --reveal-delay: .3s; }
.events-row > *:nth-child(4) { --reveal-delay: .45s; }

.gallery-grid > *:nth-child(1) { --reveal-delay: 0s; }
.gallery-grid > *:nth-child(2) { --reveal-delay: .12s; }
.gallery-grid > *:nth-child(3) { --reveal-delay: .24s; }
.gallery-grid > *:nth-child(4) { --reveal-delay: .36s; }

.social-row .social-item:nth-child(1) { --reveal-delay: 0s; }
.social-row .social-item:nth-child(2) { --reveal-delay: .12s; }
.social-row .social-item:nth-child(3) { --reveal-delay: .24s; }

.booking-info.reveal { --reveal-delay: 0s; }
.booking-form.reveal { --reveal-delay: .15s; }
.about-photo-wrap.reveal { --reveal-delay: 0s; }
.about-grid > div:last-child.reveal { --reveal-delay: .15s; }

/* ---------- Acessibilidade: respeita quem pede menos movimento ---------- */
@media (prefers-reduced-motion: reduce) {
    body::before, body::after, .hero-lights { display: none !important; }
    .hero,
    .hero-title .l1,
    .hero-title .l1::before, .hero-title .l1::after,
    .hero-title .l2::before, .hero-title .l2::after,
    .laser-rule, .laser-rule::after,
    .vinyl .disc, .vinyl::after,
    .mini-player.playing .reel {
        animation: none !important;
    }
    .reveal { transition: none !important; }
    .intro-warp, .intro-warp * { animation: none !important; }
    .intro-warp { opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; }
    body.intro-lock { overflow: visible !important; height: auto !important; }
}
