/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - BABA 100 PRESSÃO (REFACTOR MULTIPLO SÊNIOR)
   ========================================================================== */

:root {
    /* Cores do Tema */
    --bg-primary: #040810;      /* Navy Blue ultra escuro */
    --bg-secondary: #0a0f1d;    /* Chumbo azulado escuro */
    --bg-tertiary: #10182c;     /* Azul escuro intermediário */
    
    --accent: #FF5A00;          /* Laranja vibrante principal */
    --accent-hover: #E04F00;    /* Laranja escuro no hover */
    --accent-glow: rgba(255, 90, 0, 0.15); /* Glow atenuado sutil */
    --accent-blue: #0052CC;     /* Azul Royal do Escudo */
    --accent-blue-glow: rgba(0, 82, 204, 0.1);
    
    /* Cores de Texto */
    --text-primary: #F8FAFC;    /* Branco fosco elegante */
    --text-secondary: #94A3B8;  /* Cinza claro para descrição */
    --text-muted: #64748B;      /* Cinza médio */
    
    /* Bordas & Vidros */
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(10, 15, 29, 0.75);
    --glass-border: rgba(255, 255, 255, 0.06);
    
    /* Fontes */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Configurações Globais */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.25s ease;
    --max-width: 1200px;
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES BÁSICAS
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

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

/* Scrollbar Customizada */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 10px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Grid de Linhas de Fundo Parallax Sutil */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
}

.grid-line {
    height: 100%;
    border-right: 1px dashed var(--border-color);
}

.grid-line:last-child {
    border-right: none;
}

/* Containers */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   ESTILOS DE BOTÕES & ELEMENTOS COMUNS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-solid {
    background: linear-gradient(135deg, var(--accent), #FF3C00);
    color: #FFFFFF;
    box-shadow: 0 4px 12px var(--accent-glow); /* Atenuado e discreto */
}

.btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 90, 0, 0.25);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 30%, #FF9900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cabeçalhos de Seções */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   HEADER / HEADER MENU
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 70px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-color: var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

.header-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--accent);
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-quick);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-quick);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--text-primary);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: var(--transition-quick);
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    position: absolute;
    left: 0;
    transition: var(--transition-quick);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Menu Aberto */
.mobile-toggle.active .hamburger {
    background: transparent;
}

.mobile-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ==========================================================================
   MOBILE MENU OVERLAY
   ========================================================================== */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.active {
    transform: translateX(-100%);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 80%;
}

.mobile-link {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-quick);
}

.mobile-link:hover {
    color: var(--accent);
    transform: scale(1.05);
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    overflow: hidden;
}

/* Grid Parallax de fundo no Hero */
.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: radial-gradient(circle at 50% 30%, rgba(0, 82, 204, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(255, 90, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    transform: translateY(0);
    z-index: 1;
}

.hero-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
}

.hero-logo-box {
    margin-bottom: 1rem;
    position: relative;
}

.hero-main-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 0 30px rgba(255, 90, 0, 0.15), 0 0 60px rgba(0, 82, 204, 0.1);
    animation: floatLogo 6s ease-in-out infinite;
}

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

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 720px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

/* ==========================================================================
   2. A LIGA E O APP (COMO FUNCIONA)
   ========================================================================== */

