/* ============================================================
   Biennale — Fonte local (todos os pesos usados no site)
   ============================================================ */
@font-face {
    font-family: 'Biennale';
    src: url('fonts/Biennale-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Biennale';
    src: url('fonts/Biennale-RegularIt.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Biennale';
    src: url('fonts/Biennale-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Biennale';
    src: url('fonts/Biennale-MediumIt.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Biennale';
    src: url('fonts/Biennale-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Biennale';
    src: url('fonts/Biennale-SemiBoldIt.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Biennale';
    src: url('fonts/Biennale-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Biennale';
    src: url('fonts/Biennale-BoldIt.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Biennale';
    src: url('fonts/Biennale-Heavy.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Biennale';
    src: url('fonts/Biennale-HeavyIt.woff2') format('woff2');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Biennale';
    src: url('fonts/Biennale-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Biennale';
    src: url('fonts/Biennale-BlackIt.woff2') format('woff2');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --bg-color: #ede8dd;
    --text-primary: #131313;
    --text-secondary: #666666;
    --neon-pink: #e03434;
    --dark-bg: #131313;
    --white: #ffffff;
    --light-creme: #fbf7f5;
    --cyan: #4ddbd7;
    --lime: #d9dd36;
    --green: #73d84e;
    --border-radius: 24px;
    --font-main: 'Biennale', sans-serif;
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    width: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    background-image: url('img/backgrounds/bg-waves.svg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    /* responsive width */
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: clip;
    width: 100%;
    touch-action: manipulation;
}

main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

/* Typography Elements */
h1 {
    font-size: 5.5rem;
    line-height: 0.9;
    letter-spacing: -0.04em;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.subtitle-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.subtitle-text .date-location {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.subtitle-text .date-location span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Utilities */
.center-align {
    text-align: center;
}

.tag-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag-pink {
    background-color: var(--neon-pink);
    color: var(--text-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

.btn-red {
    background-color: var(--neon-pink);
    color: var(--white);
}
.btn-red:hover {
    background-color: #cc2222;
}

.btn-light {
    background-color: var(--white);
    color: var(--dark-bg);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark-bg);
    border: 1px solid var(--text-primary);
}

.btn-brown {
    background-color: var(--brown-accent);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--dark-bg);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-neon {
    background-color: var(--neon-pink);
    color: var(--white);
}

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

.w-full {
    width: 100%;
}

.cta-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.top-red-bar {
    width: 100%;
    height: 12px;
    /* Small red bar at very top */
    background-color: var(--neon-pink);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

/* --- Top Info Bar --- */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: var(--neon-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: transform 0.35s ease;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tb-lot-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.tb-lot-timer {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.tb-lot-num {
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    font-variant-numeric: tabular-nums;
    min-width: 1.8ch;
    text-align: center;
}

.tb-lot-unit {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    margin-right: 0.2rem;
}

.tb-lot-sep {
    font-size: 0.9rem;
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    margin: 0 0.1rem;
}

.tb-lot-cta {
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 100px;
    padding: 0.25rem 0.85rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: background 0.2s;
}

.tb-lot-cta:hover {
    background: rgba(255,255,255,0.32);
}

/* --- Navigation --- */
.site-nav {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5%;
}

@keyframes navSlideDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}

.site-nav.scrolled {
    position: fixed;
    top: 0;
    background-color: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    animation: navSlideDown 0.3s ease forwards;
}

.site-nav.scrolled .nav-inner {
    height: 64px;
    display: flex;
    align-items: center;
}

.site-nav.scrolled .nav-brand {
    order: 1;
    padding-top: 0;
    transition: padding-top 0.35s ease;
    justify-content: flex-start;
}

.site-nav.scrolled .nav-links {
    order: 2;
    margin-left: auto;
}

.site-nav.scrolled .nav-right {
    order: 3;
    margin-left: 2rem;
}

.nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    height: 108px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    transition: height 0.35s ease;
}

.nav-brand {
    text-decoration: none;
    display: flex;
    justify-content: center;
    padding-top: 36px;
    transition: padding-top 0.35s ease;
}

.nav-logo-svg {
    width: 291px;
    height: auto;
    transition: width 0.35s ease;
    cursor: pointer;
}

.site-nav.scrolled .nav-logo-svg {
    width: 173px;
}

.site-nav.scrolled .nav-brand {
    padding-top: 0;
}

.nav-logo-svg .logo-fill {
    fill: #ffffff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
    align-items: center;
}

.nav-mobile-extra {
    display: none;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

.nav-links-right {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
    align-items: center;
}

.nav-link {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--white);
}

.nav-cta {
    flex-shrink: 0;
    font-size: 0.875rem;
    height: 42px;
    animation: ctaPulse 2.5s ease-in-out infinite;
    padding: 0 1.4rem;
    display: none;
}

.site-nav.scrolled .nav-cta {
    display: inline-flex;
}

.nav-drawer-close {
    display: none;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    background: var(--dark-bg);
    padding-top: 48px;
}

.hero::before {
    content: '';
    position: absolute;
    left: -80px;
    top: 15%;
    width: 480px;
    height: 560px;
    background: radial-gradient(ellipse, rgba(224,52,52,0.12) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(13,13,13,0.97) 0%, rgba(13,13,13,0.80) 38%, rgba(13,13,13,0.20) 100%),
        linear-gradient(to bottom, rgba(13,13,13,0.55) 0%, transparent 20%, transparent 75%, rgba(13,13,13,0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5% 3rem;
    padding-top: 156px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: calc(100vh - 148px - 130px);
}

.hero-text {
    max-width: 720px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    background-color: var(--neon-pink);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
}

.hero-headline {
    font-size: clamp(3.2rem, 4.5vw, 5.5rem);
    line-height: 1.0;
    letter-spacing: -0.035em;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-hl-accent {
    color: var(--neon-pink);
}

.hero-tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.hero-date-block {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

.hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(115,216,78,0.6); }
    50% { box-shadow: 0 0 0 5px rgba(115,216,78,0); }
}

.hero-date-inline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

.hero-cta {
    font-size: 1rem;
    height: 56px;
    padding: 0 2.5rem;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 32px rgba(224,52,52,0.4);
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.hero-cta:hover {
    box-shadow: 0 12px 40px rgba(224,52,52,0.7);
    transform: translateY(-2px);
    animation: none;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(224,52,52,0.4); transform: scale(1); }
    50%       { box-shadow: 0 0 0 6px rgba(224,52,52,0.15), 0 12px 48px rgba(224,52,52,0.65); transform: scale(1.03); }
}

/* ── Hero Countdown ─────────────────────────────────────── */
.hero-countdown {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}

.hcd-timer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
}

.hcd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.hcd-num {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.05em;
    font-variant-numeric: tabular-nums;
}

.hcd-lbl {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-top: 0.4rem;
}

.hcd-sep {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.2);
    padding-bottom: 0.7rem;
}

.hcd-divider {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.hcd-stats {
    display: flex;
    gap: 1.75rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.hcd-stat {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
}

.hcd-stat strong {
    color: rgba(255,255,255,0.75);
    font-weight: 800;
}

/* Video card */
/* ── Hero Event Card ────────────────────────────────────── */
.hero-event-card {
    flex: 0 0 auto;
    width: 440px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-self: center;
}

.hec-countdown {
    background: var(--neon-pink);
    padding: 2rem 1.75rem 1.75rem;
    text-align: center;
}

.hec-until {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1rem;
}

.hec-timer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.25rem;
}

.hec-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
}

.hec-num {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.04em;
    font-variant-numeric: tabular-nums;
}

.hec-lbl {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-top: 0.35rem;
}

.hec-sep {
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(255,255,255,0.4);
    line-height: 1.1;
    padding-bottom: 0.5rem;
}

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

.hec-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem 0.25rem;
    border-right: 1px solid rgba(255,255,255,0.07);
}

.hec-stat:last-child {
    border-right: none;
}

.hec-stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hec-stat-lbl {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 0.3rem;
}

.hec-footer {
    padding: 0.9rem 1.5rem 1.1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
}

.hec-location {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

/* ── Última Edição (Vídeo) ──────────────────────────────── */
.edition-section {
    background: #0d0d0d;
    padding: 6rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.edition-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

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

.edition-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--neon-pink);
    margin-bottom: 0.75rem;
}

.edition-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    white-space: nowrap;
}

.edition-hl {
    color: var(--neon-pink);
}

.edition-header p {
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.55;
}

.edition-video-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/9;
    box-shadow: none;
    transition: opacity 0.35s ease;
}

.edition-video-wrap:hover {
    opacity: 0.92;
}

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

.edition-video-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.28);
    z-index: 1;
    transition: background 0.3s ease;
}

.edition-video-wrap:hover::before {
    background: rgba(0,0,0,0.18);
}

.edition-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--neon-pink);
    padding-left: 4px;
    transition: transform 0.25s ease, background 0.25s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.edition-video-wrap:hover .edition-play-btn {
    transform: translate(-50%, -50%) scale(1.12);
    background: #fff;
}

.hvc-inner {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/9;
    box-shadow: 0 24px 64px rgba(0,0,0,0.65);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hvc-inner:hover {
    transform: scale(1.015);
    box-shadow: 0 32px 80px rgba(0,0,0,0.75);
}

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

.hvc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.hvc-inner:hover .hvc-overlay {
    background: rgba(0,0,0,0.18);
}

.hvc-play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.hvc-inner:hover .hvc-play {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
    transform: scale(1.1);
}

/* Brands ticker inside hero */
.hero-brands-ticker {
    padding-top: 1.75rem;
}

@media (min-width: 901px) {
    .hero-text .hero-brands-ticker {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
}

.hero-brands-ticker .ticker-title {
    color: rgba(255,255,255,0.3);
    margin-bottom: 1.25rem;
    text-align: center;
}

.hero-brands-ticker .ticker-container {
    padding-top: 0;
    margin-top: 0;
}

.hero-brands-ticker .ticker-item img {
    filter: brightness(0) invert(1) opacity(0.45) !important;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.hero-brands-ticker .ticker-item img:hover {
    filter: brightness(0) invert(1) opacity(0.9) !important;
    transform: scale(1.05);
}

/* Stats strip (mantido para referência, não usado atualmente) */
.hero-stats-strip {
    display: flex;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hss-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.hss-item strong {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.04em;
}

.hss-item span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hss-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    margin: 0 2rem;
    flex-shrink: 0;
}

/* --- YouTube Modal --- */
.yt-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.yt-modal.is-open {
    display: flex;
}

.yt-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.88);
    cursor: pointer;
}

.yt-modal-inner {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 960px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.8);
}

.yt-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: white;
    z-index: 2;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.yt-modal-close:hover { opacity: 1; }

.yt-modal-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.yt-modal-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Preserved utilities used after hero */
.btn-outline-dark {
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    border-radius: 100px;
    padding: 1.25rem 2rem;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline-dark:hover {
    background-color: rgba(0, 0, 0, 0.05);
}




/* --- Ticker Section --- */
.brands-ticker {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ticker-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.ticker-container {
    pointer-events: none;
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.ticker-track { pointer-events: auto;
    display: flex;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
    gap: 55px;
    /* Spacing between logos */
}


.ticker-item {
    display: flex;
    align-items: center;
}

.ticker-item img {
    height: auto;
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: invert(36%) sepia(3%) saturate(15%) hue-rotate(345deg) brightness(98%) contrast(90%);
    /* This approximates the #77726b text-secondary color on black svgs. Or simpler: grayscale + opacity */
    filter: grayscale(100%) opacity(0.5);
    /* Let's start with a clean grayscale + opacity */
    transition: filter 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.ticker-item img:hover {
    filter: grayscale(0%) opacity(1) brightness(1.15);
    transform: scale(1.05);
}

.ticker-item:hover {
    color: var(--text-primary);
    transition: color 0.3s;
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   Pricing Section — Dark Cards
   ============================================================ */
/* ======= PRICING ======= */
.pricing {
    background: var(--dark-bg);
    padding: 7rem 0 6rem;
}

.pricing-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Urgency bar */
.pricing-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(224,52,52,0.07);
    border: 1px solid rgba(224,52,52,0.22);
    border-radius: 100px;
    padding: 0.6rem 1.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pu-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.lot-countdown {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.lot-cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.lot-cd-num {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--neon-pink);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.lot-cd-lbl {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    margin-top: 2px;
}

.lot-cd-sep {
    font-size: 1rem;
    font-weight: 900;
    color: var(--neon-pink);
    opacity: 0.45;
    margin-bottom: 7px;
}

/* Header */
.pricing-header {
    text-align: center;
}

.pricing-header h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 1rem;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.ph-accent {
    color: var(--neon-pink);
}

.pricing-subtext {
    font-size: 1rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
}

/* Cards container */
.pricing-cards {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
}

/* Base card */
.pricing-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Side cards (left/right) */
.pricing-card.pc-side {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.07);
}

.pricing-card.pc-side:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}

/* Featured card */
.pricing-card.pc-featured {
    background: linear-gradient(170deg, #1c0a0a 0%, #0e0404 100%);
    border: 1px solid rgba(224,52,52,0.38);
    transform: translateY(-20px);
    box-shadow:
        0 0 0 1px rgba(224,52,52,0.12),
        0 28px 80px rgba(224,52,52,0.18),
        0 8px 32px rgba(0,0,0,0.7);
    flex: 1.18;
    z-index: 2;
}

.pricing-card.pc-featured:hover {
    transform: translateY(-26px);
    box-shadow:
        0 0 0 1px rgba(224,52,52,0.22),
        0 40px 100px rgba(224,52,52,0.24),
        0 12px 40px rgba(0,0,0,0.9);
}

/* Full-width top ribbon */
.pc-ribbon {
    background: var(--neon-pink);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
}

/* Card body */
.pc-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.4rem;
}

.pc-featured .pc-body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.pc-label {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin: 0;
}

.pc-label-red {
    color: var(--neon-pink);
}

.pc-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin: 0.15rem 0 0;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.pc-featured .pc-title {
    font-size: 1.65rem;
}

.pc-dates {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.32);
    margin: 0;
}

/* Savings pill */
.pc-savings {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(251,191,36,0.1);
    border: 1px solid rgba(251,191,36,0.28);
    color: #fbbf24;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 0.28rem 0.75rem;
    border-radius: 100px;
    width: fit-content;
    margin-top: 0.15rem;
}

/* Price block */
.pc-price-block {
    margin: 0.4rem 0 0.1rem;
}

.pc-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.pc-installments {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

.pc-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.04em;
}

.pc-featured .pc-amount {
    font-size: 2.9rem;
}

.pc-amount em {
    font-size: 1.45rem;
    font-style: normal;
    font-weight: 700;
    opacity: 0.75;
}

.pc-vista {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
    margin: 0.1rem 0 0;
}

/* Inclusions list */
.pc-includes {
    list-style: none;
    padding: 0;
    margin: 0.35rem 0 0.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.48rem;
    flex: 1;
}

.pc-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.4;
}

.pc-includes li::before {
    content: '✓';
    color: rgba(255,255,255,0.18);
    font-weight: 700;
    font-size: 0.72rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pc-featured .pc-includes li {
    color: rgba(255,255,255,0.68);
}

.pc-featured .pc-includes li::before {
    color: var(--neon-pink);
}

.pci-featured {
    color: #fff !important;
    font-weight: 700;
}

/* Masterclass chooser */
.pc-choose {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
    margin: 0.6rem 0 0.35rem;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pc-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 0.25rem;
}

.pc-features-list .masterclass-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.pc-features-list .masterclass-option:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.18);
}

.pc-features-list .masterclass-option.selected {
    background: rgba(224,52,52,0.12);
    border-color: rgba(224,52,52,0.4);
}

.pc-features-list .masterclass-option span {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.68);
    font-weight: 600;
}

.pc-features-list .masterclass-option.selected span {
    color: #fff;
    font-weight: 700;
}

.check-icon-circle {
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0;
}

.pc-features-list .masterclass-option .check-bg {
    fill: rgba(255,255,255,0.1);
}

.pc-features-list .masterclass-option .check-mark {
    fill: rgba(255,255,255,0.22);
}

.pc-features-list .masterclass-option:hover .check-bg { fill: rgba(255,255,255,0.18); }
.pc-features-list .masterclass-option:hover .check-mark { fill: rgba(255,255,255,0.5); }
.pc-features-list .masterclass-option.selected .check-bg { fill: var(--neon-pink); }
.pc-features-list .masterclass-option.selected .check-mark { fill: #fff; }

/* Footer */
.pc-footer {
    margin-top: auto;
    padding-top: 1.25rem;
}

/* Ghost CTA (side cards) */
.pc-btn-ghost {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.65);
    border-radius: 100px;
    padding: 0.85rem 1.5rem;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
    text-decoration: none;
    font-family: inherit;
}

.pc-btn-ghost:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.38);
    color: #fff;
}

/* Primary CTA (featured card) */
.pc-btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--neon-pink);
    border: none;
    color: #fff;
    border-radius: 100px;
    padding: 1rem 1.5rem;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: opacity 0.25s, transform 0.2s;
    font-family: inherit;
    box-shadow: 0 8px 32px rgba(224,52,52,0.35);
}

.pc-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 12px 40px rgba(224,52,52,0.45);
}

/* Trust strip */
.pricing-trust {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pt-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
}

.pt-item svg {
    opacity: 0.4;
    flex-shrink: 0;
}

.pt-sep {
    color: rgba(255,255,255,0.15);
    font-size: 1.1rem;
}

.w-full {
    width: 100%;
    display: block;
    text-align: center;
}

/* btn-neon inside pc-footer */
.pc-footer .btn-neon {
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Lot Countdown */

/* hero-cta sticky state (mobile) — JS adds .is-sticky when button leaves viewport */

@media (max-width: 900px) {
    /* Reset do header wrap (não usa fixed no header) */
    .site-header {
        position: static;
    }

    /* Topbar SEMPRE fixa no topo — 100% do tempo, sem transição, sem transform */
    .top-bar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        transform: none !important;
        transition: none !important;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: auto;
    }

    /* Nav fixa abaixo da topbar */
    .site-nav {
        position: fixed !important;
        top: 48px !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9998 !important;
        background-color: transparent;
        transition: background-color 0.3s ease;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .site-nav.scrolled {
        top: 48px !important;
        background-color: rgba(13, 13, 13, 0.95);
        animation: none !important;
        border-bottom: none;
    }

    .tb-stats {
        display: none;
    }

    .tb-divider {
        display: none;
    }

    .nav-links-right,
    .nav-cta,
    .site-nav.scrolled .nav-cta {
        display: none;
    }

    /* Botão fechar drawer */
    .nav-drawer-close {
        display: block;
        position: fixed;
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 2rem;
        line-height: 1;
        cursor: pointer;
        padding: 0;
        z-index: 1600;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .nav-drawer-close.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    /* Drawer lateral */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: min(75%, 320px);
        display: flex;
        flex-direction: column;
        padding: 5rem 2rem 3rem;
        gap: 0;
        background: rgba(19,19,19,0.98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        z-index: 1500;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(255,255,255,0.08);
        overflow-y: auto;
        list-style: none;
        margin: 0;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-links .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: rgba(255,255,255,0.75);
    }

    .nav-links .nav-link:hover {
        color: var(--white);
    }

    .nav-links .nav-mobile-extra {
        display: block;
    }

    /* Overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.55);
        z-index: 1499;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
    }

    .nav-overlay.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-inner,
    .site-nav.scrolled .nav-inner {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 50px 5% 12px;
        height: auto;
        transition: padding 0.3s ease;
    }

    .site-nav.scrolled .nav-inner {
        padding: 8px 5% !important;
    }

    .nav-right {
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
    }

    .nav-logo-svg {
        width: 230px;
        transition: width 0.3s ease;
    }

    .site-nav.scrolled .nav-logo-svg {
        width: 150px;
    }

    .nav-brand {
        padding-top: 0;
    }

    /* Botão sempre fixo no rodapé no mobile */
    .hero-cta {
        position: fixed;
        bottom: 58px;
        left: 0;
        right: 0;
        width: 90%;
        max-width: 420px;
        margin: 0 auto;
        z-index: 201;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .hero-cta.cta-hidden {
        opacity: 0;
        visibility: hidden;
    }

    .nav-links.is-open {
        right: 0;
    }

    .hero-content {
        justify-content: flex-start;
        padding-top: 176px;
        padding-bottom: 130px;
    }

    .hero-inner {
        flex-direction: column;
        justify-content: flex-start;
        flex: 0 0 auto;
        gap: 0;
        min-height: auto;
        padding-top: 0;
    }

    .hero-brands-ticker {
        margin-top: 15px;
        padding-top: 0;
        padding-bottom: 1rem;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-brands-ticker .ticker-title {
        display: none !important;
    }

    .hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-meta {
        justify-content: center;
    }

    .hero-headline {
        font-size: clamp(2.4rem, 9vw, 3.4rem);
    }

    .hero-event-card {
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
    }

    .edition-section {
        padding: 4rem 0;
    }

    .hero-stats-strip {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

    .hss-item {
        flex: 0 0 calc(50% - 0.75rem);
        align-items: center;
    }

    .hss-sep {
        display: none;
    }
}

@media (max-width: 768px) {

}

.card-footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: auto;
    padding: 0 1rem;
}

.style-rounded {
    border-radius: 100px;
    padding: 1.25rem;
    flex-grow: 1;
    font-size: 1rem;
    font-weight: 700;
}

.style-rounded-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-dark {
    color: var(--dark-bg);
}

.btn-pink {
    background-color: #ffb8e6;
    color: var(--dark-bg);
}

/* --- Instructors Section --- */
.instructors-section {
    padding: 2rem 5% 6rem 5%;
    background: var(--light-bg);
}

.instructors-header {
    margin-bottom: 4rem;
}

.instructors-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.instructors-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.instructors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.instructor-card {
    background: var(--white);
    border-radius: 30px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.instructor-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 4px solid var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    mask-image: radial-gradient(white, black);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.instructor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0) scale(1);
    will-change: transform;
    image-rendering: -webkit-optimize-contrast;
}

.instructor-card:hover .instructor-image {
    transform: translateZ(0) scale(1.05);
}

.instructor-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.instructor-role {
    font-size: 1rem;
    color: var(--neon-pink);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.instructor-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- FAQ Section --- */
.faq {
    padding: 8rem 5%;
    background-image: url('img/backgrounds/bg-faq.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

.faq-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
}

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
    border-color: rgba(224, 52, 52, 0.25);
    box-shadow: 0 8px 32px rgba(224, 52, 52, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.4rem 2rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: var(--neon-pink);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: white;
    transition: background-color 0.25s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover .faq-toggle {
    background-color: var(--neon-pink);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background-color: var(--neon-pink);
}

/* grid-trick: altura real, easing perfeito */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer__inner {
    overflow: hidden;
    padding-bottom: 0;
    transition: padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer__inner {
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.65;
    color: #555;
    margin: 0;
    padding: 0 2rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    .hero-content.center-y {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 3rem;
        padding: 0 5%;
    }

    .hero-text-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-right-cards {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        padding-bottom: 2rem;
    }

    .stacked-cards-new {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .pricing {
        padding: 4rem 0;
    }

    .pricing-urgency {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }

    .pricing-card {
        width: 100%;
        max-width: 440px;
    }

    .pricing-card.pc-featured {
        transform: none;
        order: -1;
        max-width: 440px;
    }

    .pricing-card.pc-featured:hover {
        transform: translateY(-5px);
    }

    .pricing-trust {
        gap: 0.85rem;
    }

    .pt-sep {
        display: none;
    }

    .faq {
        padding: 5rem 5%;
    }

    .instructors-grid {
        gap: 2rem;
    }

    .instructor-card {
        padding: 2rem;
    }

    .instructor-image-wrapper {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2,
    .instructors-header h2 {
        font-size: 2rem;
    }

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

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-cta-group .btn {
        width: 100%;
        text-align: center;
    }

    .hero-right-cards {
        max-width: 340px;
        margin-top: 0;
    }

    .stacked-cards-new {
        max-width: 280px;
    }

    .faq-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
        padding: 0 1.25rem;
    }

    .ticker-item img {
        max-height: 70px;
        /* Scale down logos a bit for mobile screens */
    }

    .ticker-track { pointer-events: auto;
        gap: 30px;
    }
}

/* --- Framer-style Reveal Animations --- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--neon-pink);
    padding: 3rem 5% 1.5rem 5%;
    display: flex;
    justify-content: center;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 160px;
    height: 60px;
    background-image: url('img/logos/logo-branco.svg');
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 10px;
    margin: -10px;
    box-sizing: content-box;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 100%;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-logo {
        background-position: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
}
}

/* --- Utilities --- */
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.w-full-mobile { width: auto; }


.about-image-col {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.about-image-col img.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.about-image-col img.carousel-img.active {
    opacity: 1;
}

.about-content-col {
    padding: 8rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title-large {
    font-size: 5rem;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 2.5rem;
    color: var(--neon-pink);
    font-weight: 800;
    text-transform: uppercase;
}

.about-content-col p {
    color: #e0e0e0;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 600px;
    font-weight: 400;
}

.about-bottom-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 4rem 10%;
    background-color: transparent;
}

.about-bottom-item {
    text-align: center;
}

.about-bottom-item h3 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

@media (max-width: 992px) {
    .about-grid-layout {
        grid-template-columns: 1fr;
    }
    .about-image-col {
        min-height: 400px;
        position: relative;
    }
    .about-image-col img {
        position: absolute;
    }
    .about-bottom-bar {
        flex-direction: column;
        gap: 2.5rem;
    }
    .title-large {
        font-size: 3.5rem;
    }
    .about-content-col {
        padding: 4rem 5%;
    }
}

/* --- Speakers / Professores (List Layout) --- */
.title-red {
    color: var(--neon-pink);
    font-weight: 800;
    text-transform: uppercase;
}

.speakers-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.speaker-list-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-right: 1rem;
    transition: transform 0.3s ease;
}

.speaker-list-item:hover {
    transform: translateX(5px);
}

.speaker-list-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #f0f0f0;
}

.speaker-list-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.speaker-list-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
    text-transform: uppercase;
    font-weight: 800;
}

.speaker-list-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.speaker-insta {
    color: var(--neon-pink);
    transition: transform 0.2s ease;
    display: flex;
    padding: 10px;
    margin: -10px;
}

.speaker-insta:hover {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .speakers-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .speakers-list-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Speakers: New Card Layout --- */
.spk-featured-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 860px;
    margin: 0 auto;
}

.spk-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.spk-card__photo {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #111;
    position: relative;
}

.spk-bio {
    position: absolute;
    inset: 0;
    padding: 1.1rem 1rem;
    background: rgba(10,10,10,0.93);
    backdrop-filter: blur(4px);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.spk-card:hover .spk-bio {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.spk-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.spk-card:hover .spk-card__photo img {
    transform: scale(1.04);
}

.spk-card__info {
    padding: 1.25rem 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.spk-card__tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neon-pink);
    display: block;
    margin-bottom: 0.15rem;
}

.spk-card__name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.2;
}

.spk-card__role {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.35;
    margin-top: 0.1rem;
}

.spk-card__insta {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(214,36,159,0.45);
}

.spk-card__insta:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(214,36,159,0.65);
}

/* Featured cards: taller photo */
.spk-card--featured .spk-card__photo {
    aspect-ratio: 3/4;
}

.spk-card--featured .spk-card__name {
    font-size: 1.35rem;
}

.spk-card--featured .spk-card__role {
    font-size: 0.88rem;
}

/* "Em breve" placeholder cards */
.spk-card--soon {
    opacity: 0.45;
}

.spk-card__photo--soon {
    aspect-ratio: 4/5;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spk-card__soon-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.25);
}

/* Grid of smaller cards */
.spk-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .spk-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 800px) {
    .spk-featured-row {
        grid-template-columns: 1fr 1fr;
        max-width: 600px;
    }
    .spk-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 540px) {
    .spk-featured-row {
        grid-template-columns: 1fr 1fr;
    }
    .spk-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .spk-card__name {
        font-size: 0.82rem;
    }
    .spk-card__role {
        font-size: 0.7rem;
    }
}

/* --- Speakers Pagination --- */
.spk-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.spk-pagination button {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.12);
    background: transparent;
    color: rgba(0,0,0,0.4);
    font-family: 'Biennale', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.spk-pagination button:hover {
    background: rgba(0,0,0,0.06);
    color: var(--text-primary);
    border-color: rgba(0,0,0,0.25);
}

.spk-pagination button.active {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
    color: #fff;
}

.spk-pagination button.spk-pg-arrow {
    font-size: 1rem;
}

/* --- Past Speakers marquee --- */
.past-spk-section {
    background: var(--dark-bg);
    border-radius: 0;
    padding: 3rem 0 2.5rem;
    margin-top: 4rem;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.past-spk-header {
    text-align: center;
    padding: 0 2.5rem;
    margin-bottom: 2.5rem;
}

.past-spk-eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--neon-pink);
    margin-bottom: 0.5rem;
}

.past-spk-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

/* marquee rows */
/* ── Speaker Grid — cross-fade mosaic ── */
.pspk-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}

.pspk-cell {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #111;
}

.pspk-layer {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease;
}

.pspk-layer.is-active {
    opacity: 1;
}

.pspk-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.pspk-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 6px 6px;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
    font-size: 0.62rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    letter-spacing: 0.2px;
}

.pspk-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    padding: 2px 5px;
    border-radius: 4px;
    line-height: 1.5;
    color: #fff;
    pointer-events: none;
}
.pspk-badge--2015,
.pspk-badge--2016 { background: #0891b2; }
.pspk-badge--2017,
.pspk-badge--2018 { background: #7c3aed; }
.pspk-badge--2022,
.pspk-badge--2023 { background: #d97706; }
.pspk-badge--2024  { background: #2563eb; }
.pspk-badge--2025  { background: #e03434; }

@media (max-width: 480px)  { .pspk-grid { grid-template-columns: repeat(4, 1fr); } }

/* --- Schedule / Programação Section (Redesigned) --- */
.schedule-section {
    padding: 6rem 5%;
    max-width: 900px;
    margin: 0 auto;
}
/* --- Schedule blur / coming soon --- */
.schedule-blur-wrap {
    position: relative;
    margin-top: 2.5rem;
}
.schedule-blur-wrap > *:not(.schedule-coming-soon) {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
}
.schedule-coming-soon {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    pointer-events: none;
}
.schedule-coming-soon__label {
    font-family: 'Biennale', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 0.18em;
    color: var(--dark-bg);
}
.schedule-coming-soon__sub {
    font-size: 0.9rem;
    color: rgba(0,0,0,0.5);
    letter-spacing: 0.04em;
    margin: 0;
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    border: 2px solid var(--neon-pink);
    border-radius: 100px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 700px;
}
.tab-btn {
    flex: 1;
    padding: 1rem 1rem;
    border: none;
    background: transparent;
    color: var(--neon-pink);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    text-transform: uppercase;
}
.tab-btn.active {
    background: var(--neon-pink);
    color: var(--white);
}
.schedule-content {
    display: none;
    animation: fadeIn 0.4s ease;
}
.schedule-content.active {
    display: block;
}
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.schedule-row {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding-right: 2rem;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 0;
    color: var(--neon-pink);
    min-height: 100px;
    position: relative;
}

.schedule-row:nth-child(odd) {
    background: var(--neon-pink);
    color: var(--white);
}

.schedule-row:first-child {
    border-top-left-radius: 20px;
}
.schedule-row:first-child .schedule-img-col img {
    border-top-left-radius: 20px;
}
.schedule-row:last-child {
    border-bottom-left-radius: 20px;
}
.schedule-row:last-child .schedule-img-col img {
    border-bottom-left-radius: 20px;
}

.schedule-img-col {
    height: 100px;
    width: 100px;
    flex-shrink: 0;
}
.schedule-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.schedule-info-col {
    flex-grow: 1;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.schedule-info-col h4 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.1rem;
}
.schedule-info-col p {
    font-size: 0.85rem;
    color: #4a4a4a;
    text-transform: uppercase;
}
.schedule-row:nth-child(odd) .schedule-info-col p {
    color: rgba(255,255,255,0.6);
}

.schedule-time-col {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 800;
    font-size: 1.1rem;
}

.schedule-clock-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    border-radius: 50%;
}
.schedule-clock-icon svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .schedule-tabs {
        flex-direction: column;
        border-radius: 20px;
    }
    .schedule-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        border-radius: 20px !important;
        margin-bottom: 1rem;
        height: auto;
    }
    .schedule-img-col {
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 1rem;
        width: 80px;
        height: 80px;
    }
    .schedule-img-col img {
        border-radius: 0 !important;
    }
    .schedule-time-col {
        margin-top: 1rem;
        width: 100%;
        justify-content: space-between;
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* === Modal Masterclass === */
.mc-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.mc-modal-overlay.is-open {
    display: flex;
}

.mc-modal-box {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 24px 64px rgba(0,0,0,0.6);
    animation: mcModalIn 0.25s ease;
}

@keyframes mcModalIn {
    from { opacity: 0; transform: scale(0.95) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.mc-modal-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.mc-modal-body {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.mc-modal-body strong {
    color: #fff;
}

.mc-modal-btn {
    width: 100%;
    height: 48px;
    font-size: 0.9rem;
}

/* === MASTERCLASSES SECTION === */
.masterclass-section {
    padding: 0 0 6rem;
    background: #111;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}
.mc-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mc-header__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--neon-pink);
    color: #fff;
    width: 88px;
    height: 88px;
    border-radius: 14px;
    flex-shrink: 0;
    line-height: 1;
}
.mc-header__date b {
    font-size: 2.4rem;
    font-weight: 900;
    font-family: 'Biennale', sans-serif;
    letter-spacing: -0.03em;
}
.mc-header__date span {
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Biennale', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.mc-header__text h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.mc-header__text p {
    color: rgba(255,255,255,0.45);
    font-size: 0.95rem;
    margin-top: 0.4rem;
    line-height: 1.5;
}
.mc-panels {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 5% 1rem;
    align-items: flex-start;
}
.mc-panel {
    flex: 1;
    background: #1c1c1c;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
    margin: 0 1.5rem;
}
.mc-panel:hover {
    border-color: rgba(115,216,78,0.25);
    box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}
.mc-panel.is-open {
    border-color: rgba(115,216,78,0.45);
    box-shadow: 0 16px 56px rgba(115,216,78,0.12);
}
.mc-panel__visual {
    position: relative;
    aspect-ratio: 5 / 4;
    overflow: hidden;
}
.mc-panel__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    display: block;
}
.mc-panel:hover .mc-panel__visual img,
.mc-panel.is-open .mc-panel__visual img {
    transform: scale(1.04);
}
.mc-panel__visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 45%, #1c1c1c 100%);
    pointer-events: none;
}
.mc-panel__info {
    padding: 1.5rem 1.75rem 1.75rem;
}
.mc-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--neon-pink);
    background: rgba(224,52,52,0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}
.mc-panel__info h3 {
    color: #fff;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--neon-pink);
}
.mc-panel__info h4 {
    margin-bottom: 1rem;
    line-height: 1.3;
}
.mc-panel__info h4 strong {
    display: block;
    font-size: clamp(1.15rem, 1.8vw, 1.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
}
.mc-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.04em;
}
.mc-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.6);
    font-family: 'Biennale', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 7px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
    min-height: 44px;
}
.mc-toggle:hover,
.mc-panel.is-open .mc-toggle {
    border-color: #73d84e;
    color: #fff;
    background: rgba(115,216,78,0.08);
}
.mc-toggle__icon {
    display: flex;
    transition: transform 0.35s ease;
    flex-shrink: 0;
}
.mc-panel.is-open .mc-toggle__icon {
    transform: rotate(180deg);
}
.mc-panel__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}
.mc-panel.is-open .mc-panel__body {
    grid-template-rows: 1fr;
}
.mc-panel__body-inner {
    overflow: hidden;
    padding-top: 0;
    transition: padding-top 0.4s ease;
}
.mc-panel.is-open .mc-panel__body-inner {
    padding-top: 1.25rem;
}
.mc-panel__body-inner p {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.mc-panel__body-inner p:last-child {
    margin-bottom: 0;
}

.mc-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.mc-cta {
    background: var(--neon-pink);
    border: 1px solid var(--neon-pink);
    color: #fff;
    font-family: 'Biennale', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 7px 14px;
    border-radius: 8px;
    transition: background 0.25s, border-color 0.25s, opacity 0.25s;
}

.mc-cta:hover {
    opacity: 0.85;
    background: var(--neon-pink);
    border-color: var(--neon-pink);
    color: #fff;
}
@media (max-width: 768px) {
    .mc-header { padding: 3rem 5%; gap: 1.25rem; }
    .mc-panels { flex-direction: column; padding: 2rem 5% 1rem; gap: 1.5rem; }
    .mc-panel { margin: 0; }
    .mc-panel__visual { aspect-ratio: 16 / 9; }
}



/* ── Past Editions (redesign) ── */
.past-editions-section {
    padding: 7rem 5% 0;
    background-color: var(--bg-color);
}
.pe-layout {
    max-width: 1200px;
    margin: 0 auto;
}

/* eyebrow */
.pe-eyebrow {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--neon-pink);
    margin-bottom: 1rem;
}

/* title */
.pe-title {
    font-family: 'Biennale', sans-serif;
    font-size: clamp(1.9rem, 3.2vw, 3.2rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
}
.pe-title__accent {
    color: var(--neon-pink);
}

/* big numbers */
.pe-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid rgba(19,19,19,0.08);
    border-bottom: 1px solid rgba(19,19,19,0.08);
}
.pe-stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}
.pe-stat__num {
    font-family: 'Biennale', sans-serif;
    font-size: clamp(2rem, 2.8vw, 3rem);
    font-weight: 900;
    color: var(--neon-pink);
    line-height: 1;
}
.pe-stat__lbl {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
    line-height: 1.5;
}
.pe-stat-div {
    width: 1px;
    height: 40px;
    background: rgba(19,19,19,0.12);
    flex-shrink: 0;
}

.pe-tagline {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 700;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    margin-top: -1rem;
}

/* video grid 4 colunas */
.pe-videos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.pe-video {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
    outline: none;
}
.pe-video__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.pe-video__thumb > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.pe-video:hover .pe-video__thumb > img {
    transform: scale(1.06);
}
.pe-video__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.pe-video:hover .pe-video__overlay {
    background: rgba(0,0,0,0.55);
}
.pe-video__btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.25s ease, filter 0.25s ease;
    filter: drop-shadow(0 4px 16px rgba(224,52,52,0.5));
}
.pe-video:hover .pe-video__btn {
    transform: scale(1.15);
    filter: drop-shadow(0 6px 24px rgba(224,52,52,0.7));
}
.pe-video__badge {
    position: absolute;
    bottom: 8px;
    left: 10px;
    font-family: 'Biennale', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fff;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    padding: 3px 9px;
    border-radius: 5px;
    text-transform: uppercase;
    z-index: 2;
}
/* playing state */
.pe-video.is-playing .pe-video__overlay { display: none; }
.pe-video.is-playing .pe-video__thumb > img { display: none; }
.pe-video.is-playing .pe-video__badge { display: none; }
.pe-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* ── RIGHT: dual vertical carousels ── */
.pe-right {
    position: sticky;
    top: 100px;
    display: flex;
    gap: 0.75rem;
    height: calc(100vh - 140px);
    max-height: 780px;
    overflow: hidden;
}
/* fade masks */
.pe-right::before,
.pe-right::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 100px;
    z-index: 2;
    pointer-events: none;
}
.pe-right::before {
    top: 0;
    background: linear-gradient(to bottom, var(--dark-bg) 0%, transparent 100%);
}
.pe-right::after {
    bottom: 0;
    background: linear-gradient(to top, var(--dark-bg) 0%, transparent 100%);
}
.pe-col {
    flex: 1;
    overflow: hidden;
}
.pe-track {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    will-change: transform;
}
.pe-track--up {
    animation: peScrollUp 46s linear infinite;
}
.pe-track--down {
    animation: peScrollDown 58s linear infinite;
}
.pe-right:hover .pe-track {
    animation-play-state: paused;
}
.pe-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}
@keyframes peScrollUp {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
}
@keyframes peScrollDown {
    from { transform: translateY(-50%); }
    to   { transform: translateY(0); }
}

