/* ══════════════════════════════════
   RESET & VARIABLES
══════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: url(assets/RUIDO.png);
    --bg-light: #FFFFFF;
    --bg-light-off: #F7F5F0;
    --yellow: #EFB721;
    --yellow-dim: rgba(239, 183, 33, 0.15);
    --white: #F5F0E8;
    --dark-text: #1A1A1A;
    --dark-text-muted: rgba(26, 26, 26, 0.65);
    --gray: #2a2a2a;
    --gray2: #333;
    --gray-light: #E8E5DF;
    --font-title: 'Unbounded', sans-serif;
    --font-body: 'Encode Sans Condensed', sans-serif;
    --header-h: 68px;
}

html { scroll-behavior: smooth; }

body {
    background-image: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 2px; }

.section-light {
    background: var(--bg-light);
    color: var(--dark-text);
}

.section-dark {
    background: var(--bg);
    color: var(--white);
}

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    background: rgba(26, 26, 26, 0.15);
    backdrop-filter: blur(10px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid rgba(239, 183, 33, 0.12);
    animation: headerDrop .6s ease both;
}

@keyframes headerDrop {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-hex {
    width: 38px; height: 38px;
}

@keyframes spinHex {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.logo-text {
    font-family: var(--font-title);
    font-size: .72rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: .04em;
    line-height: 1.15;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    font-family: var(--font-title);
    font-size: .62rem;
    font-weight: 600;
    color: var(--yellow);
    text-decoration: none;
    letter-spacing: .08em;
    position: relative;
    transition: opacity .2s;
    white-space: nowrap;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--yellow);
    transition: width .3s ease;
}

nav a:hover::after { width: 100%; }
nav a:hover { opacity: .8; }

.header-contato {
    font-family: var(--font-title);
    font-size: .62rem;
    font-weight: 700;
    color: var(--bg);
    background: var(--yellow);
    text-decoration: none;
    letter-spacing: .08em;
    padding: 8px 18px;
    border-radius: 3px;
    transition: background .2s, transform .2s;
    white-space: nowrap;
}

.header-contato:hover {
    background: #f5c840;
    transform: translateY(-1px);
}

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--yellow);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu ── */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(26, 26, 26, .97);
    backdrop-filter: blur(18px);
    z-index: 99;
    padding: 28px 32px 36px;
    flex-direction: column;
    gap: 24px;
    border-bottom: 1px solid rgba(239, 183, 33, .15);
    animation: slideMobile .3s ease both;
}

@keyframes slideMobile {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--yellow);
    text-decoration: none;
    letter-spacing: .06em;
    padding: 8px 0;
    border-bottom: 1px solid rgba(239, 183, 33, .1);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
#hero {
    position: relative;
    height: 100svh;
    min-height: 520px;
    padding-top: var(--header-h);
    overflow: hidden;
}

.hero-track {
    display: flex;
    height: 100%;
    overflow: hidden; /* o JS controla tudo, sem scroll nativo */
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.hero-track.is-dragging { cursor: grabbing; }

.hero-card {
    position: relative;
    flex: 0 0 26vw;
    min-width: 200px;
    overflow: hidden;
    transition: flex .5s cubic-bezier(.4, 0, .2, 1),
    transform .5s cubic-bezier(.4, 0, .2, 1);
    will-change: flex;
}

@media (hover: hover) {
    .hero-card:hover .card-bg {
        transform: scale(1.04);
        filter: brightness(.42);
    }
    .hero-card:hover .hero-card-label {
        color: var(--yellow);
        transform: translateY(-6px);
    }
}

.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1), filter .5s;
    filter: brightness(.55);
    will-change: transform;
}

.card-bg--1 { background-image: url("assets/HERO_SOBRE.png") }
.card-bg--2 { background-image: url(assets/HERO_PORTFOLIO.png); }
.card-bg--3 { background-image: url(assets/HERO_EVENTOS.png); }
.card-bg--4 { background-image: url(assets/HERO_GUIA.png); }
.card-bg--5 { background-image: url("assets/HERO-LOCALIZACAO.png"); }

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .16;
    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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.hero-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 65%;
    z-index: 2;
    background: linear-gradient(to top, rgba(26,26,26,.92) 0%, transparent 100%);
}

.hero-card + .hero-card { border-left: 1px solid rgba(239,183,33,.15); }