.liga-section {
    padding: 10rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.z-pattern-grid {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    margin-top: 4rem;
}

.z-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.z-row.reverse {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: flex-start;
}

.z-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.icon-badge {
    width: 50px;
    height: 50px;
    background: rgba(255, 90, 0, 0.08);
    border: 1px solid rgba(255, 90, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.z-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.z-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bullet-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 90, 0, 0.08);
    border: 1px solid rgba(255, 90, 0, 0.15);
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.bullet-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.bullet-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
}

.bullet-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* A Liga App CTA Button Container & Icon */
.liga-cta-container {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
}

.btn-liga-app {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 2.25rem;
}

.external-link-icon {
    transition: transform 0.3s ease;
}

.btn-liga-app:hover .external-link-icon {
    transform: translate(2px, -2px);
}

/* Feature Grid de Cards Pequenos */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.feat-icon-svg {
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
}

.feature-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Visual Components (Mockups) */
.z-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

/* HIGH-FIDELITY CSS SMARTPHONE MOCKUP */
.phone-mockup {
    width: 290px;
    height: 580px;
    background: #070b13;
    border: 11px solid #1e293b;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), inset 0 0 10px rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.phone-speaker {
    width: 60px;
    height: 4px;
    background: #334155;
    border-radius: 10px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 6px;
    right: 6px;
    background: var(--bg-primary);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-header {
    background: var(--bg-secondary);
    padding: 1.1rem 1.25rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

.phone-logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.phone-logo img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.phone-logo span {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.phone-signal-badge {
    font-size: 0.6rem;
    font-weight: 800;
    color: #FFFFFF;
    background: var(--accent);
    padding: 0.2rem 0.5rem;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

.phone-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
    overflow-y: auto;
}

.phone-section-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
}

.leaderboard-item.top-1 {
    background: linear-gradient(90deg, rgba(255, 90, 0, 0.08), transparent);
    border-color: rgba(255, 90, 0, 0.15);
}

.leaderboard-item .rank {
    font-size: 0.85rem;
    font-weight: 800;
    width: 24px;
    color: var(--text-muted);
}

.leaderboard-item.top-1 .rank {
    color: var(--accent);
}

.leaderboard-item .player-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.leaderboard-item .player-name {
    font-size: 0.8rem;
    font-weight: 700;
}

.leaderboard-item .player-pos {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.leaderboard-item .points {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.leaderboard-item.top-1 .points {
    color: var(--accent);
}

/* App Widget Preview */
.app-card-stats-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.mini-stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0.6rem;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.mini-stat-box .stat-num {
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
}

.mini-stat-box .stat-lbl {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Interactive App Mockup Slider */
.phone-slider-container {
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    display: flex;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 10;
}

.phone-slider-container::-webkit-scrollbar {
    display: none;
}

.phone-slider-track {
    display: flex;
    height: 100%;
    width: 100%;
}

.phone-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    overflow: hidden;
}

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

.phone-nav-bar {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: auto;
    background: transparent;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    z-index: 20;
}

.phone-nav-item {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-quick);
}

.phone-nav-item.active {
    background: var(--accent);
    transform: scale(1.25);
    box-shadow: 0 0 8px var(--accent);
}

/* Cartola Teaser Mockup */
.cartola-teaser {
    width: 100%;
    max-width: 380px;
    background: linear-gradient(145deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.25rem 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}

.cartola-teaser::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 90, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.badge-tag {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--accent), #FF3C00);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
}

.cartola-teaser h4 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
}

.teaser-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.countdown-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.countdown-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 55px;
    text-align: center;
}

.timer-unit span:first-child {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}

.timer-unit .unit-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.timer-divider {
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    margin: 0;
    padding-bottom: 10px;
}

/* Ajustes de Direção */
.z-row.reverse .z-content {
    grid-column: 2;
}

.z-row.reverse .z-visual {
    grid-column: 1;
    grid-row: 1;
}

/* ==========================================================================
   3. O ELENCO (CARROSSEL INFINITO MARQUEE HORIZONTAL)
   ========================================================================== */

.elenco-section {
    padding: 10rem 0 7rem;
    position: relative;
    z-index: 2;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 3rem 0;
    /* Efeito de fade nas laterais extremamente premium */
    mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: infiniteScroll 45s linear infinite;
}

/* Pausar carrossel ao passar o mouse */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Rola metade da largura total da track (que contém os duplicados) */
}

/* Minimalist Card Design - Imagens Puras */
.marquee-track img, .player-card {
    background: transparent !important; /* Totalmente transparente */
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    transition: var(--transition-smooth);
    cursor: pointer;
    flex-shrink: 0;
    color: transparent; /* Oculta alt text */
    text-indent: -9999px; /* Oculta o ícone nativo de imagem quebrada do navegador */

    /* Remoção rigorosa de filtros de cor indesejados */
    filter: none !important;
    -webkit-filter: none !important;
    mix-blend-mode: normal !important;
    opacity: 1 !important;

    /* Enquadramento original sem esticar */
    height: 350px !important;
    width: auto !important;
    object-fit: contain !important;
}

.marquee-track img:hover, .player-card:hover {
    transform: translateY(-10px);
    /* Garante a preservação total de cores em hover */
    filter: none !important;
    -webkit-filter: none !important;
}

/* Remoção de pseudo-elementos ou overlays sobre o carrossel */
.marquee-wrapper::before,
.marquee-wrapper::after,
.marquee-track::before,
.marquee-track::after {
    display: none !important;
    content: none !important;
}

/* ==========================================================================
   4. RESENHA EM VÍDEO (VAR DA RESENHA - REELS 9:16)
   ========================================================================== */

.var-section {
    padding: 10rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.embed-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Container do Video e do Botão Customizado */
.tech-video-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    max-width: 400px;
}

/* Moldura Tecnológica do Video (Mascara Clip) */
.tech-video-frame {
    width: 100%;
    height: 426px; /* Altura exata da mascara de recorte */
    overflow: hidden; /* CRÍTICO para cortar o topo do iframe */
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 0, 0.2); /* Borda laranja sutil */
    box-shadow: 0 4px 30px rgba(255, 107, 0, 0.05); /* Leve glow neon */
    background: rgba(17, 24, 39, 0.5); /* Glassmorphism */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    position: relative;
}

