/* ==========================================
   DESIGN SYSTEM & GLOBAL STYLES
   ========================================== */

:root {
    --bg-dark: #06050a;
    --bg-card: rgba(18, 14, 30, 0.65);
    --bg-card-hover: rgba(32, 24, 51, 0.85);
    --primary-purple: #7c3aed;
    --primary-purple-rgb: 124, 58, 237;
    --primary-gold: #cfa86b;
    --primary-gold-rgb: 207, 168, 107;
    --accent-purple: #c084fc;
    --text-light: #f3f4f6;
    --text-muted: #a7a9be;
    --border-color: rgba(124, 58, 237, 0.15);
    --border-color-active: rgba(207, 168, 107, 0.4);
    
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --font-logo: 'Cinzel Decorative', serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.3);
    border-radius: 4px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-purple);
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
}

body {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    background-color: var(--bg-dark);
}

/* Efeito de iluminação de fundo (Glows) */
body::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(207, 168, 107, 0.05) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Auxiliares e Utilitários */
.container {
    width: min(100% - 32px, 1280px);
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 48px);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 145;
    background: rgba(6, 5, 10, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 70px;
    background: rgba(6, 5, 10, 0.95);
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-container {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hambúrguer Menu */
.burger-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    padding: 0;
    z-index: 105;
}

.burger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.burger-bar:nth-child(2) {
    width: 75%;
}

.burger-menu-btn:hover .burger-bar:nth-child(2) {
    width: 100%;
}

/* Logo */
.logo {
    font-family: var(--font-logo);
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo img {
    height: 55px;
    max-width: 280px;
    object-fit: contain;
    margin: 0;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo img {
    height: 55px;
    margin: 0;
}

/* Botões da Header */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.btn-login:hover {
    color: var(--accent-purple);
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(124, 58, 237, 0.05);
}

.btn-login-outline {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-smooth);
    background: transparent;
}

.btn-login-outline:hover {
    color: #ffffff;
    border-color: var(--accent-purple);
    background: rgba(124, 58, 237, 0.1);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.2);
}

.btn-subscribe {
    background: var(--primary-gold);
    color: #08090c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 11px 24px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
    transition: var(--transition-smooth);
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 168, 107, 0.4);
    background: #e2be82;
}

/* ==========================================
   SIDE MENU (MENU LATERAL DESLIZANTE)
   ========================================== */

.side-nav {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: #06050b;
    z-index: 150;
    transition: var(--transition-smooth);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(124, 58, 237, 0.05);
    overflow-y: auto;
}

.side-nav.open {
    left: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 148;
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.menu-overlay.open {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.close-menu-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-menu-btn:hover {
    color: var(--text-light);
    transform: rotate(90deg);
}

.side-nav-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 60px 40px 40px 40px;
}

.side-logo {
    font-family: var(--font-logo);
    font-weight: 900;
    font-size: 2.1rem;
    letter-spacing: 2px;
    margin-bottom: 48px;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(124, 58, 237, 0.15);
}

.side-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: auto;
}

.side-nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    display: inline-block;
    position: relative;
}

.side-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-purple);
    transition: var(--transition-smooth);
}

.side-nav-links a:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

.side-nav-links a:hover::after {
    width: 30px;
}

.side-nav-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.side-nav-footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    color: var(--accent-purple);
    transform: translateY(-2px);
}

/* ==========================================
   HERO CAROUSEL SECTION
   ========================================== */

.hero-carousel-section {
    position: relative;
    width: 100%;
    height: 100svh;
    height: 100dvh;
    min-height: 550px;
    overflow: hidden;
    background: #020106;
    padding: 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #020106;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s;
    display: flex;
    align-items: center;
    padding-top: 70px;
    background: #020106;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #020106;
    z-index: 0;
}

.hero-media picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position:
        var(--hero-position-x, 50%)
        var(--hero-position-y, 38%);
    transform: none;
    image-rendering: auto;
    transition: transform 0.3s ease, transform-origin 0.3s ease, object-position 0.3s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(2, 1, 6, 0.95) 0%, rgba(2, 1, 6, 0.62) 48%, rgba(2, 1, 6, 0.30) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .hero-overlay {
        background: linear-gradient(180deg, rgba(2, 1, 6, 0.3) 0%, rgba(2, 1, 6, 0.95) 100%);
    }
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    max-width: 750px;
    margin-left: 10%;
    padding: 0 24px;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide.active .slide-content {
    transform: translateY(0);
}