.hero-card-label {
    position: absolute;
    bottom: 40px; left: 28px;
    z-index: 3;
    font-family: var(--font-title);
    font-size: clamp(1rem, 1.8vw, 1.8rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: .04em;
    text-transform: uppercase;
    text-shadow: 0 4px 24px rgba(0,0,0,.8);
    transition: color .35s, transform .35s;
    white-space: nowrap;
    pointer-events: auto; /* clique só no label */
}

.hero-scroll-hint {
    position: absolute;
    bottom: 20px; right: 28px;
    z-index: 10;
    display: flex;
    gap: 6px;
    align-items: center;
    opacity: 1;
    transition: opacity .4s;
}

.hero-scroll-hint span {
    display: block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(239,183,33,.5);
    animation: hintPulse 1.6s ease-in-out infinite;
}

.hero-scroll-hint span:nth-child(2) { animation-delay: .2s; }
.hero-scroll-hint span:nth-child(3) { animation-delay: .4s; }

@keyframes hintPulse {
    0%, 100% { opacity: .4; transform: scale(1); }
    50%       { opacity: 1;  transform: scale(1.4); }
}

/* Mobile: cards maiores */
@media (max-width: 900px) {
    .hero-card { flex: 0 0 72vw; }
    .hero-card-label { font-size: 1.3rem; }
}

@media (max-width: 620px) {
    #hero { height: 60svh; min-height: 320px; }
    .hero-card { flex: 0 0 85vw; }
    .hero-card-label { font-size: 1.1rem; bottom: 22px; left: 16px; }
    .hero-scroll-hint { right: 16px; bottom: 16px; }
}

/* ══════════════════════════════════
   SOBRE — FUNDO ESCURO
══════════════════════════════════ */
#sobre {
    background: var(--bg);
    padding: 90px 0 80px;
}

.sobre-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 900;
    letter-spacing: .02em;
    margin-bottom: 40px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--white);
}

.section-title--dark {
    color: var(--dark-text);
}

/* Seções escuras: forçar branco independente da classe */
#sobre .section-title,
#artistas .section-title,
#tabela .section-title,
#faq .section-title {
    color: var(--white);
}

/* Seções claras: forçar escuro */
#portfolio .section-title,
#eventos .section-title {
    color: var(--dark-text);
}

.section-title .slash {
    color: var(--yellow);
    font-style: italic;
    font-weight: 400;
}

.sobre-top {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
    margin-bottom: 60px;
}

.sobre-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.8);
    margin-bottom: 18px;
}

.sobre-text strong.yellow { color: var(--yellow); font-weight: 600; }
.sobre-text strong { color: var(--white); }

.sobre-photo {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 2.6/3;
    background: var(--gray);
}

.sobre-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.photo-placeholder-studio-out,
.photo-placeholder-studio-in {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("assets/interior.jpeg");
    background-size: cover;
    background-position: center;
    color: rgba(239, 183, 33, .35);
    font-size: .65rem;
    letter-spacing: .1em;
    text-align: center;
    padding: 20px;
    line-height: 1.8;
}

.photo-placeholder-studio-out { min-height: 200px; }
.photo-placeholder-studio-in  { min-height: 50px; }

.photo-placeholder {
    width: 100%; height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #222 0%, #2d2510 100%);
    color: rgba(239, 183, 33, .35);
    font-family: var(--font-title);
    font-size: .65rem;
    letter-spacing: .1em;
    text-align: center;
    padding: 20px;
    line-height: 1.8;
}

.anamel {
    background-image: url("assets/Anamel.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.photo-placeholder--sm {
    min-height: 60px;
    font-size: .55rem;
}

.sobre-bottom {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: start;
}

.ver-loc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    letter-spacing: .03em;
    transition: color .2s, gap .2s;
}

.ver-loc--dark {
    color: var(--dark-text);
}

/* No contexto de seção escura, ver-loc--dark também fica branco */
#sobre .ver-loc--dark,
#artistas .ver-loc--dark {
    color: var(--white);
}

#portfolio .ver-loc--dark,
#eventos .ver-loc--dark {
    color: var(--dark-text);
}

.ver-loc:hover { color: var(--yellow); gap: 14px; }
.ver-loc--dark:hover { color: var(--yellow); }
.ver-loc svg { transition: transform .2s; }
.ver-loc:hover svg { transform: translateX(3px); }

/* ══════════════════════════════════
   TICKER
══════════════════════════════════ */
.ticker-wrap {
    overflow: hidden;
    background: var(--yellow);
    padding: 12px 0;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    animation: ticker 22s linear infinite;
}