.tech-video-frame iframe {
    width: 100% !important;
    height: 480px !important;
    margin-top: -54px; /* Corta a barra de perfil branca do Instagram */
    border: none !important;
    display: block;
}

/* Botão Customizado Tech */
.btn-tech-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #111827;
    color: #FFFFFF;
    border: 1px solid #FF6B00; /* Borda fina laranja */
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.05);
}

.btn-tech-action:hover {
    background-color: #FF6B00;
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4); /* Brilho em laranja no hover */
    transform: translateY(-2px);
}

.tech-play-icon {
    fill: currentColor;
}

.video-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

/* Proporção Vertical 9:16 Reels */
.video-wrapper.vertical-reels {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    overflow: hidden;
}

.reels-placeholder-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
    border: 1px solid #374151;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.reels-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 40%, rgba(255, 90, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.reels-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    z-index: 2;
}

.reels-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 90, 0, 0.08);
    border: 1.5px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    box-shadow: 0 0 15px rgba(255, 90, 0, 0.1);
}

.reels-icon-box svg {
    margin-left: 2px; /* Ajuste visual de centralização do play */
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.reels-action-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    border-bottom: 1.5px solid transparent;
    padding-bottom: 0.1rem;
    transition: var(--transition-quick);
}

/* Interações nos Cards de Vídeo (Reels) */
.video-card-link:hover .video-card {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(255, 90, 0, 0.15);
}

.video-card-link:hover .reels-icon-box {
    background: var(--accent);
    color: #FFFFFF;
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(255, 90, 0, 0.35);
}

.video-card-link:hover .reels-action-text {
    color: var(--text-primary);
    border-color: var(--accent);
}

.var-action {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

/* ==========================================================================
   5. A RESENHA NO INSTAGRAM
   ========================================================================== */

.instagram-section {
    padding: 10rem 0;
    background-color: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.instagram-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.instagram-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.instagram-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text-primary);
}

.instagram-handle {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.instagram-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Feed Mockup Grid (2x2) */
.feed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.feed-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    aspect-ratio: 1; /* Torna o card perfeitamente quadrado */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.feed-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(255, 90, 0, 0.1);
}

.card-art-icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 90, 0, 0.06);
    border: 1px solid rgba(255, 90, 0, 0.12);
    transition: var(--transition-smooth);
}

.feed-card:hover .card-art-icon-svg {
    background: rgba(255, 90, 0, 0.15);
    transform: scale(1.08);
}

.feed-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.3;
}

/* ==========================================================================
   6. RODAPÉ (FOOTER)
   ========================================================================== */

.main-footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding-top: 6rem;
    position: relative;
    z-index: 2;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 360px;
}

.footer-links, .footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-links h4, .footer-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-quick);
    width: fit-content;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 2rem 0;
}

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

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* ==========================================================================
   6. SEÇÃO TEASER (NOVIDADE NO FINAL)
   ========================================================================== */

.teaser-section {
    position: relative;
    background: #000000 !important; /* Fundo preto sólido */
    background-color: #000000 !important;
    padding: 8rem 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-top: 1px solid rgba(255, 90, 0, 0.05);
}

/* Rebranding Background Logo Mistério */
.teaser-bg-logo-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
}