.slide-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.35);
    color: #c084fc;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 40px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -1px;
}

.slide-description {
    font-size: clamp(0.95rem, 1.5vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.5;
    max-width: 600px;
}

/* Botões do Carrossel */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #5b21b6 100%);
    color: #ffffff;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.45);
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--primary-purple) 100%);
}

.btn-primary i {
    font-size: 0.9rem;
}

/* Setas de Controle */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-control:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.4);
    color: var(--accent-purple);
    transform: translateY(-50%) scale(1.05);
}

.carousel-control.prev {
    left: 30px;
}

.carousel-control.next {
    right: 30px;
}

/* Indicadores de Slide */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.indicator.active {
    background: var(--primary-purple);
    width: 48px;
}

/* ==========================================
   SCROLL ANIMATIONS (INTERSECTION OBSERVER)
   ========================================== */

.scroll-anim {
    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);
}

.scroll-anim.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   SEÇÕES GERAIS (TÍTULOS E SUBTÍTULOS)
   ========================================== */

section {
    padding: 100px 0;
    position: relative;
}

.section-subtitle {
    display: block;
    color: var(--accent-purple);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.section-desc-light {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   SEÇÃO 3 - CHAMADA DE AÇÃO PRINCIPAL
   ========================================== */

.core-cta-section {
    background: linear-gradient(180deg, #06050a 0%, #0c0a15 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.main-heading {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 40%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.btn-accent-gold {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #5b21b6 100%);
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 40px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
    transition: var(--transition-smooth);
}

.btn-accent-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--primary-purple) 100%);
}

/* ==========================================
   SEÇÃO 4 - CONTENT GRID & FEED RECORRENTE
   ========================================== */

.content-feed-section {
    background: #08090c;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 24px;
}

/* Filtros */
.feed-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.08);
}

.filter-btn.active {
    background: rgba(124, 58, 237, 0.12);
    border-color: var(--primary-purple);
    color: var(--accent-purple);
}

/* Cards de Conteúdo */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 30px;
}

.content-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.content-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-color-active);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.content-card:hover .card-image-wrapper img {
    transform: scale(1.08);
}

.card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(17, 13, 28, 0.85);
    border: 1px solid rgba(124, 58, 237, 0.25);
    color: var(--accent-purple);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Overlay de Play do Card */
.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 5, 10, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.content-card:hover .card-hover-overlay {
    opacity: 1;
}

.btn-play-card {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-purple);
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    transition: var(--transition-bounce);
    transform: scale(0.8);
}

.content-card:hover .btn-play-card {
    transform: scale(1);
}

.btn-play-card:hover {
    background: #ffffff;
    color: var(--primary-purple);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.card-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-duration {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.content-card:hover .card-title {
    color: var(--accent-purple);
}

.card-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}

.btn-card-action {
    background: none;
    border: none;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    align-self: flex-start;
    margin-top: auto;
    position: relative;
    transition: var(--transition-smooth);
}

.btn-card-action::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-gold);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.btn-card-action:hover {
    color: #ffffff;
}

.btn-card-action:hover::after {
    background-color: #ffffff;
    transform: scaleX(1);
}

/* ==========================================
   SEÇÃO 5 - PROGRAMAS & SÉRIES
   ========================================== */

.programs-section {
    background: #06050a;
    border-top: 1px solid rgba(124, 58, 237, 0.05);
}

.section-intro {
    margin-bottom: 56px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 30px;
}

.program-card {
    position: relative;
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    transition: var(--transition-smooth);
}

.program-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: var(--transition-smooth);
}

.program-card:hover .program-card-bg {
    transform: scale(1.04);
}