/* responsive */
@media (max-width: 768px) {
    .pe-videos { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
}
@media (max-width: 600px) {
    .pe-stats { gap: 1rem; }
    .pe-stat__num { font-size: 1.8rem; }
}


/* --- Fair / Exhibitors Section --- */
.fair-section {
    padding: 6rem 5%;
}
.fair-header, .past-editions-container, .schedule-header, .masterclass-header, .venue-header {
    margin-bottom: 2rem;
}
.exhibitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.exhibitor-item img {
    max-width: 120px;
    max-height: 60px;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}
.exhibitor-item img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* --- FilmeCon Experience — bloco dentro da seção about --- */
.about-experience {
    background: var(--dark-bg);
    border-radius: 20px;
    padding: 2.25rem 2.5rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.about-experience::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--neon-pink);
    border-radius: 4px 0 0 4px;
}

.about-experience-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--neon-pink);
    border: 1px solid rgba(224,52,52,0.4);
    padding: 0.25rem 0.7rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
}

.about-experience-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-experience-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 1rem;
}

.about-experience-title span {
    color: var(--neon-pink);
}

.about-experience-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.about-experience-features {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.about-experience-feature {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.about-experience-feature svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .about-experience-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* --- Patrocinadores & Apoiadores Section --- */
.sponsors-section {
    background: var(--bg-color);
    padding: 6rem 5%;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}
.sponsors-container {
    max-width: 1200px;
    margin: 0 auto;
}
.sponsors-eyebrow {
    font-family: 'Biennale', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--neon-pink);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.sponsors-section h2 {
    margin-bottom: 0;
    color: var(--neon-pink);
}
.accent-red {
    color: var(--neon-pink);
}
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 3rem;
}
.sponsors-grid--featured {
    grid-template-columns: repeat(3, 1fr);
}
.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2.5rem 1.5rem;
    min-height: 110px;
    background: transparent;
    transition: background 0.25s ease;
    cursor: default;
}
.sponsor-item--featured {
    min-height: 180px;
    padding: 3rem 2rem;
}
.sponsor-item:hover {
    background: rgba(0,0,0,0.04);
    z-index: 10;
}
.sponsor-item:hover .brand-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.sponsors-grid .sponsor-item img {
    height: 38px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease;
}
.sponsors-grid--featured .sponsor-item img {
    height: 80px;
}
.sponsors-grid--featured .sponsor-item img[alt="Canon"]   { height: 96px; }
.sponsors-grid--featured .sponsor-item img[alt="Godox"]   { height: 88px; }
.sponsors-grid--featured .sponsor-item img[alt="Nanlite"] { height: 72px; }
.sponsor-item:hover img {
    transform: scale(1.06);
}
/* Logos muito largos (ratio > 7) */
.sponsors-grid img[alt="SanDisk"]    { height: 22px; }
.sponsors-grid img[alt="Nanlite"]    { height: 23px; }
.sponsors-grid img[alt="Sennheiser"] { height: 23px; }
/* Logos largos (ratio 5-7) */
.sponsors-grid img[alt="Panasonic"]  { height: 26px; }
.sponsors-grid img[alt="Fujifilm"]   { height: 27px; }
.sponsors-grid img[alt="Tilta"]      { height: 27px; }
.sponsors-grid img[alt="Sony"]       { height: 28px; }
.sponsors-grid img[alt="DZOFilm"]    { height: 27px; }
.sponsors-grid img[alt="GrupoMulti"] { height: 28px; }
.sponsors-grid img[alt="Asustor"]    { height: 28px; }
/* Logos médio-largos (ratio 3-5) */
.sponsors-grid img[alt="Accsoon"]    { height: 31px; }
.sponsors-grid img[alt="Canon"]      { height: 31px; }
.sponsors-grid img[alt="Pirroncelli"]{ height: 31px; }
.sponsors-grid img[alt="Ulanzi"]     { height: 33px; }
.sponsors-grid img[alt="SmallRig"]   { height: 33px; }
.sponsors-grid img[alt="Godox"]      { height: 33px; }
.sponsors-grid img[alt="ARRI"]       { height: 36px; }
.sponsors-grid img[alt="Lexar"]      { height: 34px; }
/* Logos médio-altos (ratio 1.5-3) */
.sponsors-grid img[alt="Full Cine"]  { height: 46px; }
.sponsors-grid img[alt="Tomada"]     { height: 45px; }
.sponsors-grid img[alt="Pro TV"]     { height: 46px; }
.sponsors-grid img[alt="Greika"]     { height: 48px; }
.sponsors-grid img[alt="DJI"]        { height: 46px; }
/* Logos quadrados/altos */
.sponsors-grid img[alt="Hollyland"]  { height: 56px; }
.sponsors-grid img[alt="Kodak"]      { height: 56px; }
.sponsors-grid img[alt="Delta"]      { height: 64px; }
.sponsors-grid img[alt="ForFly"]     { height: 64px; }
@media (max-width: 900px) {
    .sponsors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 540px) {
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .sponsor-item {
        padding: 1.6rem 1rem;
        min-height: 80px;
    }
}