.ticker-item {
    font-family: var(--font-title);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    color: #1A1A1A;
    text-transform: uppercase;
    padding: 0 28px;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════
   NOSSOS ARTISTAS — FUNDO ESCURO
══════════════════════════════════ */
#artistas {
    background: var(--bg);
    padding: 90px 0 100px;
}

.artistas-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}

.artistas-title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    letter-spacing: .04em;
    margin-bottom: 52px;
    text-transform: uppercase;
    color: var(--white);
}

.artistas-title span { color: var(--yellow); }

.carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

.carousel-btn {
    flex-shrink: 0;
    width: 40px; height: 40px;
    background: none;
    border: none;
    color: var(--yellow);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, opacity .2s;
    opacity: .8;
    z-index: 2;
}

.carousel-btn--dark { color: var(--dark-text); opacity: .5; }
.carousel-btn--dark:hover { opacity: 1; }
.carousel-btn:hover { transform: scale(1.2); opacity: 1; }

.carousel-track-wrap { flex: 1; overflow: hidden; }

.carousel-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.artista-card {
    min-width: 100%;
    border: 1px solid rgba(239, 183, 33, .22);
    border-radius: 6px;
    display: grid;
    grid-template-columns: 260px 1fr;
    overflow: hidden;
    background: rgba(255,255,255,.02);
}

.artista-photo {
    background: linear-gradient(160deg, #1c1510 0%, #2a1a0a 100%);
    min-height: 420px;
}

.artista-photo .photo-placeholder { min-height: 420px; }

.artista-info {
    padding: 44px 44px 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artista-info .section-title { margin-bottom: 20px; }

.artista-info p {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(245, 240, 232, .75);
    margin-bottom: 14px;
}

.artista-p--dark { color: rgba(245, 240, 232, 0.75) !important; }
.artista-p--dark strong { color: var(--white); }

.artista-name {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 18px 0 22px;
    letter-spacing: .02em;
}

.artista-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-agende {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1.5px solid var(--white);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: background .25s, color .25s, border-color .25s;
    letter-spacing: .03em;
}

.btn-agende:hover {
    background: var(--yellow);
    color: #1A1A1A;
    border-color: var(--yellow);
}

.btn-ig {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border: 1.5px solid rgba(245, 240, 232, .4);
    border-radius: 3px;
    color: var(--white);
    text-decoration: none;
    transition: border-color .2s, color .2s;
}

.btn-ig:hover { border-color: var(--yellow); color: var(--yellow); }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    transition: background .2s, transform .2s;
    border: none;
}

.dot.active {
    background: var(--yellow);
    transform: scale(1.25);
}

/* ══════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════
   PORTFÓLIO + ARTES — FUNDO CLARO
══════════════════════════════════ */
#portfolio {
    background: var(--bg-light);
    padding: 90px 0 70px;
    overflow: hidden;
}

.portfolio-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.portfolio-bg-art {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
    opacity: .05;
    overflow: hidden;
}

.portfolio-bg-art img {
    width: 80%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.portfolio-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 900;
    letter-spacing: .04em;
    color: var(--dark-text);
}

.portfolio-sub {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--dark-text-muted);
    margin-top: 6px;
}

.portfolio-sub strong { color: var(--yellow); font-weight: 600; }

.portfolio-grid {
    position: relative;
    z-index: 1;
    column-count: 5;
    column-gap: 8px;
}