.program-card:hover {
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.program-card-content {
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.program-card:hover .program-card-content {
    transform: translateY(0);
}

.program-meta {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-purple);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.program-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.program-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.program-card:hover .program-desc {
    opacity: 1;
    visibility: visible;
}

.btn-outline-gold {
    background: none;
    border: 1px solid rgba(124, 58, 237, 0.4);
    color: var(--accent-purple);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
    background: var(--primary-purple);
    color: #ffffff;
    border-color: var(--primary-purple);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

/* ==========================================
   SEÇÃO 6 - CAPTURA DE LEADS (NEWSLETTER)
   ========================================== */

.newsletter-section {
    background: #06050a;
}

.newsletter-card-wrapper {
    background: linear-gradient(135deg, #141022 0%, #08060f 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.newsletter-left {
    flex: 1;
    max-width: 520px;
}

.newsletter-badge {
    color: var(--accent-purple);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.25;
}

.newsletter-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.newsletter-right {
    flex: 1;
    max-width: 440px;
    width: 100%;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-form input {
    width: 100%;
    height: 52px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 0 20px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(124, 58, 237, 0.03);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.15);
}

.btn-submit-newsletter {
    height: 52px;
    background: var(--primary-purple);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
    transition: var(--transition-smooth);
}

.btn-submit-newsletter:hover {
    background: #ffffff;
    color: var(--primary-purple);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Sucesso do Cadastro */
.newsletter-success-box {
    text-align: center;
    padding: 24px;
    background: rgba(124, 58, 237, 0.03);
    border: 1px dashed var(--primary-purple);
    border-radius: 6px;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 16px;
}

.newsletter-success-box h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.newsletter-success-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-download-pdf {
    background: #ffffff;
    color: #08090c;
    border: none;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-download-pdf:hover {
    background: var(--primary-purple);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

/* ==========================================
   SEÇÃO 7 - APRESENTAÇÃO DA COMUNIDADE
   ========================================== */

.community-section {
    background: #06050a;
    border-top: 1px solid rgba(124, 58, 237, 0.05);
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.community-text-col {
    max-width: 520px;
}

.community-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
}

.community-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 20px 10px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-purple);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.btn-accent-gold-outline {
    border: 1px solid var(--primary-purple);
    color: var(--accent-purple);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-accent-gold-outline:hover {
    background: rgba(124, 58, 237, 0.05);
    transform: translateY(-2px);
}

/* Simulação do Chat do Discord */
.mock-chat-window {
    background: #13101c;
    border-radius: 10px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.chat-header {
    background: #0c0a13;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.05);
}

.chat-indicator {
    width: 10px;
    height: 10px;
    background-color: #23a55a; /* Verde Online */
    border-radius: 50%;
}

.chat-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.chat-body {
    padding: 24px;
    height: 280px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chat-message {
    display: flex;
    gap: 16px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-user-meta {
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.chat-user-meta strong {
    color: #ffffff;
}

.chat-time {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-left: 8px;
}

.chat-text {
    color: #dbdee1;
    font-size: 0.9rem;
    line-height: 1.45;
}

.chat-text em {
    color: var(--primary-gold);
    font-style: italic;
}

.chat-input-area {
    background: #0c0a13;
    padding: 16px;
    display: flex;
    gap: 12px;
}

.chat-input-area input {
    flex-grow: 1;
    background: #1d182b;
    border: none;
    border-radius: 4px;
    padding: 0 16px;
    color: #ffffff;
    font-size: 0.85rem;
}

.btn-chat-send {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.btn-chat-send:hover {
    color: var(--accent-purple);
}

/* ==========================================
   SEÇÃO 8 - BENEFÍCIOS DA ASSINATURA
   ========================================== */

.benefits-section {
    background: #06050a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 40px;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-active);
    transform: translateY(-5px);
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--accent-purple);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-wrapper {
    background: var(--primary-purple);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

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

/* ==========================================
   SEÇÃO 9 - PONTE PARA PLANOS
   ========================================== */

.plans-bridge-section {
    background: linear-gradient(180deg, #06050a 0%, #0c0a15 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* ==========================================
   SEÇÃO 10 - PLANOS E PREÇOS
   ========================================== */

.pricing-section {
    background: #0c0a15;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.plan-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.plan-trust-badges .badge-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-trust-badges .badge-item i {
    color: var(--primary-gold);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 56px;
    flex-wrap: wrap;
}

.subscription-dashboard-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .subscription-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}


.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 100%;
    max-width: 440px;
    padding: 48px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--primary-gold);
    background: rgba(20, 16, 32, 0.85);
    box-shadow: 0 15px 35px rgba(207, 168, 107, 0.08);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular:hover {
    box-shadow: 0 15px 35px rgba(207, 168, 107, 0.15);
}

.popular-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: #08090c;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 36px;
}

.pricing-plan-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.pricing-plan-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-price-wrapper {
    display: flex;
    align-items: baseline;
    color: #ffffff;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 4px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 850;
    line-height: 1;
}

.price-cents {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-period {
    color: var(--text-muted);
    font-size: 1rem;
    margin-left: 6px;
}

.billing-annually {
    display: block;
    font-size: 0.8rem;
    color: var(--primary-gold);
    margin-top: 12px;
    font-weight: 600;
}

/* Lista de Recursos */
.pricing-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-features li {
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    font-size: 0.85rem;
    color: var(--accent-purple);
}

.pricing-features li.muted-feature {
    color: #4b5563;
}

.pricing-features li.muted-feature i {
    color: #4b5563;
}

/* Botão do Plano */
.btn-price-action {
    width: 100%;
    height: 52px;
    background: none;
    border: 1px solid rgba(124, 58, 237, 0.4);
    color: var(--accent-purple);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-price-action:hover {
    background: var(--primary-purple);
    color: #ffffff;
    border-color: var(--primary-purple);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}

.pricing-card.popular .btn-price-action {
    background: var(--primary-gold);
    color: #08090c;
    border-color: var(--primary-gold);
    box-shadow: 0 4px 15px rgba(207, 168, 107, 0.25);
}

.pricing-card.popular .btn-price-action:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #08090c;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.35);
}

/* ==========================================
   SEÇÃO 11 - ACORDEÃO DE FAQ
   ========================================== */

.faq-section {
    background: #06050a;
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 48px auto 60px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-color-active);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-icon {
    font-size: 0.95rem;
    color: var(--accent-purple);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    color: var(--accent-purple);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* Painel de Resposta */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
    padding: 0 30px 24px 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-answer-content strong {
    color: var(--text-light);
}

/* Suporte */
.faq-support p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.btn-support-link {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-support-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

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

.main-footer {
    background: #030305;
    border-top: 1px solid rgba(124, 58, 237, 0.05);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col-about {
    max-width: 360px;
}

.footer-logo {
    font-family: var(--font-logo);
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(124, 58, 237, 0.15);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-grid h4 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-grid a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-grid a:hover {
    color: var(--accent-purple);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom p:last-child {
    font-style: italic;
    color: rgba(255, 255, 255, 0.15);
}

/* ==========================================
   MODAIS (OVERLAY & ESTRUTURA)
   ========================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.modal-close-btn {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: var(--accent-purple);
    transform: scale(1.1);
}

/* Player de Vídeo Customizado */
.video-modal-container {
    position: relative;
    width: min(100% - 32px, 900px);
    aspect-ratio: 16/9;
    background: #000000;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-video-player-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.custom-video-player-wrapper video {
    object-fit: cover;
}

/* Controles de Vídeo */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(6, 5, 10, 0.95) 0%, rgba(6, 5, 10, 0) 100%);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.custom-video-player-wrapper:hover .video-controls {
    opacity: 1;
    transform: translateY(0);
}

.video-ctrl-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-ctrl-btn:hover {
    color: var(--accent-purple);
}

.video-progress-bar-container {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.video-progress-filled {
    height: 100%;
    width: 0;
    background: var(--primary-purple);
    border-radius: 3px;
    transition: width 0.1s linear;
}

.video-time-display {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.video-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: var(--accent-purple);
    z-index: 4;
    display: none;
}

/* Início / Pause Overlay */
.video-start-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 5, 10, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    z-index: 2;
}

.play-pulse-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-purple);
    color: #ffffff;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
    animation: playPulse 2s infinite;
}

@keyframes playPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(124, 58, 237, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
    }
}

/* Modal Leitor Imersivo */
.article-modal-container {
    position: relative;
    width: min(100% - 32px, 750px);
    background: #0c0a15;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    max-height: 90dvh;
    overflow-y: auto;
    padding: clamp(20px, 5vw, 50px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-modal-content {
    color: #d1d5db;
}

.article-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
}

.article-meta {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-purple);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.article-headline {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin-top: 10px;
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.article-body blockquote {
    border-left: 3px solid var(--primary-purple);
    padding-left: 20px;
    margin: 30px 0;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: #ffffff;
}

/* Modal Checkout */
.checkout-modal-container {
    position: relative;
    width: min(100% - 32px, 420px);
    background: #13101c;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: clamp(16px, 4vw, 30px);
    max-height: 90dvh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

/* Ajustes compactos para formulários dentro do modal */
.modal-overlay .checkout-form {
    gap: 12px !important;
}

.modal-overlay .form-group {
    gap: 4px !important;
}

.modal-overlay .checkout-form input {
    height: 38px !important;
    padding: 0 12px !important;
    font-size: 0.85rem !important;
}

.modal-overlay .checkout-header-modal {
    margin-bottom: 16px !important;
}

.modal-overlay .checkout-secure-icon {
    font-size: 1.8rem !important;
    margin-bottom: 8px !important;
}

.modal-overlay .checkout-header-modal h3 {
    font-size: 1.15rem !important;
}

.modal-overlay .checkout-header-modal p {
    font-size: 0.8rem !important;
}

/* Ajuste compacto de 2 colunas para os checklists de requisitos de senha */
#passwordRequirements, #newPasswordRequirements {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px 10px !important;
    padding: 10px 12px !important;
    background: rgba(255,255,255,0.01) !important;
    border-radius: 6px !important;
}

/* Ajustes compactos para botões e feedbacks nos modais */
.modal-overlay .btn-checkout-submit {
    height: 40px !important;
    padding: 0 16px !important;
    font-size: 0.85rem !important;
    margin-top: 4px !important;
}

.modal-overlay .strength-segment, .modal-overlay .new-strength-segment {
    transition: background 0.3s;
}


.checkout-header-modal {
    text-align: center;
    margin-bottom: 24px;
}

.checkout-secure-icon {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 16px;
}

.checkout-header-modal h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.checkout-header-modal p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.checkout-summary-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(124, 58, 237, 0.2);
    border-radius: 4px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.checkout-price-highlight {
    font-weight: 700;
    color: var(--accent-purple);
}

/* Formulário do Checkout */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.checkout-form input {
    width: 100%;
    box-sizing: border-box;
    height: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 0 16px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.checkout-form input:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(124, 58, 237, 0.03);
}

.input-icon-wrapper {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.input-icon-wrapper input {
    width: 100%;
    padding-right: 48px;
    box-sizing: border-box;
}

.input-right-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

.btn-checkout-submit {
    height: 52px;
    background: var(--primary-purple);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
    transition: var(--transition-smooth);
}

.btn-checkout-submit:hover {
    background: #ffffff;
    color: var(--primary-purple);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Sucesso do Checkout */
.checkout-success-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.checkout-success-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.checkout-credentials-box {
    background: rgba(124, 58, 237, 0.03);
    border: 1px solid rgba(124, 58, 237, 0.15);
    padding: 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.checkout-credentials-box strong {
    color: var(--primary-gold);
    display: block;
    margin-top: 4px;
}

.btn-checkout-success-close {
    height: 52px;
    background: var(--primary-purple);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
    transition: var(--transition-smooth);
}

.btn-checkout-success-close:hover {
    background: #ffffff;
    color: var(--primary-purple);
}

/* Checkmark Animation */
.success-checkmark-animation {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto 24px auto;
}

.success-checkmark-animation .circle-border {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(124, 58, 237, 0.1);
    border-top-color: var(--accent-purple);
    animation: spin 1s linear;
}

.checkmark-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2rem;
    color: var(--accent-purple);
    animation: scaleIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s both;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Modal Suporte */
.support-modal-container {
    position: relative;
    width: min(100% - 32px, 420px);
    background: #13101c;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: clamp(20px, 6vw, 40px);
    max-height: 90dvh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-whatsapp-icon {
    font-size: 3rem;
    color: #25d366;
    margin-bottom: 16px;
}

.support-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.support-modal-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.support-form input,
.support-form textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.support-form input:focus,
.support-form textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(124, 58, 237, 0.03);
}

.btn-support-submit {
    height: 52px;
    background: #25d366;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-support-submit:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

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

@keyframes zoomIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes scaleIn {
    from { transform: translate(-50%, -50%) scale(0); }
    to { transform: translate(-50%, -50%) scale(1); }
}

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

@media (max-width: 1024px) {
    .slide-title {
        font-size: 2.8rem;
    }
    
    .newsletter-card-wrapper {
        flex-direction: column;
        padding: 40px;
    }
    
    .newsletter-left, .newsletter-right {
        max-width: 100%;
        text-align: center;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .community-text-col {
        max-width: 100%;
        text-align: center;
    }
    
    .community-stat-grid {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

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

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    img, video {
        max-width: 100%;
        height: auto;
    }

    iframe {
        max-width: 100%;
    }

    section {
        padding: 70px 0;
    }
    
    .main-header,
    .main-header.scrolled {
        height: 72px !important;
        z-index: 145 !important;
    }

    .logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 5 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .logo img {
        width: 115px !important;
        height: auto !important;
    }

    .burger-menu-btn {
        position: relative !important;
        z-index: 6 !important;
    }

    .header-actions {
        margin-left: auto !important;
        position: relative !important;
        z-index: 6 !important;
        gap: 8px !important;
    }

    #registerBtn,
    #subscribeBtn {
        display: none !important;
    }

    .header-actions .btn-login {
        padding: 8px 14px !important;
        font-size: 0.85rem !important;
    }

    #userHeaderName {
        display: none !important;
    }

    #userProfilePill {
        max-width: 60px !important;
        padding: 4px !important;
        justify-content: center !important;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-content {
        margin-left: 5%;
        text-align: center;
        margin-right: 5%;
    }
    
    .carousel-control {
        width: 44px;
        height: 44px;
    }
    
    .carousel-control.prev {
        left: 10px;
    }
    
    .carousel-control.next {
        right: 10px;
    }
    
    .main-heading {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-header-flex {
        text-align: center;
        justify-content: center;
    }
    
    .feed-filters {
        justify-content: center;
    }
    
    .pricing-card {
        padding: 30px;
    }
    
    .article-modal-container {
        padding: 30px;
    }

    .modal-close-btn {
        top: 12px;
        right: 12px;
        color: #ffffff;
        background: rgba(0, 0, 0, 0.45);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        z-index: 10;
    }
    
    .article-headline {
        font-size: 1.75rem;
    }
    .header-container {
        position: relative !important;
        height: 100% !important;
        padding: 0 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    input, textarea, select {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .btn-login {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .btn-subscribe {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   FEED CONTROLS & SEARCH BAR
   ========================================== */
.feed-controls-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.search-box-container {
    position: relative;
    width: 320px;
    max-width: 100%;
}

.search-box-container input {
    width: 100%;
    height: 42px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 0 16px 0 42px;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.search-box-container input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(207, 168, 107, 0.03);
    box-shadow: 0 0 15px rgba(207, 168, 107, 0.1);
}

.search-box-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.search-box-container input:focus + .search-box-icon {
    color: var(--primary-gold);
}

@media (max-width: 1024px) {
    .feed-controls-wrapper {
        align-items: center;
        width: 100%;
    }
    .search-box-container {
        width: 100%;
    }
}

/* ==========================================
   PORTAL DA COMUNIDADE (CIRCLE.SO STYLE)
   ========================================== */
.community-spaces-sidebar::-webkit-scrollbar,
.community-feed-column::-webkit-scrollbar,
.community-context-column::-webkit-scrollbar {
    width: 5px;
}

.community-spaces-sidebar::-webkit-scrollbar-track,
.community-feed-column::-webkit-scrollbar-track,
.community-context-column::-webkit-scrollbar-track {
    background: transparent;
}

.community-spaces-sidebar::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.15);
    border-radius: 4px;
}

.community-feed-column::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.community-context-column::-webkit-scrollbar-thumb {
    background: rgba(207, 168, 107, 0.15);
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .community-portal-container {
        grid-template-columns: 200px 1fr !important;
    }
    .community-context-column {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .community-portal-container {
        grid-template-columns: 1fr !important;
        height: auto !important;
        min-height: 600px;
    }
    .community-spaces-sidebar {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
        max-height: 200px;
    }
}

/* Estilo da Bolha Animada de Ganho de XP Global */
@keyframes floatUpFade {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    15% {
        opacity: 1;
        transform: translateY(0) scale(1.1);
    }
    80% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
}
.xp-animation-bubble {
    position: fixed;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8860b 100%);
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: 0 10px 30px rgba(207, 168, 107, 0.4);
    z-index: 99999;
    pointer-events: none;
    animation: floatUpFade 2.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ==========================================
   CARROSSEL DE CURSOS PORTAL (#portalCoursesList)
   ========================================== */
.courses-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.courses-carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 30px 5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.courses-carousel-track::-webkit-scrollbar {
    display: none;
}

.vlv-series-card {
    flex: 0 0 min(100%, 380px);
    height: 240px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.vlv-series-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(207, 168, 107, 0.25);
}

.vlv-series-card.locked::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 5, 10, 0.75);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.vlv-series-lock-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(239, 68, 68, 0.9);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vlv-series-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(6, 5, 10, 0.95) 100%);
    width: 100%;
    box-sizing: border-box;
}

.vlv-series-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 6px;
}

.vlv-series-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.vlv-series-btn {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8860b 100%);
    color: #000000;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.vlv-series-card:hover .vlv-series-btn {
    transform: translateX(4px);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(18, 15, 26, 0.9);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.carousel-arrow:hover {
    background: var(--primary-gold);
    color: #000000;
    box-shadow: 0 0 20px rgba(207, 168, 107, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: -20px;
}

.carousel-arrow.next {
    right: -20px;
}