/* --- Venue Section --- */
.venue-section {
    padding: 6rem 5%;
    background: var(--dark-bg);
    max-width: unset;
}
.venue-mooca-callout {
    text-align: center;
    margin-bottom: 2.5rem;
}
.venue-mooca-pin {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.4rem;
    line-height: 1;
}
.venue-mooca-text {
    display: inline-block;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.venue-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.venue-map {
    height: 100%;
    min-height: 400px;
}
.venue-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.venue-info-card {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}
.venue-header h2 {
    color: var(--white);
}
.venue-header p {
    color: rgba(255, 255, 255, 0.7);
}
.venue-info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--neon-pink);
}
.venue-info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .masterclass-split {
        grid-template-columns: 1fr;
    }
    .venue-layout {
        grid-template-columns: 1fr;
    }
    .venue-map {
        min-height: 300px;
    }
    .w-full-mobile {
        width: 100%;
    }
    .about-header h2 {
        font-size: 2.2rem;
    }
}
/* --- About Section --- */
.about-section {
    background-color: var(--bg-color);
    overflow: hidden;
}

.about-container {
    max-width: 1360px;
    margin: 0 auto;
    position: relative;
    padding: 0 5%;
}

/* ── LEFT: content column ── */
.about-content {
    width: 65%;
    display: flex;
    flex-direction: column;
    padding: 5rem 5rem 5rem 0;
}