/* Camada de escurecimento linear-gradient de 75% a 85% sobre o escudo */
.teaser-bg-logo-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(17, 24, 39, 0.75), rgba(17, 24, 39, 0.85));
    z-index: 2;
    pointer-events: none;
}

.teaser-bg-logo {
    width: 400px;
    height: 400px;
    max-width: 100%;
    object-fit: contain;
    /* Propriedades solicitadas de posicionamento */
    background-size: 400px;
    background-repeat: no-repeat;
    background-position: center;
    /* Filtro exato solicitado para preservar a cor real */
    filter: blur(10px) !important;
    -webkit-filter: blur(10px) !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    pointer-events: none;
    z-index: 1;
}

.teaser-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100px;
    background: radial-gradient(ellipse at bottom, rgba(255, 90, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.teaser-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    position: relative;
    z-index: 5; /* Garante que os textos fiquem sobre o fundo misterioso */
}

.teaser-title {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.3;
    /* Sombra de texto solicitada com 90% opacidade */
    text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.9) !important;
}

.teaser-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-align: center;
    animation: pulseFade 4s ease-in-out infinite;
    /* Sombra de texto solicitada com 90% opacidade */
    text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.9) !important;
}

@keyframes pulseFade {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.95; }
}

/* ==========================================================================
   MODAL DE CONTATO (AGENDAR AMISTOSO)
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 8, 16, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    width: 90%;
    max-width: 520px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 90, 0, 0.05);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-quick);
}

.modal-close:hover {
    color: var(--accent);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header-logo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    margin-bottom: 1rem;
}

.modal-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Formulário do Modal */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.form-group input, .form-group textarea {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-quick);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 90, 0, 0.1);
}

.form-group textarea {
    resize: none;
}

/* Mensagem de Sucesso */
.form-success-message {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    animation: fadeIn 0.4s ease-out forwards;
}

.success-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

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

/* ==========================================================================
   ANIMAÇÕES DE REVELAÇÃO (Scroll Reveal Fallback)
   ========================================================================== */

/* Visível por padrão para SEO e se o JavaScript falhar */
.scroll-reveal,
.scroll-reveal-left,
.scroll-reveal-right,
.scroll-reveal-up {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Oculta os elementos inicialmente APENAS se o JavaScript estiver ativo */
.js-active .scroll-reveal,
.js-active .scroll-reveal-left,
.js-active .scroll-reveal-right,
.js-active .scroll-reveal-up {
    opacity: 0;
}

.js-active .scroll-reveal {
    transform: translateY(20px);
}

.js-active .scroll-reveal-up {
    transform: translateY(40px);
}

.js-active .scroll-reveal-left {
    transform: translateX(-40px);
}

.js-active .scroll-reveal-right {
    transform: translateX(40px);
}

/* Estado Revelado (para o fallback de scroll ou ativação direta) */
.js-active .scroll-reveal.revealed,
.js-active .scroll-reveal-left.revealed,
.js-active .scroll-reveal-right.revealed,
.js-active .scroll-reveal-up.revealed {
    opacity: 1;
    transform: translate(0) !important;
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .player-card {
        width: 200px;
        height: 290px;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .embed-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
    
    .z-row {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    /* Header e Navegação */
    .nav-menu {
        display: none;
    }
    
    .header-actions .btn-outline {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    /* Layouts Gerais */
    .section-title {
        font-size: 2rem;
    }
    
    .z-row, .z-row.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .z-row.reverse .z-content {
        grid-column: 1;
    }
    
    .z-row.reverse .z-visual {
        grid-column: 1;
        grid-row: 2;
    }
    
    .z-visual {
        order: 2;
    }
    
    .z-content {
        order: 1;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    /* Vídeos & Cards */
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .embed-card:last-child {
        grid-column: 1;
        max-width: none;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Seções Negative Space */
    .liga-section, .elenco-section, .var-section, .instagram-section, .teaser-section {
        padding: 6rem 0;
    }
    
    .teaser-title {
        font-size: 1.6rem;
        letter-spacing: 0.12em;
    }
    
    .instagram-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .instagram-text {
        align-items: center;
    }
    
    .z-pattern-grid {
        gap: 6rem;
    }
}

@media (max-width: 480px) {
    .modal-container {
        padding: 2.5rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}