.pf-item {
    break-inside: avoid;
    margin-bottom: 8px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.pf-item img {
    width: 100%; height: auto;
    display: block;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
}

.pf-overlay {
    position: absolute;
    inset: 0;
    background: rgba(239,183,33,0);
    transition: background .35s;
}

.pf-item:hover img { transform: scale(1.06); }
.pf-item:hover .pf-overlay { background: rgba(239,183,33,.12); }
.pf-item:nth-child(3n+2) { outline: 1.5px solid rgba(239,183,33,.35); outline-offset: -1.5px; }

.portfolio-cta {
    text-align: center;
    margin: 48px 0 64px;
    position: relative;
    z-index: 1;
}

.btn-garanta {
    display: inline-block;
    padding: 14px 36px;
    background: var(--yellow);
    color: #1A1A1A;
    font-family: var(--font-title);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-decoration: none;
    border-radius: 3px;
    transition: background .2s, transform .2s, box-shadow .2s;
}

.btn-garanta:hover {
    background: #f5c840;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(239,183,33,.3);
}

/* ── Artes Disponíveis ── */
.artes-header {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.artes-title {
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: .03em;
    color: var(--dark-text);
}

.artes-sub {
    font-size: 1rem;
    color: var(--dark-text-muted);
    margin-top: 6px;
}

.artes-sub strong { color: var(--yellow); }

.artes-track-wrap {
    position: relative;
    z-index: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.artes-track-wrap::-webkit-scrollbar { display: none; }

.artes-track {
    display: flex;
    gap: 16px;
    padding: 15px 10px;
}

.arte-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(239,183,33,.2);
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
}

.arte-card--light {
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-color: #1a1a1a;
}

.arte-card--featured {
    flex: 0 0 260px;
    border-color: var(--yellow);
    box-shadow: 0 0 0 1px var(--yellow);
}

.arte-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(239,183,33,.18);
}

.artes-ver-mais {
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════
   EVENTOS & PARCERIAS — FUNDO CLARO
══════════════════════════════════ */
#eventos {
    background: var(--bg-light);
    padding: 90px 0 0;
    overflow: hidden;
}

.eventos-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.eventos-title-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.eventos-ghost {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: .06em;
    color: transparent;
    text-shadow:
            1px  0   0 rgba(26,26,26,.06),
            -1px  0   0 rgba(26,26,26,.06);
    text-transform: uppercase;
    line-height: 0.85;
    user-select: none;
}
.eventos-title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: .03em;
    color: var(--dark-text);
    text-transform: uppercase;
    line-height: 0.85;
    margin: 0;
}

.eventos-title span { font-weight: 500; }

.eventos-sub {
    font-size: 1rem;
    color: var(--dark-text-muted);
    margin-top: 12px;
}

.eventos-sub strong { color: var(--dark-text); font-weight: 600; }

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
}

.evento-card { cursor: pointer; }

.evento-img {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 3/4;       /* entre 1:1 e 2:3, como você pediu */
    background: var(--gray);
    margin-bottom: 14px;
    position: relative;
}

/* foto ocupa tudo */
.evento-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .35s ease;
    z-index: 1;
}

/* vídeo embaixo, invisível por padrão */
.evento-img video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 2;
}

.evento-card:hover .evento-img img   { opacity: 0; }
.evento-card:hover .evento-img video { opacity: 1; }

.evento-info h4 {
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 6px;
    letter-spacing: .02em;
}

.evento-info p {
    font-size: .9rem;
    line-height: 1.6;
    color: var(--dark-text-muted);
    margin-bottom: 10px;
}

.evento-ver {
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 600;
    color: var(--yellow);
    text-decoration: none;
    letter-spacing: .04em;
    transition: opacity .2s;
}

.evento-ver:hover { opacity: .7; }

/* ══════════════════════════════════
   TABELA DE VALORES — FUNDO ESCURO
══════════════════════════════════ */
#tabela {
    background: var(--bg);
    padding: 90px 0 80px;
}

.tabela-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}

.tabela-header {
    margin-bottom: 40px;
}

.tabela-sub {
    font-size: 1rem;
    color: rgba(245,240,232,.6);
    margin-top: -28px;
    margin-bottom: 6px;
}

.tabela-wrap {
    max-width: 680px;
}

.tabela-valores {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.tabela-valores tr {
    border-bottom: 1px solid rgba(245,240,232,.08);
}

.tabela-valores tr:first-child { border-top: 1px solid rgba(245,240,232,.08); }

.tabela-num {
    font-family: var(--font-title);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--white);
    padding: 14px 20px 14px 0;
    width: 50%;
}

.tabela-preco {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    padding: 14px 0;
    text-align: right;
}

.tabela-obs {
    font-size: .85rem;
    color: rgba(245,240,232,.45);
    line-height: 1.6;
    font-style: italic;
}

.tabela-cta {
    margin-top: 40px;
}

.tabela-sub strong { color: var(--white); }

.tabela-num .num-destaque {
    color: var(--yellow);
    font-weight: 700;
}

.tabela-obs strong,
.tabela-obs a {
    color: var(--yellow);
    font-weight: 600;
    text-decoration: none;
}

.tabela-obs a:hover { text-decoration: underline; }

/* ══════════════════════════════════
   GUIA — FUNDO ESCURO
══════════════════════════════════ */
#guia {
    background: var(--bg);
    padding: 90px 0;
    position: relative;
}