.about-header {
    text-align: left;
    margin-bottom: 2.5rem;
}

.about-eyebrow {
    display: inline-block;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--neon-pink);
    margin-bottom: 1.25rem;
}

.about-headline {
    font-size: clamp(2.2rem, 3.5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.0;
    margin-bottom: 1.5rem;
}

.about-desc {
    max-width: 520px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.about-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.about-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.about-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(224,52,52,0.07);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-card-stat {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--neon-pink);
    line-height: 1;
    letter-spacing: -0.04em;
}

.about-card-title {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.about-card-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
}

.about-quote {
    background: var(--dark-bg);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.about-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--neon-pink);
}

.about-quote-mark {
    font-size: 6rem;
    line-height: 1;
    color: var(--neon-pink);
    font-weight: 900;
    opacity: 0.4;
    flex-shrink: 0;
    margin-top: -1rem;
}

.about-quote p {
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--white);
    flex: 1;
    line-height: 1.2;
}

.about-quote .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* ── RIGHT: vertical photo columns ── */
.about-photos {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 65%;
    display: flex;
    gap: 1rem;
    overflow: hidden;
}

@media (max-width: 1100px) {
    .about-content {
        width: 100%;
        padding: 5rem 0 2rem;
    }
    .about-header {
        text-align: center;
    }
    .about-desc {
        margin: 0 auto;
    }
    .about-photos {
        position: static;
        height: 400px;
        border-radius: 12px;
        margin-bottom: 5rem;
    }
}

@media (max-width: 600px) {
    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-quote {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .about-quote-mark { display: none; }

    .about-photos {
        height: 260px;
        max-height: 260px;
        gap: 0;
        margin-bottom: 2rem;
    }

    /* 1 coluna só em mobile */
    .about-photos .pe-col:last-child {
        display: none;
    }

    .about-photos .pe-col:first-child {
        flex: 1;
    }
}

/* ── Photo gap + speed override inside about section ── */
.about-photos .pe-track        { gap: 1rem; }
.about-photos .pe-track--up   { animation-duration: 25s; }
.about-photos .pe-track--down { animation-duration: 25s; }

/* ── Quote Banner (standalone, below about section) ── */
.quote-banner {
    background: var(--neon-pink);
    overflow: hidden;
    padding: 1.5rem 0;
}

.quote-ticker-wrap {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.quote-ticker-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 1.5rem;
    animation: scrollTicker 18s linear infinite;
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #fff;
    white-space: nowrap;
}

.quote-ticker-track .qt-sep {
    color: rgba(255,255,255,0.4);
    font-style: normal;
    font-size: 0.5em;
}

@media (max-width: 600px) {
    .quote-ticker-track { font-size: clamp(1.3rem, 5.5vw, 2rem); }
}

/* --- O Evento: Long Narrative Track Experience (legacy, not used) --- */
.experience-section {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 330vh; /* Seção bem mais enxuta, otimizado para a menor distância matématica possível */
    background-color: var(--bg-color); /* Começa com a cor do site */
    transition: background-color 1s ease-out; /* Fade elegante para o Dark quando a seção passa pra Show */
}

/* Transição do Dark Mode da seção acionado pelo Observer */
.experience-section.show {
    background-color: var(--dark-bg);
}

.sticky-center {
    position: sticky;
    top: 0; 
    height: 100vh; /* Usando flex + 100vh para grudar e centralizar bem */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    pointer-events: none; /* Para os elementos por baixo ainda receberem clicks se necessário */
    padding: 0 5%;
}

.sticky-center h2.title-large {
    font-size: clamp(2.2rem, 5vw, 4.5rem); /* Diminuído para manter refinamento */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.sticky-center h2.glow-text {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.05); /* Brilho suave */
}

.hero-subtitle {
    font-size: 1rem; /* Fonte ligeiramente reduzida para caber todo o manifesto */
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 800px; /* Alargado para caber o texto gigante sem quebrar mto as linhas */
    margin: 0 auto;
}
.hero-subtitle p {
    display: inline; /* Garantir que parágrafos não engulam espaço massivo caso não tenham break, mas como o user botou tags p e br, ele funcionará como block mas suave */
    display: block; 
}

/* O container invisível do tamanho da seção que guarda os cards */
.scroll-cards-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Estica até o fim das 400vh */
    z-index: 3; /* Fica na frente da tipografia central */
    overflow: hidden;
}