#guia::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--yellow), transparent);
}

.guia-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}

.guia-header { margin-bottom: 56px; }

.guia-sub {
    font-size: 1.05rem;
    color: rgba(245,240,232,.6);
    margin-top: -24px;
}

.guia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.guia-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(239,183,33,.14);
    border-radius: 6px;
    padding: 28px 28px 32px;
    position: relative;
    transition: border-color .3s, background .3s, transform .3s;
}

.guia-card:hover {
    border-color: rgba(239,183,33,.45);
    background: rgba(239,183,33,.04);
    transform: translateY(-4px);
}

.guia-num {
    font-family: var(--font-title);
    font-size: 2.4rem;
    font-weight: 900;
    color: rgba(239,183,33,.2);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}

.guia-card h3 {
    font-family: var(--font-title);
    font-size: .85rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: .06em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.guia-card p {
    font-size: .97rem;
    line-height: 1.7;
    color: rgba(245,240,232,.7);
}

/* ══════════════════════════════════
   FAQ — FUNDO ESCURO
══════════════════════════════════ */
#faq {
    background: var(--bg);
    padding: 90px 0 80px;
}

.faq-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-header { margin-bottom: 48px; }

.faq-tag {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 700;
    color: var(--bg);
    background: var(--yellow);
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: .06em;
    vertical-align: middle;
    margin-left: 4px;
    font-style: normal;
    display: inline-block;
}

.faq-sub {
    font-size: 1rem;
    color: rgba(245,240,232,.6);
    margin-top: -24px;
}

.faq-sub strong { color: var(--white); }

.faq-list {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(245,240,232,.1);
}

.faq-item {
    border-bottom: 1px solid rgba(245,240,232,.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    letter-spacing: .01em;
    transition: color .2s;
}

.faq-question:hover { color: var(--yellow); }
.faq-question[aria-expanded="true"] { color: var(--yellow); }

.faq-icon {
    flex-shrink: 0;
    transition: transform .3s ease;
    color: var(--white);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: var(--yellow);
}

.faq-answer {
    display: none;
    padding: 0 0 20px;
}

.faq-answer.open { display: block; }

.faq-answer p {
    font-size: .97rem;
    line-height: 1.75;
    color: rgba(245,240,232,.65);
}

/* ══════════════════════════════════
   LOCALIZAÇÃO — FUNDO ESCURO
══════════════════════════════════ */
#localizacao {
    background: var(--bg);
    padding: 90px 0;
    border-top: 1px solid rgba(239,183,33,.1);
}

.loc-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}

.loc-header { margin-bottom: 48px; }

.loc-onde-title {
    font-family: var(--font-title);
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 900;
    letter-spacing: .02em;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
}

.loc-onde-yellow {
    color: var(--yellow);
    display: block;
}

.loc-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.loc-map {
    border-radius: 6px;
    overflow: hidden;
    min-height: 380px;
    border: 1px solid rgba(239,183,33,.15);
    background: var(--gray);
}

.loc-map iframe {
    display: block;
    width: 100%; height: 100%;
    min-height: 380px;
    filter: grayscale(1) invert(0.9) contrast(0.85);
    transition: filter .3s;
}

.loc-map:hover iframe { filter: grayscale(.4) invert(0.85) contrast(0.9); }

.loc-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.loc-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.loc-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border: 1px solid rgba(239,183,33,.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
}

.loc-item strong {
    display: block;
    font-family: var(--font-title);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--yellow);
    margin-bottom: 4px;
}

.loc-item span {
    font-size: .97rem;
    line-height: 1.65;
    color: rgba(245,240,232,.75);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: #fff;
    font-family: var(--font-title);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-decoration: none;
    border-radius: 4px;
    transition: background .2s, transform .2s;
    align-self: flex-start;
}

.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }

/* Mini cards artistas na localização */
.loc-artistas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.loc-artista-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(239,183,33,.15);
    border-radius: 6px;
    transition: border-color .2s, background .2s;
}

.loc-artista-card:hover {
    border-color: rgba(239,183,33,.4);
    background: rgba(239,183,33,.04);
}

.loc-artista-photo {
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gray);
}