/* Base do Cartão no Track */
.track-card {
    position: absolute;
    /* Transições de saída/entrada (IntersectionObserver vai revelar) */
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}

/* Quando revelado pelo Obsever */
.track-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Modificador especial para o título adesivo revelar apenas com opacidade */
.track-center-reveal {
    opacity: 0;
    transform: none; /* Não mover para não quebrar o sticky flexbox */
    will-change: opacity;
    transition: opacity 1.2s ease-in 0.4s; /* O 0.4s dá um delay pro fundo escurecer PRIMEIRO */
}

.track-center-reveal.show {
    opacity: 1;
    transform: none;
}

/* Layout Assíncrono ao Longo do Track (Em %) ajustado para 5 caixas na nova lógica sem Workshops */
.track-pos-1 { top: 30%; left: 5%; } /* Feira - 30% em 330vh bate nos 100vh exatos. Começa exatamente ao bater no centro. */
.track-pos-2 { top: 38%; right: 8%; } /* Foto 1 */
.track-pos-3 { top: 46%; left: 22%; } /* Palestras */
.track-pos-4 { top: 54%; right: 4%; } /* Foto 2 */
.track-pos-5 { top: 62%; right: 16%; } /* Masterclasses - Última em 62%. Dá folga absurda no scroll pra ela ir pro além. */

/* Formatação do Card (Conteúdo) */
.card-inner {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    pointer-events: auto; /* Reabilita mouse aqui dentro */
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.card-inner:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
}

/* Variante: Cartão de Foto */
.card-inner.photo-card {
    padding: 0; /* Tira padding pra foto colar na borda */
    overflow: hidden;
    height: 350px;
    border: none;
}

.card-inner.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 0.5s ease;
}

.card-inner.photo-card:hover img {
    transform: scale(1.05); /* Zoom sutil na foto */
}


/* Detalhes visuais dos textos */
.card-icon {
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 6px rgba(224, 52, 52, 0.4)); /* Glow suave do icon */
}

.card-inner h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.card-inner p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Fallback Mobile: Empilhar naturalmente para leitura fácil em touch */
@media (max-width: 1024px) {
    .experience-section {
        min-height: auto;
        padding: 100px 5% 50px 5%;
        display: flex;
        flex-direction: column;
    }
    
    .sticky-center {
        position: relative;
        height: auto;
        top: auto;
        transform: none;
        margin-bottom: 4rem;
        pointer-events: auto;
        padding: 0;
    }
    
    .scroll-cards-track {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        overflow: visible;
    }
    
    .track-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 380px;
    }
    
    .card-inner {
        width: 100%;
    }
}