.loc-artista-photo .photo-placeholder--sm {
    width: 100%; height: 100%;
    min-height: unset;
    border-radius: 50%;
    font-size: .5rem;
    background: linear-gradient(135deg, #2a2a2a, #3a2a10);
    color: rgba(239,183,33,.4);
}

.loc-artista-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.loc-artista-name {
    font-family: var(--font-title);
    font-size: .8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .02em;
}

.loc-artista-role {
    font-size: .85rem;
    color: rgba(245,240,232,.5);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
    background: #111;
    border-top: 1px solid rgba(239,183,33,.15);
    padding: 40px 40px;
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo span {
    font-family: var(--font-title);
    font-size: .72rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: .06em;
    line-height: 1.4;
}

.footer-logo small {
    display: block;
    font-size: .62rem;
    color: rgba(245,240,232,.4);
    font-weight: 400;
    letter-spacing: .04em;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid rgba(239,183,33,.25);
    border-radius: 50%;
    color: rgba(245,240,232,.6);
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
}

.social-link:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(239,183,33,.08);
}

.footer-copy {
    font-size: .85rem;
    color: rgba(245,240,232,.35);
    letter-spacing: .03em;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
    nav { display: none; }
    .header-contato { display: none; }
    .hamburger { display: flex; }

    .sobre-top { grid-template-columns: 1fr; gap: 32px; }
    .sobre-bottom { grid-template-columns: 1fr; gap: 32px; }
    .sobre-photo { max-height: 260px; }

    .artista-card { grid-template-columns: 1fr; }
    .artista-photo,
    .artista-photo .photo-placeholder { min-height: 280px; }
    .artista-info { padding: 28px 24px; }

    .guia-grid { grid-template-columns: repeat(2, 1fr); }

    .loc-content { grid-template-columns: 1fr; gap: 32px; }
    .loc-map { min-height: 280px; }
    .loc-map iframe { min-height: 280px; }

    .portfolio-grid { column-count: 3; }

    .eventos-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
}

@media (max-width: 620px) {
    :root { --header-h: 58px; }

    header { padding: 0 20px; }
    .logo-text { font-size: .62rem; }

    .sobre-inner,
    .artistas-inner,
    .portfolio-inner,
    .tabela-inner,
    .faq-inner,
    .guia-inner,
    .loc-inner { padding: 0 20px; }

    #sobre,
    #artistas,
    #portfolio,
    #tabela,
    #faq,
    #guia,
    #localizacao { padding: 60px 0; }

    .carousel-btn { width: 28px; font-size: 1.5rem; }
    .section-title { font-size: 1.35rem; }
    .artistas-title { font-size: 1.6rem; }

    .portfolio-grid { column-count: 2; column-gap: 6px; }
    .pf-item { margin-bottom: 6px; }
    .arte-card { flex: 0 0 170px; }
    .arte-card--featured { flex: 0 0 200px; }

    #eventos { padding-top: 60px; }
    .eventos-inner { padding: 0 20px 60px; }

    .parcerias-left { padding: 16px 20px; }
    .parcerias-word { font-size: .9rem; }

    .guia-grid { grid-template-columns: 1fr; gap: 20px; }
    .guia-sub { margin-top: 8px; }

    .faq-sub { margin-top: 8px; }

    .loc-onde-title { font-size: 2.4rem; }
    .loc-artistas { flex-direction: row; flex-wrap: wrap; }
    .loc-artista-card { flex: 1 1 calc(50% - 6px); min-width: 140px; }

    footer { padding: 32px 20px; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }

    .tabela-wrap { overflow-x: auto; }

    .eventos-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Artes track: cursor grab ── */
.artes-track-wrap {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.artes-track-wrap:active {
    cursor: grabbing;
}

/* impede que imagens/cards iniciem drag nativo do browser */
.artes-track .arte-card {
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none; /* evita conflito durante drag */
}

/* mas reativa pointer-events quando NÃO está arrastando */
.artes-track-wrap:not(:active) .arte-card {
    pointer-events: auto;
}

/* ── Wrapper Tabela + Guia com SVG decorativo ── */
.tabela-guia-wrap {
    position: relative;
}

.tabela-guia-deco {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 90%;   /* maior que a section pra vazar pro guia */
    width: auto;
    opacity: .08;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    display: block;
}
.tabela-inner,
.guia-inner {
    position: relative;
    z-index: 1;
}

@media (max-width: 620px) {
    .tabela-guia-deco {
        width: 85%;
        right: 50%;
        transform: translate(50%, 20%);
        top: auto;
        bottom: 0;
        opacity: .05;
    }
}