/* --- Ticker Hover Popup --- */
.ticker-item {
    position: relative; /* Define ancoragem popup */
}

/* Base do Popup Flutuante */
.brand-popup {
    position: absolute;
    bottom: calc(100% + 20px); /* Sempre acima da logo, com um offset maior */
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: max-content;
    max-width: 320px;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none; /* Ignora o mouse nativamente quando invisível */
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

/* Seta indicativa para baixo */
.brand-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: var(--dark-bg) transparent transparent transparent;
}

/* Ativação do estado Hover (Puxa para visível) */
.ticker-item:hover .brand-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto; /* Permite clique no link interno se o usuário mover o mouse para cima */
}

/* Estilo interno do Popup */
.brand-popup-link {
    color: var(--neon-pink);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
    word-break: break-all;
    transition: color 0.3s;
}

.brand-popup-link:hover {
    color: var(--white);
    text-decoration: underline;
}

.brand-popup-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin: 0;
}

/* =============================================
   ISOMETRIC FAIR MAP
   ============================================= */

.fair-map-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--border-radius);
    background: #f0ece3;
    padding: 32px 0 20px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
    position: relative;
}

.fair-map-wrap svg {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* Tooltip */
.iso-tip {
    position: fixed;
    background: #131313;
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    pointer-events: none;
    z-index: 9999;
    min-width: 160px;
    max-width: 240px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: opacity 0.15s ease;
    border-top: 2px solid #e03434;
    opacity: 0;
}

.iso-tip.is-visible {
    opacity: 1;
}

.iso-tip__name {
    display: block;
    font-family: 'Biennale', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 4px;
    line-height: 1.3;
    white-space: pre-line;
}

.iso-tip__size {
    display: block;
    font-family: 'Biennale', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
    white-space: pre-line;
}

/* Legend */
.fair-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    justify-content: center;
    padding: 16px 24px 4px;
}

.fml-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Biennale', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.fml-swatch {
    display: inline-block;
    width: 20px;
    height: 12px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.fml-swatch--brand    { background: #f5f1e8; }
.fml-swatch--available{ background: #e5e2d9; border-style: dashed; }
.fml-swatch--master   { background: var(--neon-pink); }
.fml-swatch--filmecon { background: var(--neon-pink); filter: brightness(0.7); }
.fml-swatch--entrance { background: #1e1e1e; }

/* Mobile: smaller tiles */
@media (max-width: 600px) {
    .fair-map-wrap {
        padding: 16px 0 12px;
        border-radius: 12px;
    }

    .fml-item {
        font-size: 0.72rem;
    }
}

/* --- Instructors Section (full-width dark background) --- */
.instructors-section {
    background: var(--bg-color);
    padding: 6rem 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.instructors-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

.instructors-header h2.title-red {
    color: var(--text-primary);
}

.instructors-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-top: 5px;
}

/* --- Placeholder images (grayscale para palestrantes a confirmar) --- */
.img-placeholder {
}

/* --- Ticker popup: suporte a toque em mobile --- */
.ticker-item.touch-open .brand-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}





/* ─────────────────────────────────────────
   QUEM FAZ SECTION
───────────────────────────────────────── */
.team-section {
    background: var(--bg-color);
    padding: 6rem 5%;
}
.team-container {
    max-width: 900px;
    margin: 0 auto;
}
.team-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--neon-pink);
    margin-bottom: 0.75rem;
}
.team-headline {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0;
}
.team-desc {
    margin-top: 1.25rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    text-align: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 0 auto;
}
.team-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #111;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.45s ease;
}
.team-card:hover .team-photo {
    transform: scale(1.05);
}
.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.team-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.team-role {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.35rem;
}
.team-socials {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.6rem;
}
.team-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.team-social-link:hover {
    background: rgba(255,255,255,0.35);
    transform: scale(1.1);
}
.team-cta {
    margin-top: 2.5rem;
    text-align: center;
}
.team-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.team-wa:hover {
    background: #1aad54;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}
@media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ─────────────────────────────────────────
   MAPA DOS EXPOSITORES SECTION
───────────────────────────────────────── */
.exhibitor-map-section {
    background: var(--dark-bg);
    padding: 6rem 5%;
}
.exhibitor-map-container {
    max-width: 1200px;
    margin: 0 auto;
}
.exhibitor-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--neon-pink);
    margin-bottom: 0.75rem;
}
.exhibitor-headline {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin-bottom: 0;
}
.exhibitor-map-img {
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
}
.exhibitor-map-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    font-style: italic;
}

/* ─────────────────────────────────────────
   ACESSIBILIDADE SECTION
───────────────────────────────────────── */
.accessibility-section {
    background: var(--bg-color);
    padding: 6rem 5%;
}
.accessibility-container {
    max-width: 1200px;
    margin: 0 auto;
}
.accessibility-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--neon-pink);
    margin-bottom: 0.75rem;
}
.accessibility-headline {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0;
}
.accessibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.access-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.access-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.access-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(224,52,52,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.access-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.access-card-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
}
@media (max-width: 900px) {
    .accessibility-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .accessibility-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   HOSPEDAGEM SECTION
───────────────────────────────────────── */
.accommodation-section {
    background: var(--bg-color);
    padding: 6rem 5%;
}
.accommodation-container {
    max-width: 1200px;
    margin: 0 auto;
}
.accommodation-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--neon-pink);
    margin-bottom: 0.75rem;
}
.accommodation-headline {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0;
}
.accommodation-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
    padding-bottom: 1rem;
}
.accommodation-scroll::-webkit-scrollbar { height: 4px; }
.accommodation-scroll::-webkit-scrollbar-track { background: transparent; }
.accommodation-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
.accommodation-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
}
@media (min-width: 1100px) {
    .accommodation-track {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        width: 100%;
    }
}
.hotel-card {
    background: #1e1e1e;
    border-radius: 16px;
    overflow: hidden;
    width: 240px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
@media (min-width: 1100px) {
    .hotel-card { width: auto; }
}
.hotel-card:hover { transform: translateY(-4px); }
.hotel-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}
.hotel-body {
    padding: 1.25rem;
}
.hotel-name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.4rem;
}
.hotel-address {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.2rem;
}
.hotel-distance {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}
.hotel-cta {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--neon-pink);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease;
}
.hotel-cta:hover { opacity: 0.75; }

/* ── Mobile small (<480px) ─────────────────────────────────────── */
@media (max-width: 480px) {
    /* Hero tagline */
    .hero-tagline {
        font-size: 0.82rem;
    }

    /* Countdown */
    .hcd-num {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .hcd-sep {
        font-size: 1.8rem;
        padding-bottom: 0.5rem;
    }
    .hcd-lbl {
        font-size: 0.52rem;
    }

    /* Logo ticker — logos menores em telas pequenas */
    .hero-brands-ticker .ticker-item img,
    .ticker-item img {
        transform: scale(0.75);
        transform-origin: center;
    }

    /* Hero inner — evitar scroll excessivo com teclado aberto */
    .hero-inner {
        min-height: unset;
        padding-bottom: 2rem;
    }

    /* Quote banner */
    .quote-ticker-track {
        font-size: clamp(1.1rem, 5vw, 1.4rem);
    }

    /* Pricing cards */
    .pricing-card {
        padding: 1.5rem 1rem;
    }

    /* Top bar */
    .tb-lot-timer {
        font-size: 0.7rem;
    }
}
