/* ==========================================================================
   O Reflexo Theater — Design System (Quiet Luxury: Dark + Gold)
   Tudo escopado sob .reflexo-theme para isolamento total.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIÁVEIS (Design Tokens)
   -------------------------------------------------------------------------- */
.reflexo-theme {
    --rt-bg-color: #050505;
    --rt-bg-subtle: #0a0a0a;
    --rt-bg-coffee: #1A1512;
    --rt-gold: #C5A059;
    --rt-gold-hover: #d4b06a;
    --rt-text-main: #E0E0E0;
    --rt-text-muted: #A0A0A0;
    --rt-text-reading: #cccccc;
    --rt-text-stone: #B8B0A8;
    --rt-border-subtle: #1a1a1a;
    --rt-font-serif: 'Playfair Display', Georgia, serif;
    --rt-font-literary: 'EB Garamond', 'Garamond', 'Times New Roman', serif;
    --rt-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --------------------------------------------------------------------------
   2. OVERRIDES DO LAYOUT GLOBAL ("Luzes Apagadas")
   -------------------------------------------------------------------------- */

/* Body & main content */
.reflexo-theme,
.reflexo-theme .main-content {
    background-color: var(--rt-bg-color) !important;
    color: var(--rt-text-main);
}

/* Header: transparente, flutuante sobre o Hero */
.reflexo-theme header {
    position: absolute;
    width: 100%;
    z-index: 100;
}

.reflexo-theme .visitor-header {
    background-color: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

.reflexo-theme .visitor-header a:not(.visitor-signup-btn):not(.visitor-mobile-signup-btn),
.reflexo-theme .visitor-header .nav-link,
.reflexo-theme .visitor-header .navbar-brand,
.reflexo-theme .visitor-header .dropdown-toggle {
    color: var(--rt-text-main) !important;
    transition: color 0.3s ease;
}

.reflexo-theme .visitor-header a:not(.visitor-signup-btn):not(.visitor-mobile-signup-btn):hover,
.reflexo-theme .visitor-header .nav-link:hover {
    color: var(--rt-gold) !important;
}

/* Sidebar (usuários logados): dark mode */
.reflexo-theme .youtube-sidebar {
    background-color: var(--rt-bg-subtle) !important;
    border-right-color: var(--rt-border-subtle) !important;
}

.reflexo-theme .youtube-sidebar a,
.reflexo-theme .youtube-sidebar .sidebar-link {
    color: var(--rt-text-muted) !important;
    transition: color 0.3s ease;
}

.reflexo-theme .youtube-sidebar a:hover,
.reflexo-theme .youtube-sidebar .sidebar-link:hover {
    color: var(--rt-gold) !important;
}

/* Footer global: oculto (será substituído por "A Comporta") */
.reflexo-theme .footer-section {
    display: none !important;
}

/* Messages/alerts: adaptar ao dark mode */
.reflexo-theme .alert {
    background-color: var(--rt-bg-subtle);
    border-color: var(--rt-border-subtle);
    color: var(--rt-text-main);
}

/* --------------------------------------------------------------------------
   2.5. STICKY NAVIGATION (Glassmorphism)
   -------------------------------------------------------------------------- */
.reflexo-theme .reflexo-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 1000;
    background: rgba(10, 9, 8, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
    transition: all 0.3s ease;
}

.reflexo-theme .reflexo-nav.scrolled {
    background: rgba(10, 9, 8, 0.92);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.reflexo-theme .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

/* Logo */
.reflexo-theme .nav-logo {
    font-family: var(--rt-font-serif);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--rt-gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.reflexo-theme .nav-logo:hover {
    opacity: 0.8;
}

/* Links Container */
.reflexo-theme .reflexo-menu-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Individual Links */
.reflexo-theme .reflexo-menu-item {
    font-family: var(--rt-font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(224, 224, 224, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.reflexo-theme .reflexo-menu-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rt-gold);
    transition: width 0.3s ease;
}

.reflexo-theme .reflexo-menu-item:hover {
    color: var(--rt-gold);
}

.reflexo-theme .reflexo-menu-item:hover::after {
    width: 100%;
}

/* CTA Link (Full Pass) */
.reflexo-theme .reflexo-menu-cta {
    color: var(--rt-gold);
    border: 1px solid rgba(197, 160, 89, 0.5);
    padding: 8px 16px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.reflexo-theme .reflexo-menu-cta::after {
    display: none;
}

.reflexo-theme .reflexo-menu-cta:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--rt-gold);
}

/* Hamburger Toggle */
.reflexo-theme .reflexo-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.reflexo-theme .reflexo-toggle-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--rt-gold);
    transition: all 0.3s ease;
}

.reflexo-theme .reflexo-menu-toggle.active .reflexo-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.reflexo-theme .reflexo-menu-toggle.active .reflexo-toggle-line:nth-child(2) {
    opacity: 0;
}

.reflexo-theme .reflexo-menu-toggle.active .reflexo-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Profile Menu */
.reflexo-theme .reflexo-profile-menu {
    position: relative;
    margin-left: 16px;
}

.reflexo-theme .reflexo-profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: border-color 0.3s ease;
}

.reflexo-theme .reflexo-profile-avatar:hover {
    border-color: var(--rt-gold);
}

.reflexo-theme .reflexo-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reflexo-theme .reflexo-profile-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 200px;
    background: rgba(26, 21, 18, 0.98);
    border: 1px solid var(--rt-border-subtle);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.reflexo-theme .reflexo-profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.reflexo-theme .reflexo-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--rt-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.reflexo-theme .reflexo-dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--rt-gold);
}

.reflexo-theme .reflexo-dropdown-item i {
    width: 16px;
    text-align: center;
    font-size: 0.9rem;
}

.reflexo-theme .reflexo-dropdown-divider {
    height: 1px;
    background: var(--rt-border-subtle);
    margin: 8px 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .reflexo-theme .reflexo-menu-toggle {
        display: flex;
    }

    .reflexo-theme .reflexo-menu-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 0;
        background: #0A0908 !important;
        background-color: #0A0908 !important;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .reflexo-theme .reflexo-menu-links.active {
        transform: translateX(0);
        background: #0A0908 !important;
        background-color: #0A0908 !important;
    }

    .reflexo-theme .reflexo-menu-links li {
        width: 100%;
        text-align: center;
    }

    .reflexo-theme .reflexo-menu-item {
        display: block;
        padding: 20px 24px;
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        background: #0A0908;
        background-color: #0A0908;
    }

    .reflexo-theme .reflexo-menu-item::after {
        display: none;
    }

    .reflexo-theme .reflexo-menu-cta {
        margin: 24px;
        border: 1px solid var(--rt-gold);
        display: inline-block;
        width: auto;
        background: #0A0908;
        background-color: #0A0908;
    }

    .reflexo-theme .reflexo-menu-links li:last-child {
        background: #0A0908;
        background-color: #0A0908;
        text-align: center;
        padding: 12px 0;
    }

    .reflexo-theme .reflexo-profile-menu {
        margin-left: 12px;
    }

    .reflexo-theme .reflexo-profile-avatar {
        width: 32px;
        height: 32px;
    }

    .reflexo-theme .reflexo-profile-dropdown {
        right: -10px;
        min-width: 180px;
    }
}

/* Offset for sections (account for fixed header) */
.reflexo-theme section[id] {
    scroll-margin-top: 70px;
}

/* --------------------------------------------------------------------------
   3. TIPOGRAFIA
   -------------------------------------------------------------------------- */
.reflexo-theme h1,
.reflexo-theme h2,
.reflexo-theme h3 {
    font-family: var(--rt-font-serif);
    color: var(--rt-gold);
    font-weight: 700;
}

.reflexo-theme p,
.reflexo-theme span,
.reflexo-theme a {
    font-family: var(--rt-font-sans);
}

/* --------------------------------------------------------------------------
   4. HERO SECTION — Estética "Diário de Naufrágio"
   -------------------------------------------------------------------------- */
.reflexo-theme .hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 75px 20px 60px;
    position: relative;
    overflow: hidden;
    background-color: var(--rt-bg-coffee);
}

/* Textura de ruído/grão de filme sobre o fundo */
.reflexo-theme .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
}

/* Vinheta sutil nas bordas */
.reflexo-theme .hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.4) 100%),
                radial-gradient(ellipse at center bottom, rgba(197, 160, 89, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.reflexo-theme .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.reflexo-theme .brand-title {
    font-family: var(--rt-font-serif);
    font-size: 5rem;
    font-weight: 700;
    color: var(--rt-gold);
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(197, 160, 89, 0.15);
}

/* Subtítulo: Sans Serif, caixa alta, tracking elegante */
.reflexo-theme .hero-tagline {
    font-family: var(--rt-font-sans);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--rt-text-stone);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Texto filosófico: Garamond, itálico, cor pedra */
.reflexo-theme .hero-subtitle {
    font-family: var(--rt-font-literary);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--rt-text-stone);
    letter-spacing: 0.01em;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.reflexo-theme .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botão Primário no Hero: SÓLIDO dourado */
.reflexo-theme .hero-actions .btn-gold.btn-primary {
    background-color: var(--rt-gold);
    color: var(--rt-bg-coffee);
    border-color: var(--rt-gold);
    font-weight: 600;
}

.reflexo-theme .hero-actions .btn-gold.btn-primary:hover {
    background-color: var(--rt-gold-hover);
    border-color: var(--rt-gold-hover);
    color: var(--rt-bg-coffee);
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
}

/* Botão Secundário no Hero: GHOST (apenas borda) */
.reflexo-theme .hero-actions .btn-gold.btn-ghost {
    background: transparent;
    color: var(--rt-gold);
    border: 1px solid var(--rt-gold);
    font-weight: 600;
}

.reflexo-theme .hero-actions .btn-gold.btn-ghost:hover {
    background: rgba(197, 160, 89, 0.1);
    color: var(--rt-gold-hover);
    border-color: var(--rt-gold-hover);
}

/* Tamanho dos botões no hero */
.reflexo-theme .hero-actions .btn-gold {
    padding: 14px 28px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}

/* Botão Gold */
.reflexo-theme .btn-gold {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid var(--rt-gold);
    color: var(--rt-gold);
    background: transparent;
    font-family: var(--rt-font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.reflexo-theme .btn-gold:hover {
    background-color: var(--rt-gold);
    color: #000000;
}

.reflexo-theme .btn-gold.btn-outline {
    border-color: var(--rt-text-muted);
    color: var(--rt-text-muted);
}

.reflexo-theme .btn-gold.btn-outline:hover {
    border-color: var(--rt-gold);
    color: var(--rt-gold);
    background: transparent;
}

/* --------------------------------------------------------------------------
   4b. COUNTDOWN — Faixa Cinematográfica (Quiet Luxury)
   -------------------------------------------------------------------------- */
.reflexo-theme .countdown-section {
    background: linear-gradient(180deg, #000000 0%, #0d0d0d 100%);
    border-top: 1px solid rgba(197, 160, 89, 0.25);
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
    padding: 40px 20px;
    text-align: center;
}

.reflexo-theme .countdown-content,
.reflexo-theme .countdown-ended {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.reflexo-theme .countdown-headline {
    font-family: var(--rt-font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--rt-text-muted);
    text-transform: uppercase;
}

.reflexo-theme .countdown-timer {
    display: flex;
    align-items: center;
    gap: 0;
}

.reflexo-theme .countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 0 20px;
}

.reflexo-theme .countdown-number {
    font-family: 'Bodoni Moda', 'Playfair Display', 'Didot', 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--rt-gold);
    line-height: 1;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
}

.reflexo-theme .countdown-label {
    font-family: var(--rt-font-sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--rt-text-muted);
    margin-top: 8px;
    text-transform: uppercase;
}

.reflexo-theme .countdown-separator {
    width: 1px;
    height: 48px;
    background: rgba(197, 160, 89, 0.2);
    align-self: center;
    flex-shrink: 0;
}

.reflexo-theme .countdown-date {
    font-family: var(--rt-font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: rgba(197, 160, 89, 0.6);
}

.reflexo-theme .countdown-cta {
    font-family: var(--rt-font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--rt-gold);
    text-decoration: none;
    border: 1px solid rgba(197, 160, 89, 0.4);
    padding: 12px 32px;
    transition: all 0.3s ease;
}

.reflexo-theme .countdown-cta:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--rt-gold);
}

/* --------------------------------------------------------------------------
   5. SEÇÃO "A PONTE DE VALOR" — Estética Editorial de Revista de Luxo
   -------------------------------------------------------------------------- */
.reflexo-theme .bridge-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 20px;
    background-color: var(--rt-bg-coffee);
    position: relative;
    overflow: hidden;
}

/* Textura de ruído — continuidade visual com o Hero */
.reflexo-theme .bridge-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
}

.reflexo-theme .bridge-section .section-title {
    font-family: var(--rt-font-serif);
    font-size: 2rem;
    color: var(--rt-gold);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.reflexo-theme .bridge-content {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.reflexo-theme .bridge-text {
    position: relative;
}

.reflexo-theme .bridge-section p {
    font-family: var(--rt-font-literary);
    font-size: 1.45rem;
    line-height: 1.85;
    color: #E5E5E5;
    margin-bottom: 1.5rem;
    text-align: left;
}

.reflexo-theme .bridge-section p strong,
.reflexo-theme .bridge-section p b {
    color: var(--rt-gold);
    font-weight: 500;
}

.reflexo-theme .bridge-section .lead-paragraph {
    font-size: 1.45rem;
    line-height: 1.85;
    color: #E5E5E5;
    margin-bottom: 1.75rem;
}

.reflexo-theme .bridge-section .lead-paragraph::first-letter {
    font-family: var(--rt-font-serif);
    font-size: 4rem;
    font-weight: 700;
    float: left;
    line-height: 0.8;
    margin-right: 0.06em;
    margin-top: 0.08em;
    color: var(--rt-gold);
}

/* Quote destacado — Quiet Luxury */
.reflexo-theme .bridge-quote {
    position: relative;
    margin: 2.5rem 0;
    padding: 1.75rem 2rem 1.75rem 2.5rem;
    border-left: 3px solid var(--rt-gold);
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.08) 0%, transparent 100%);
}

.reflexo-theme .bridge-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 12px;
    font-family: var(--rt-font-serif);
    font-size: 4rem;
    color: var(--rt-gold);
    opacity: 0.3;
    line-height: 1;
}

.reflexo-theme .bridge-quote p {
    font-family: var(--rt-font-serif);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--rt-text-main);
    margin: 0;
}

.reflexo-theme .bridge-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rt-gold), transparent);
    margin: 2.5rem auto;
}

/* Trailer — Vídeo flutuante com moldura elegante */
.reflexo-theme .trailer-wrapper {
    max-width: 850px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.reflexo-theme .trailer-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.4);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 0 1px rgba(197, 160, 89, 0.2);
}

.reflexo-theme .trailer-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --------------------------------------------------------------------------
   5.5 STEP BADGES (Passo-a-passo)
   -------------------------------------------------------------------------- */
.reflexo-theme .step-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.reflexo-theme .step-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--rt-font-sans);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--rt-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 16px;
    border: 1px solid rgba(197, 160, 89, 0.5);
    border-radius: 20px;
    background: transparent;
}

.reflexo-theme .step-number {
    font-family: var(--rt-font-sans);
    font-weight: 600;
}

.reflexo-theme .step-text {
    font-family: var(--rt-font-literary);
    font-size: 1.75rem;
    font-weight: 400;
    font-style: italic;
    color: var(--rt-text-stone);
    letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   6. TIMELINE DOS EPISÓDIOS — Quiet Luxury
   -------------------------------------------------------------------------- */
.reflexo-theme .timeline-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 20px;
    background-color: var(--rt-bg-coffee);
    position: relative;
    overflow: hidden;
}

/* Textura de ruído — continuidade visual */
.reflexo-theme .timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
}

.reflexo-theme .timeline-section .section-title {
    font-family: var(--rt-font-serif);
    font-size: 2rem;
    color: var(--rt-gold);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Lista de episódios com linha de timeline */
.reflexo-theme .timeline-list {
    position: relative;
    padding-left: 40px;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

/* Linha vertical dourada — o "trilho" */
.reflexo-theme .timeline-list::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(197, 160, 89, 0.4);
}

/* Card do episódio */
.reflexo-theme .episode-card {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    transition: opacity 0.3s ease;
}

.reflexo-theme .episode-card:last-child {
    border-bottom: none;
}

/* Losango dourado na timeline */
.reflexo-theme .episode-card::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 32px;
    width: 8px;
    height: 8px;
    background: rgba(197, 160, 89, 0.3);
    border: none;
    transform: rotate(45deg);
    z-index: 1;
}

.reflexo-theme .episode-card.available::before {
    background: var(--rt-gold);
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.4);
}

/* Thumbnail do episódio */
.reflexo-theme .episode-thumb {
    width: 140px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.reflexo-theme .episode-thumb img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.reflexo-theme .episode-card.locked .episode-thumb {
    filter: grayscale(0.15);
}

/* Número do episódio (fallback sem thumbnail) */
.reflexo-theme .episode-number {
    font-family: var(--rt-font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(197, 160, 89, 0.3);
    line-height: 1;
    min-width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.reflexo-theme .episode-card.available .episode-number {
    color: var(--rt-gold);
}

/* Info do episódio */
.reflexo-theme .episode-info {
    flex: 1;
    min-width: 0;
}

.reflexo-theme .episode-title {
    font-family: var(--rt-font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rt-text-muted);
    margin: 0 0 10px 0;
}

.reflexo-theme .episode-card.available .episode-title {
    color: var(--rt-gold);
}

.reflexo-theme .episode-synopsis-wrapper {
    position: relative;
}

/* Sinopse com fonte Garamond */
.reflexo-theme .episode-synopsis {
    font-family: var(--rt-font-literary);
    font-size: 1.3rem;
    line-height: 1.75;
    color: #E5E5E5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Botão "Ler mais" oculto por padrão */
.reflexo-theme .synopsis-toggle {
    display: none;
}

/* Estado bloqueado — sinopse visível com opacidade muito sutil */
.reflexo-theme .episode-card.locked {
    opacity: 0.95;
}

.reflexo-theme .episode-card.locked .episode-synopsis {
    color: #C0C0C0;
}

.reflexo-theme .episode-card.locked .episode-title {
    color: rgba(197, 160, 89, 0.9);
}

/* Data de lançamento para episódios bloqueados */
.reflexo-theme .episode-release-date {
    font-family: var(--rt-font-sans);
    font-size: 0.8rem;
    color: #B8B8B8;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reflexo-theme .episode-release-date i {
    font-size: 0.7rem;
    color: rgba(197, 160, 89, 0.6);
}

/* Ícone de cadeado na área de ação */
.reflexo-theme .episode-lock-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reflexo-theme .episode-lock-icon i {
    font-size: 1rem;
    color: rgba(197, 160, 89, 0.5);
}

/* Label de texto do cadeado: escondido no desktop */
.reflexo-theme .lock-btn-label {
    display: none;
}

.reflexo-theme .episode-release-date .lock-icon {
    font-size: 0.75rem;
}

/* Ação do episódio */
.reflexo-theme .episode-action {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-top: 4px;
}

.reflexo-theme .episode-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--rt-gold);
    background: transparent;
    color: var(--rt-gold);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.reflexo-theme .episode-play-btn:hover {
    background: var(--rt-gold);
    color: #000;
}

.reflexo-theme .episode-play-btn.is-playing {
    background: var(--rt-gold);
    color: #000;
}

/* Label de texto do botão: escondido no desktop */
.reflexo-theme .play-btn-label {
    display: none;
}

/* --------------------------------------------------------------------------
   7. AUDIO PLAYER BAR (Sticky Bottom)
   -------------------------------------------------------------------------- */
.reflexo-theme .audio-player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #0a0a0a;
    border-top: 1px solid var(--rt-gold);
    padding: 12px 24px;
    display: none;
    align-items: center;
    gap: 16px;
}

.reflexo-theme .audio-player-bar.active {
    display: flex;
}

.reflexo-theme .audio-player-bar .player-episode-info {
    font-family: var(--rt-font-sans);
    font-size: 0.85rem;
    color: var(--rt-text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 120px;
}

.reflexo-theme .audio-player-bar .player-episode-info .player-ep-number {
    color: var(--rt-gold);
    font-weight: 500;
}

.reflexo-theme .audio-player-bar audio {
    flex: 1;
    height: 36px;
    min-width: 0;
}

/* Dark mode para player nativo (webkit) */
.reflexo-theme .audio-player-bar audio::-webkit-media-controls-panel {
    background: #151515;
}

.reflexo-theme .audio-player-bar .player-close-btn {
    background: none;
    border: none;
    color: var(--rt-text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.reflexo-theme .audio-player-bar .player-close-btn:hover {
    color: var(--rt-text-main);
}

/* --------------------------------------------------------------------------
   8. RESPONSIVIDADE (Mobile-First)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .reflexo-theme .brand-title {
        font-size: 2.8rem;
        letter-spacing: 0.15em;
    }

    .reflexo-theme .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 0.2em;
    }

    .reflexo-theme .hero-subtitle {
        font-size: 1.05rem;
        padding: 0 10px;
    }

    .reflexo-theme .hero-section {
        padding: 80px 16px 40px;
    }

    .reflexo-theme .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .reflexo-theme .hero-actions .btn-gold {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 12px 20px;
    }

    .reflexo-theme .btn-gold {
        padding: 12px 30px;
        font-size: 0.85rem;
    }

    /* Countdown mobile */
    .reflexo-theme .countdown-section {
        padding: 28px 12px;
    }

    .reflexo-theme .countdown-block {
        min-width: 0;
        padding: 0 10px;
    }

    .reflexo-theme .countdown-number {
        font-size: 2.2rem;
    }

    .reflexo-theme .countdown-separator {
        height: 32px;
    }

    .reflexo-theme .countdown-label {
        font-size: 0.5rem;
    }

    .reflexo-theme .bridge-section {
        padding: 60px 16px;
    }

    .reflexo-theme .trailer-wrapper {
        margin-bottom: 2.5rem;
    }

    .reflexo-theme .bridge-section .section-title {
        font-size: 1.5rem;
    }

    .reflexo-theme .bridge-section p {
        font-size: 1.3rem;
    }

    .reflexo-theme .bridge-section .lead-paragraph {
        font-size: 1.3rem;
    }

    .reflexo-theme .bridge-section .lead-paragraph::first-letter {
        font-size: 3rem;
        margin-right: 0.1em;
    }

    .reflexo-theme .bridge-quote {
        padding: 1.25rem 1rem 1.25rem 1.5rem;
        margin: 2rem 0;
    }

    .reflexo-theme .bridge-quote::before {
        font-size: 3rem;
        top: -5px;
        left: 8px;
    }

    .reflexo-theme .bridge-quote p {
        font-size: 1.15rem;
    }

    /* Timeline mobile */
    .reflexo-theme .timeline-section {
        padding: 60px 16px;
    }

    .reflexo-theme .timeline-list {
        padding-left: 30px;
    }

    .reflexo-theme .timeline-list::before {
        left: 10px;
    }

    .reflexo-theme .episode-card::before {
        left: -27px;
        width: 6px;
        height: 6px;
    }

    .reflexo-theme .episode-card {
        flex-direction: column;
        gap: 12px;
    }

    .reflexo-theme .episode-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .reflexo-theme .episode-action {
        align-self: stretch;
        width: 100%;
    }

    .reflexo-theme .episode-number {
        font-size: 1.8rem;
        min-width: 36px;
    }

    .reflexo-theme .episode-synopsis {
        font-size: 1.2rem;
        -webkit-line-clamp: 5;
    }

    .reflexo-theme .episode-title {
        font-size: 1.1rem;
    }

    .reflexo-theme .episode-play-btn {
        width: 100%;
        height: 44px;
        border-radius: 6px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .reflexo-theme .play-btn-label {
        display: inline;
        font-family: 'Inter', sans-serif;
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .reflexo-theme .episode-lock-icon {
        width: 100%;
        height: 44px;
        border-radius: 6px;
        gap: 8px;
    }

    .reflexo-theme .lock-btn-label {
        display: inline;
        font-family: 'Inter', sans-serif;
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: rgba(197, 160, 89, 0.5);
    }

    /* Player bar mobile */
    .reflexo-theme .audio-player-bar {
        flex-wrap: wrap;
        padding: 10px 16px;
        gap: 8px;
    }

    .reflexo-theme .audio-player-bar .player-episode-info {
        flex: 0 0 auto;
        max-width: calc(100% - 40px);
    }

    .reflexo-theme .audio-player-bar audio {
        flex: 1 1 100%;
        order: 3;
    }

    /* Decodificação mobile */
    .reflexo-theme .decodificacao-section {
        padding: 60px 16px;
    }

    .reflexo-theme .decodificacao-section .section-title {
        font-size: 1.5rem;
    }

    .reflexo-theme .masterclass-bridge {
        padding: 1.5rem;
    }

    .reflexo-theme .masterclass-title {
        font-size: 1.25rem;
    }

    .reflexo-theme .masterclass-subtitle {
        font-size: 0.9rem;
    }

    .reflexo-theme .masterclass-synopsis p {
        font-size: 0.9rem;
        text-align: left;
    }

    .reflexo-theme .decodificacao-intro p {
        font-size: 0.95rem;
        text-align: left;
    }

    .reflexo-theme .decodificacao-intro .lead-paragraph {
        font-size: 1.05rem;
    }

    .reflexo-theme .decodificacao-intro .lead-paragraph::first-letter {
        font-size: 2.8rem;
    }

    .reflexo-theme .lives-section-title {
        font-size: 1.1rem;
    }

    .reflexo-theme .live-grid {
        grid-template-columns: 1fr;
    }

    .reflexo-theme .btn-temporada {
        padding: 14px 32px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .reflexo-theme .brand-title {
        font-size: 2.2rem;
    }

    .reflexo-theme .episode-number {
        font-size: 1.5rem;
        min-width: 30px;
    }
}

/* --------------------------------------------------------------------------
   9. SEÇÃO DE DECODIFICAÇÃO
   -------------------------------------------------------------------------- */
.reflexo-theme .decodificacao-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    border-top: 1px solid var(--rt-border-subtle);
}

.reflexo-theme .decodificacao-section .section-title {
    font-family: var(--rt-font-serif);
    font-size: 2rem;
    color: var(--rt-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.reflexo-theme .decodificacao-content {
    max-width: 720px;
    margin: 0 auto;
}

.reflexo-theme .decodificacao-intro {
    position: relative;
}

.reflexo-theme .decodificacao-intro p {
    font-family: var(--rt-font-sans);
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--rt-text-reading);
    margin-bottom: 1.5rem;
    text-align: justify;
    hyphens: auto;
}

.reflexo-theme .decodificacao-intro p strong {
    color: var(--rt-gold);
    font-weight: 600;
}

.reflexo-theme .decodificacao-intro .lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--rt-text-main);
    margin-bottom: 1.75rem;
}

.reflexo-theme .decodificacao-intro .lead-paragraph::first-letter {
    font-family: var(--rt-font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin-right: 0.15em;
    margin-top: 0.05em;
    color: var(--rt-gold);
}

.reflexo-theme .decodificacao-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rt-gold), transparent);
    margin: 2.5rem auto;
}

.reflexo-theme .lives-section-title {
    font-family: var(--rt-font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rt-gold);
    text-align: center;
    margin: 3rem 0 1.5rem;
}

/* Masterclass Bridge */
.reflexo-theme .masterclass-bridge {
    background: rgba(197, 160, 89, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.reflexo-theme .masterclass-title {
    font-family: var(--rt-font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rt-gold);
    margin: 0 0 1rem;
    text-align: center;
    line-height: 1.3;
}

.reflexo-theme .masterclass-subtitle {
    font-family: var(--rt-font-sans);
    font-size: 1rem;
    color: var(--rt-text-muted);
    text-align: left;
    font-style: italic;
    margin: 0 0 2rem;
    line-height: 1.6;
}

.reflexo-theme .masterclass-synopsis {
    margin-bottom: 2rem;
}

.reflexo-theme .masterclass-synopsis p {
    font-family: var(--rt-font-sans);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--rt-text-reading);
    margin: 0 0 1rem;
    text-align: justify;
}

.reflexo-theme .masterclass-synopsis p:last-child {
    margin-bottom: 0;
}

.reflexo-theme .masterclass-synopsis p strong {
    color: var(--rt-gold);
    font-weight: 600;
}

.reflexo-theme .masterclass-bridge .synopsis-closing,
.reflexo-theme .masterclass-featured .synopsis-closing {
    font-family: var(--rt-font-sans);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--rt-text-main);
    border-left: 2px solid var(--rt-gold);
    padding-left: 1rem;
    margin: 1.5rem 0 0;
    text-align: left;
}

/* Masterclass Video */
.reflexo-theme .masterclass-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
}

.reflexo-theme .masterclass-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Grid de lives */
.reflexo-theme .live-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 3rem;
}

.reflexo-theme .live-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--rt-bg-subtle);
    border: 1px solid var(--rt-border-subtle);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.reflexo-theme .live-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

.reflexo-theme .live-card .live-number {
    font-family: var(--rt-font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rt-border-subtle);
    min-width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.reflexo-theme .live-card.past .live-number {
    color: var(--rt-gold);
}

.reflexo-theme .live-card .live-info {
    flex: 1;
    min-width: 0;
}

.reflexo-theme .live-card .live-title {
    font-family: var(--rt-font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--rt-text-main);
    margin: 0 0 4px 0;
}

.reflexo-theme .live-card.future .live-title {
    color: var(--rt-text-muted);
}

.reflexo-theme .live-card .live-date {
    font-family: var(--rt-font-sans);
    font-size: 0.8rem;
    color: var(--rt-text-muted);
    margin: 0;
}

.reflexo-theme .live-card .live-status {
    font-family: var(--rt-font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.reflexo-theme .live-card.past .live-status {
    color: var(--rt-gold);
}

.reflexo-theme .live-card.future .live-status {
    color: var(--rt-text-muted);
    opacity: 0.6;
}

/* CTA da temporada */
.reflexo-theme .decodificacao-cta {
    text-align: center;
}

.reflexo-theme .btn-temporada {
    display: inline-block;
    padding: 16px 48px;
    border: 1px solid var(--rt-gold);
    color: var(--rt-gold);
    background: transparent;
    font-family: var(--rt-font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.reflexo-theme .btn-temporada:hover {
    background-color: var(--rt-gold);
    color: #000000;
}

.reflexo-theme .btn-temporada.btn-calendar {
    background-color: var(--rt-gold);
    color: #000000;
}

.reflexo-theme .btn-temporada.btn-calendar:hover {
    background-color: #d4af5a;
}

.reflexo-theme .btn-temporada i {
    margin-right: 8px;
}

.reflexo-theme .subscription-status {
    font-family: var(--rt-font-sans);
    font-size: 0.95rem;
    color: var(--rt-gold);
    margin-bottom: 12px;
}

.reflexo-theme .subscription-status i {
    margin-right: 6px;
}

.reflexo-theme .btn-temporada:disabled {
    opacity: 0.6;
    cursor: wait;
}

.reflexo-theme .btn-temporada-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--rt-border-subtle);
    color: var(--rt-text-muted);
    padding: 10px 20px;
    font-family: var(--rt-font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 12px;
}

.reflexo-theme .btn-temporada-secondary:hover {
    border-color: var(--rt-gold);
    color: var(--rt-gold);
}

.reflexo-theme .subscription-actions .btn-temporada-secondary,
.reflexo-theme .partial-subscription-actions .btn-temporada-secondary {
    margin-top: 0;
}

.reflexo-theme .subscription-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.reflexo-theme .partial-subscription-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

/* Link de cancelamento */
.reflexo-theme .subscription-cancel {
    margin-top: 12px;
}

.reflexo-theme .partial-subscription-actions .subscription-cancel {
    width: 100%;
    margin-top: 8px;
}

.reflexo-theme .cancel-link {
    font-family: var(--rt-font-sans);
    font-size: 0.8rem;
    color: var(--rt-text-muted);
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.reflexo-theme .cancel-link:hover {
    color: var(--rt-text-main);
}

/* Modal de cancelamento */
.reflexo-theme .cancel-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.reflexo-theme .cancel-modal.active {
    display: flex;
}

.reflexo-theme .cancel-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
}

.reflexo-theme .cancel-modal-content {
    position: relative;
    background: var(--rt-bg-subtle);
    border: 1px solid var(--rt-border-subtle);
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reflexo-theme .cancel-modal h4 {
    font-family: var(--rt-font-serif);
    color: var(--rt-gold);
    font-size: 1.3rem;
    margin: 0 0 16px;
}

.reflexo-theme .cancel-modal p {
    font-family: var(--rt-font-sans);
    color: var(--rt-text-main);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 12px;
}

.reflexo-theme .cancel-modal .cancel-warning {
    color: #dc3545;
    font-size: 0.85rem;
    font-weight: 500;
}

.reflexo-theme .cancel-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.reflexo-theme .btn-cancel-no {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--rt-border-subtle);
    border-radius: 4px;
    color: var(--rt-text-main);
    font-family: var(--rt-font-sans);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reflexo-theme .btn-cancel-no:hover {
    border-color: var(--rt-text-main);
}

.reflexo-theme .btn-cancel-yes {
    padding: 10px 24px;
    background: #dc3545;
    border: none;
    border-radius: 4px;
    color: white;
    font-family: var(--rt-font-sans);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reflexo-theme .btn-cancel-yes:hover {
    background: #c82333;
}

/* --------------------------------------------------------------------------
   10. MESSAGES/ALERTS (Override Bootstrap para tema escuro)
   -------------------------------------------------------------------------- */
.reflexo-theme .messages-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 90%;
    max-width: 500px;
}

.reflexo-theme .alert {
    background: #1a1a1a;
    border: 1px solid var(--rt-gold);
    border-radius: 8px;
    color: var(--rt-text-main);
    padding: 16px 48px 16px 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reflexo-theme .alert-success {
    border-color: #28a745;
    background: linear-gradient(135deg, #1a2a1a 0%, #1a1a1a 100%);
}

.reflexo-theme .alert-success::before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
}

.reflexo-theme .alert-info {
    border-color: var(--rt-gold);
    background: linear-gradient(135deg, #2a2518 0%, #1a1a1a 100%);
}

.reflexo-theme .alert-info::before {
    content: "ℹ ";
    color: var(--rt-gold);
}

.reflexo-theme .alert-danger {
    border-color: #dc3545;
    background: linear-gradient(135deg, #2a1a1a 0%, #1a1a1a 100%);
}

.reflexo-theme .alert .btn-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--rt-text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    padding: 8px;
}

.reflexo-theme .alert .btn-close:hover {
    opacity: 1;
    color: var(--rt-text-main);
}

/* --------------------------------------------------------------------------
   11. SMOOTH SCROLL
   -------------------------------------------------------------------------- */
.reflexo-theme {
    scroll-behavior: smooth;
}

/* --------------------------------------------------------------------------
   11. PLATFORM BOTTOM SHEET — Quiet Luxury Redesign
   -------------------------------------------------------------------------- */
.reflexo-theme .platform-sheet {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    visibility: hidden;
    pointer-events: none;
}

.reflexo-theme .platform-sheet.active {
    visibility: visible;
    pointer-events: auto;
}

.reflexo-theme .platform-sheet-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reflexo-theme .platform-sheet.active .platform-sheet-backdrop {
    opacity: 1;
}

.reflexo-theme .platform-sheet-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1F1915;
    border: 1px solid rgba(197, 160, 89, 0.5);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow:
        0 -8px 32px rgba(0, 0, 0, 0.5),
        0 0 1px rgba(197, 160, 89, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.reflexo-theme .platform-sheet.active .platform-sheet-content {
    transform: translateY(0);
}

.reflexo-theme .platform-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 20px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.reflexo-theme .platform-sheet-title {
    font-family: var(--rt-font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rt-gold);
    margin: 0;
    letter-spacing: 0.02em;
}

.reflexo-theme .platform-sheet-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.4);
    background: transparent;
    color: var(--rt-gold);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.reflexo-theme .platform-sheet-close:hover {
    background: var(--rt-gold);
    color: #1A1512;
    border-color: var(--rt-gold);
}

.reflexo-theme .platform-sheet-body {
    padding: 20px 28px 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Botões de plataforma — Ghost Button Style */
.reflexo-theme .platform-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reflexo-theme .platform-link:hover {
    border-color: var(--rt-gold);
    background: var(--rt-gold);
}

/* Ícones monocromáticos (dourado) */
.reflexo-theme .platform-link i {
    font-size: 1.6rem;
    color: var(--rt-gold);
    width: 36px;
    text-align: center;
    transition: color 0.3s ease;
}

.reflexo-theme .platform-link:hover i {
    color: #1A1512;
}

/* Imagens de ícone monocromáticas */
.reflexo-theme .platform-link .platform-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin: 0 4px;
    filter: grayscale(1) brightness(1.5) sepia(1) hue-rotate(5deg) saturate(0.8);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.reflexo-theme .platform-link:hover .platform-icon-img {
    filter: grayscale(1) brightness(0.3);
    opacity: 1;
}

.reflexo-theme .platform-link span {
    font-family: var(--rt-font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: #E5E5E5;
    transition: color 0.3s ease;
}

.reflexo-theme .platform-link:hover span {
    color: #1A1512;
}

/* Botão desabilitado (sem audio ainda) */
.reflexo-theme .episode-play-btn.disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* Desktop: modal centralizado */
@media (min-width: 769px) {
    .reflexo-theme .platform-sheet-content {
        position: absolute;
        bottom: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
        border-radius: 8px;
        border: 1px solid rgba(197, 160, 89, 0.5);
        max-width: 420px;
        max-height: 80vh;
        width: 90%;
        box-shadow:
            0 16px 48px rgba(0, 0, 0, 0.6),
            0 0 1px rgba(197, 160, 89, 0.4),
            0 0 40px rgba(197, 160, 89, 0.08);
    }

    .reflexo-theme .platform-sheet.active .platform-sheet-content {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* --------------------------------------------------------------------------
   SEÇÃO DO LIVRO (O Roteiro Original)
   -------------------------------------------------------------------------- */
.reflexo-theme .book-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    border-top: 1px solid var(--rt-border-subtle);
}

.reflexo-theme .book-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Coluna da Imagem */
.reflexo-theme .book-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background estilo script/roteiro */
.reflexo-theme .book-script-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    width: 90%;
    padding: 30px;
    background: rgba(26, 21, 18, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.1);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.7rem;
    color: rgba(197, 160, 89, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 2.5;
    opacity: 0.5;
    z-index: 0;
}

.reflexo-theme .book-script-bg span {
    display: block;
}

/* Wrapper do livro com sombra */
.reflexo-theme .book-cover-wrapper {
    position: relative;
    z-index: 1;
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.reflexo-theme .book-cover-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.reflexo-theme .book-cover {
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.3),
        -5px 0 15px rgba(0, 0, 0, 0.2);
}

/* Coluna de Informações */
.reflexo-theme .book-info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.reflexo-theme .book-tag {
    display: inline-block;
    font-family: var(--rt-font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--rt-gold);
    margin-bottom: 1rem;
}

.reflexo-theme .book-title {
    font-family: var(--rt-font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--rt-text-main);
    margin: 0 0 1.25rem;
    line-height: 1.2;
}

.reflexo-theme .book-description {
    font-family: var(--rt-font-literary);
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--rt-text-reading);
    margin-bottom: 2rem;
}

/* Grupo de CTAs */
.reflexo-theme .book-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.reflexo-theme .btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--rt-font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reflexo-theme .btn-book-primary {
    background: transparent;
    border: 1px solid var(--rt-gold);
    color: var(--rt-gold);
}

.reflexo-theme .btn-book-primary:hover {
    background: var(--rt-gold);
    color: #1A1512;
}

.reflexo-theme .btn-book.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.reflexo-theme .btn-book-secondary {
    background: transparent;
    border: 1px solid var(--rt-border-subtle);
    color: var(--rt-text-muted);
}

.reflexo-theme .btn-book-secondary:hover {
    border-color: var(--rt-gold);
    color: var(--rt-gold);
}

.reflexo-theme .btn-book i {
    font-size: 0.9rem;
}

/* Microcopy */
.reflexo-theme .book-microcopy {
    font-family: var(--rt-font-sans);
    font-size: 0.75rem;
    color: var(--rt-text-muted);
    opacity: 0.7;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .reflexo-theme .book-section {
        padding: 60px 16px;
    }

    .reflexo-theme .book-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .reflexo-theme .book-info-col {
        text-align: center;
    }

    .reflexo-theme .book-cta-group {
        justify-content: center;
    }

    .reflexo-theme .book-title {
        font-size: 1.6rem;
    }

    .reflexo-theme .book-cover {
        max-width: 180px;
    }

    .reflexo-theme .book-script-bg {
        display: none;
    }
}


/* --------------------------------------------------------------------------
   12. SOBRE O MENTOR (Bio do Autor)
   -------------------------------------------------------------------------- */
.reflexo-theme .mentor-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, #0a0908 0%, #080706 100%);
    position: relative;
    overflow: hidden;
}

/* Textura sutil */
.reflexo-theme .mentor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
}

.reflexo-theme .mentor-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Coluna da Foto */
.reflexo-theme .mentor-photo-col {
    display: flex;
    justify-content: center;
}

.reflexo-theme .mentor-photo-frame {
    position: relative;
    width: 240px;
    height: 300px;
}

/* Moldura editorial desconectada */
.reflexo-theme .mentor-photo-frame::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 16px;
    bottom: 16px;
    border: 1px solid var(--rt-gold-muted);
    z-index: 1;
}

.reflexo-theme .mentor-photo-frame::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    z-index: 1;
}

.reflexo-theme .mentor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%) sepia(15%) contrast(1.05);
    position: relative;
    z-index: 2;
}

/* Coluna de Informações */
.reflexo-theme .mentor-info-col {
    padding-top: 10px;
}

.reflexo-theme .mentor-headline {
    display: block;
    font-family: var(--rt-font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rt-gold);
    margin-bottom: 0.75rem;
}

.reflexo-theme .mentor-name {
    font-family: var(--rt-font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.02em;
}

.reflexo-theme .mentor-role {
    font-family: var(--rt-font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--rt-gold-muted);
    margin: 0 0 2rem 0;
    letter-spacing: 0.05em;
}

.reflexo-theme .mentor-bio {
    margin-bottom: 2.5rem;
}

.reflexo-theme .mentor-bio p {
    font-family: var(--rt-font-literary);
    font-size: 1.2rem;
    line-height: 1.8;
    color: #CCCCCC;
    margin: 0 0 1.25rem 0;
}

.reflexo-theme .mentor-bio p:last-child {
    margin-bottom: 0;
}

.reflexo-theme .mentor-bio-more {
    display: none;
}

.reflexo-theme .mentor-bio-more.expanded {
    display: block;
}

.reflexo-theme .mentor-bio-toggle {
    background: none;
    border: none;
    color: var(--rt-gold);
    font-family: var(--rt-font-literary);
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0;
    margin-top: 0.5rem;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.reflexo-theme .mentor-bio-toggle:hover {
    opacity: 1;
}

/* Highlights / Prova Social */
.reflexo-theme .mentor-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 2rem;
    border-top: 1px solid var(--rt-border-subtle);
}

.reflexo-theme .highlight-item {
    text-align: left;
}

.reflexo-theme .highlight-value {
    display: block;
    font-family: var(--rt-font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--rt-gold);
    line-height: 1.2;
    margin-bottom: 4px;
}

.reflexo-theme .highlight-label {
    display: block;
    font-family: var(--rt-font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.reflexo-theme .highlight-detail {
    display: block;
    font-family: var(--rt-font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    color: #888888;
    letter-spacing: 0.02em;
}

/* Mentor Section — Responsivo */
@media (max-width: 768px) {
    .reflexo-theme .mentor-section {
        padding: 60px 16px;
    }

    .reflexo-theme .mentor-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .reflexo-theme .mentor-photo-frame {
        width: 200px;
        height: 250px;
        margin: 0 auto;
    }

    .reflexo-theme .mentor-name {
        font-size: 2rem;
    }

    .reflexo-theme .mentor-bio p {
        font-size: 1.3rem;
        text-align: left;
    }

    .reflexo-theme .mentor-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .reflexo-theme .highlight-item {
        text-align: center;
        padding: 16px 0;
        border-bottom: 1px solid var(--rt-border-subtle);
    }

    .reflexo-theme .highlight-item:last-child {
        border-bottom: none;
    }
}


/* --------------------------------------------------------------------------
   13. SEÇÃO DE PRICING
   -------------------------------------------------------------------------- */
.reflexo-theme .pricing-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, #080706 0%, #0a0908 50%, #080706 100%);
    position: relative;
    overflow: hidden;
}

/* Textura sutil */
.reflexo-theme .pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
}

.reflexo-theme .pricing-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.reflexo-theme .pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.reflexo-theme .pricing-headline {
    font-family: var(--rt-font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 1rem 0;
    letter-spacing: 0.02em;
}

.reflexo-theme .pricing-subheadline {
    font-family: var(--rt-font-literary);
    font-size: 1.3rem;
    line-height: 1.7;
    color: #AAAAAA;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Cards (legacy) */
.reflexo-theme .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: stretch;
}

/* Card Único Centralizado */
.reflexo-theme .pricing-single-card {
    display: flex;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
}

/* Card Base */
.reflexo-theme .pricing-card {
    background: linear-gradient(180deg, #0c0b0a 0%, #080807 100%);
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.reflexo-theme .pricing-card:hover {
    border-color: #3a3a3a;
}

/* Card Featured (Anual) */
.reflexo-theme .pricing-card.featured {
    border: 2px solid var(--rt-gold);
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.12),
                0 0 80px rgba(197, 160, 89, 0.06);
}

.reflexo-theme .pricing-card.featured:hover {
    border-color: var(--rt-gold);
    box-shadow: 0 0 50px rgba(197, 160, 89, 0.18),
                0 0 100px rgba(197, 160, 89, 0.08);
}

/* Tag do Plano */
.reflexo-theme .plan-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rt-gold);
    color: #0a0908;
    font-family: var(--rt-font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: 6px 16px;
    border-radius: 2px;
    white-space: nowrap;
}

/* Header do Card */
.reflexo-theme .pricing-card-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rt-border-subtle);
}

.reflexo-theme .plan-title {
    font-family: var(--rt-font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.reflexo-theme .plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.reflexo-theme .price-value {
    font-family: var(--rt-font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--rt-gold);
    line-height: 1;
}

.reflexo-theme .price-period {
    font-family: var(--rt-font-sans);
    font-size: 1rem;
    font-weight: 400;
    color: #888888;
}

.reflexo-theme .plan-economy {
    display: block;
    font-family: var(--rt-font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--rt-gold);
    margin-top: 12px;
    letter-spacing: 0.02em;
}

/* Body do Card */
.reflexo-theme .pricing-card-body {
    flex: 1;
    margin-bottom: 36px;
}

/* Grupos de Features */
.reflexo-theme .features-group {
    margin-bottom: 32px;
}

.reflexo-theme .features-group:last-child {
    margin-bottom: 0;
}

.reflexo-theme .features-label {
    display: block;
    font-family: var(--rt-font-sans);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rt-gold-muted);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.reflexo-theme .features-group.platform-features .features-label {
    color: #777777;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

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

.reflexo-theme .features-list li {
    font-family: var(--rt-font-literary);
    font-size: 1.2rem;
    line-height: 1.6;
    color: #CCCCCC;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.reflexo-theme .features-list li i {
    color: var(--rt-gold);
    font-size: 0.75rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.reflexo-theme .features-group.platform-features .features-list li {
    color: #999999;
}

.reflexo-theme .features-group.platform-features .features-list li i {
    color: #666666;
}

/* Footer do Card */
.reflexo-theme .pricing-card-footer {
    margin-top: auto;
}

/* Botões de Pricing */
.reflexo-theme .btn-pricing {
    display: block;
    width: 100%;
    padding: 16px 24px;
    font-family: var(--rt-font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Botão Outline (Mensal) */
.reflexo-theme .btn-pricing-outline {
    background: transparent;
    border: 1px solid var(--rt-gold-muted);
    color: var(--rt-gold);
}

.reflexo-theme .btn-pricing-outline:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--rt-gold);
}

/* Botão Solid (Anual) */
.reflexo-theme .btn-pricing-solid {
    background: var(--rt-gold);
    border: 1px solid var(--rt-gold);
    color: #0a0908;
}

.reflexo-theme .btn-pricing-solid:hover {
    background: #d4b068;
    border-color: #d4b068;
}

/* Suporte */
.reflexo-theme .pricing-support {
    text-align: center;
    margin-top: 40px;
    font-family: var(--rt-font-sans);
    font-size: 0.85rem;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.reflexo-theme .pricing-support i {
    color: var(--rt-gold-muted);
}

.reflexo-theme .pricing-support-link {
    color: var(--rt-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.reflexo-theme .pricing-support-link:hover {
    color: #d4b068;
    border-color: #d4b068;
}

/* Link Discreto para Plano Anual */
.reflexo-theme .annual-link {
    margin-top: 20px;
    font-family: var(--rt-font-literary);
    font-size: 0.9rem;
    color: #777777;
    text-align: center;
    line-height: 1.6;
}

.reflexo-theme .annual-link a {
    color: var(--rt-gold-muted);
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.4);
    padding-bottom: 1px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.reflexo-theme .annual-link a:hover {
    color: #FFFFFF;
    border-bottom-color: #FFFFFF;
}

/* ---------- Cenário B: Card de Gratidão (Assinante Full Pass) ---------- */

.reflexo-theme .gratitude-card {
    border: 2px solid var(--rt-gold);
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.12),
                0 0 80px rgba(197, 160, 89, 0.06);
    text-align: center;
}

.reflexo-theme .gratitude-card:hover {
    border-color: var(--rt-gold);
    box-shadow: 0 0 50px rgba(197, 160, 89, 0.18),
                0 0 100px rgba(197, 160, 89, 0.08);
}

.reflexo-theme .gratitude-icon {
    margin-bottom: 24px;
}

.reflexo-theme .gratitude-icon i {
    font-size: 2rem;
    color: var(--rt-gold);
    opacity: 0.85;
}

.reflexo-theme .gratitude-header {
    margin-bottom: 32px;
}

.reflexo-theme .gratitude-headline {
    font-family: 'Bodoni Moda', var(--rt-font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--rt-gold);
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.reflexo-theme .gratitude-message {
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.reflexo-theme .gratitude-message p {
    font-family: var(--rt-font-literary);
    font-size: 1.4rem;
    font-style: normal;
    line-height: 1.8;
    color: #b0b0b0;
    margin: 0 0 16px 0;
}

.reflexo-theme .gratitude-message p:last-child {
    margin-bottom: 0;
}

.reflexo-theme .gratitude-message em {
    color: var(--rt-gold-muted);
    font-style: italic;
}

.reflexo-theme .gratitude-benefits {
    text-align: left;
    margin-bottom: 36px;
}

.reflexo-theme .gratitude-benefits-label {
    display: block;
    font-family: var(--rt-font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--rt-gold-muted);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.reflexo-theme .gratitude-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reflexo-theme .gratitude-benefits-list li {
    font-family: var(--rt-font-literary);
    font-size: 1.25rem;
    line-height: 1.6;
    color: #999999;
    padding: 6px 0;
}

.reflexo-theme .gratitude-benefits-list li strong {
    font-family: inherit;
    font-size: inherit;
    color: #bbbbbb;
    font-weight: 500;
}

.reflexo-theme .gratitude-check {
    color: var(--rt-gold-muted);
    font-size: 0.85rem;
    margin-right: 4px;
}

/* Seção 2: Benefícios da plataforma (tom mais discreto) */
.reflexo-theme .gratitude-benefits-platform .gratitude-benefits-label {
    color: #777777;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.reflexo-theme .gratitude-benefits-platform .gratitude-benefits-list li {
    color: #888888;
}

.reflexo-theme .gratitude-benefits-platform .gratitude-benefits-list li strong {
    color: #aaaaaa;
}

.reflexo-theme .gratitude-benefits-platform .gratitude-check {
    color: #666666;
}

/* Pricing — Responsivo */
@media (max-width: 768px) {
    .reflexo-theme .pricing-section {
        padding: 60px 16px;
    }

    .reflexo-theme .pricing-headline {
        font-size: 1.8rem;
    }

    .reflexo-theme .pricing-subheadline {
        font-size: 1.2rem;
    }

    .reflexo-theme .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reflexo-theme .pricing-single-card {
        max-width: 100%;
    }

    .reflexo-theme .pricing-card {
        padding: 36px 28px;
    }

    .reflexo-theme .price-value {
        font-size: 2.5rem;
    }

    .reflexo-theme .plan-title {
        font-size: 1.3rem;
    }

    .reflexo-theme .features-list li {
        font-size: 1.15rem;
    }

    /* Gratitude card mobile */
    .reflexo-theme .gratitude-headline {
        font-size: 1.4rem;
    }

    .reflexo-theme .gratitude-message p {
        font-size: 1.25rem;
    }

    .reflexo-theme .gratitude-benefits-list li {
        font-size: 1.15rem;
    }
}


/* --------------------------------------------------------------------------
   14. A COMPORTA (Footer CTA)
   -------------------------------------------------------------------------- */
.reflexo-theme .comporta-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--rt-bg-main) 0%, #0a0a0a 100%);
    border-top: 1px solid var(--rt-border-subtle);
    text-align: center;
}

.reflexo-theme .comporta-content {
    max-width: 600px;
    margin: 0 auto;
}

.reflexo-theme .comporta-title {
    font-family: var(--rt-font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rt-gold);
    margin: 0 0 20px;
    line-height: 1.3;
}

.reflexo-theme .comporta-text {
    font-family: var(--rt-font-sans);
    font-size: 1.2rem;
    color: var(--rt-text-muted);
    line-height: 1.7;
    margin: 0 0 32px;
}

.reflexo-theme .btn-comporta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--rt-font-sans);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.reflexo-theme .btn-comporta-subscribe {
    background: linear-gradient(135deg, var(--rt-gold) 0%, #a8863a 100%);
    color: #000;
    border: none;
}

.reflexo-theme .btn-comporta-subscribe:hover {
    background: linear-gradient(135deg, #d4b366 0%, var(--rt-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.3);
}

.reflexo-theme .btn-comporta-access {
    background: transparent;
    color: var(--rt-gold);
    border: 2px solid var(--rt-gold);
}

.reflexo-theme .btn-comporta-access:hover {
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .reflexo-theme .comporta-section {
        padding: 60px 20px;
    }

    .reflexo-theme .comporta-title {
        font-size: 1.5rem;
    }

    .reflexo-theme .btn-comporta {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* --------------------------------------------------------------------------
   TK-325: FORMULÁRIO DE SIGNUP INLINE
   -------------------------------------------------------------------------- */
.reflexo-theme .signup-form-container {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid var(--rt-gold-muted);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem auto 0;
    max-width: 480px;
}

.reflexo-theme .quick-signup-form h4 {
    color: var(--rt-gold);
    font-family: var(--rt-font-heading);
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.reflexo-theme .form-subtitle {
    color: var(--rt-text-muted);
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.reflexo-theme .form-group {
    margin-bottom: 1rem;
}

.reflexo-theme .form-group label {
    display: block;
    color: var(--rt-text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.reflexo-theme .form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #444;
    border-radius: 4px;
    color: var(--rt-text-main);
    font-size: 1rem;
    font-family: var(--rt-font-sans);
}

.reflexo-theme .form-group input:focus {
    outline: none;
    border-color: var(--rt-gold);
}

.reflexo-theme .form-group input::placeholder {
    color: #666;
}

.reflexo-theme .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.reflexo-theme .captcha-group {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.reflexo-theme .form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.reflexo-theme .btn-submit {
    flex: 1;
}

.reflexo-theme .btn-cancel {
    background: transparent;
    border: 1px solid #666;
    color: var(--rt-text-muted);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--rt-font-sans);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.reflexo-theme .btn-cancel:hover {
    border-color: #888;
    color: var(--rt-text-main);
}

.reflexo-theme .form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--rt-text-muted);
    margin-top: 1rem;
}

.reflexo-theme .form-note a {
    color: var(--rt-gold-muted);
}

/* Responsivo */
@media (max-width: 576px) {
    .reflexo-theme .form-row {
        grid-template-columns: 1fr;
    }

    .reflexo-theme .form-actions {
        flex-direction: column;
    }

    .reflexo-theme .signup-form-container {
        padding: 1.5rem;
        margin: 1rem auto 0;
    }
}

/* --------------------------------------------------------------------------
   TK-323: MODAL DE EMAIL EXISTENTE
   -------------------------------------------------------------------------- */
.reflexo-theme .email-exists-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.reflexo-theme .email-exists-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reflexo-theme .email-exists-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.reflexo-theme .email-exists-modal-content {
    position: relative;
    background: #1a1a1a;
    border: 1px solid var(--rt-gold-muted);
    border-radius: 8px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.reflexo-theme .email-exists-modal-content h4 {
    color: var(--rt-gold);
    font-family: var(--rt-font-heading);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.reflexo-theme .email-exists-modal-content p {
    color: var(--rt-text-muted);
    margin-bottom: 1.5rem;
}

.reflexo-theme .email-exists-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reflexo-theme .email-exists-modal-actions .btn-gold {
    display: inline-block;
    text-align: center;
}

.reflexo-theme .email-exists-modal-actions .btn-secondary {
    display: inline-block;
    background: transparent;
    border: 1px solid #666;
    color: var(--rt-text-muted);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--rt-font-sans);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.reflexo-theme .email-exists-modal-actions .btn-secondary:hover {
    border-color: #888;
    color: var(--rt-text-main);
}

/* --------------------------------------------------------------------------
   ST-303: SEÇÃO DE AULAS
   -------------------------------------------------------------------------- */
.reflexo-theme .aulas-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    border-top: 1px solid var(--rt-border-subtle);
}

.reflexo-theme .aulas-content {
    max-width: 720px;
    margin: 0 auto;
}

.reflexo-theme .aulas-section .section-title {
    font-family: var(--rt-font-serif);
    font-size: 2rem;
    color: var(--rt-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.reflexo-theme .aulas-intro {
    position: relative;
}

.reflexo-theme .aulas-intro p {
    font-family: var(--rt-font-sans);
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--rt-text-reading);
    margin-bottom: 1.5rem;
    text-align: justify;
    hyphens: auto;
}

.reflexo-theme .aulas-intro p strong {
    color: var(--rt-gold);
    font-weight: 600;
}

.reflexo-theme .aulas-intro .lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--rt-text-main);
    margin-bottom: 1.75rem;
}

.reflexo-theme .aulas-intro .lead-paragraph::first-letter {
    font-family: var(--rt-font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin-right: 0.15em;
    margin-top: 0.05em;
    color: var(--rt-gold);
}

.reflexo-theme .aulas-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rt-gold), transparent);
    margin: 2.5rem auto;
}

/* Masterclass em Destaque */
.reflexo-theme .masterclass-featured {
    background: rgba(197, 160, 89, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.reflexo-theme .masterclass-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--rt-gold);
    color: #000;
    font-family: var(--rt-font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 4px;
}

/* Estado Bloqueado para Masterclass */
.reflexo-theme .masterclass-locked {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.reflexo-theme .locked-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--rt-bg-subtle);
}

.reflexo-theme .locked-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.reflexo-theme .locked-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--rt-bg-subtle);
}

.reflexo-theme .locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.reflexo-theme .locked-message {
    font-family: var(--rt-font-sans);
    font-size: 1rem;
    color: var(--rt-text-main);
    margin-bottom: 1rem;
}

/* Grid de Aulas Pagas */
.reflexo-theme .aulas-grid-title {
    font-family: var(--rt-font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rt-gold);
    text-align: center;
    margin: 3rem 0 1.5rem;
}

.reflexo-theme .aulas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 2rem;
}

.reflexo-theme .aula-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--rt-bg-subtle);
    border: 1px solid var(--rt-border-subtle);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.reflexo-theme .aula-card.locked {
    opacity: 0.7;
}

.reflexo-theme .aula-card.unlocked:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

.reflexo-theme .aula-number {
    font-family: var(--rt-font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rt-border-subtle);
    min-width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.reflexo-theme .aula-card.unlocked .aula-number {
    color: var(--rt-gold);
}

.reflexo-theme .aula-info {
    flex: 1;
    min-width: 0;
}

.reflexo-theme .aula-title {
    font-family: var(--rt-font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--rt-text-main);
    margin: 0 0 4px;
}

.reflexo-theme .aula-card.locked .aula-title {
    color: var(--rt-text-muted);
}

.reflexo-theme .aula-subtitle {
    font-family: var(--rt-font-sans);
    font-size: 0.8rem;
    color: var(--rt-text-muted);
    margin: 0;
}

.reflexo-theme .aula-action {
    flex-shrink: 0;
}

.reflexo-theme .btn-aula-watch,
.reflexo-theme .btn-aula-lock {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reflexo-theme .btn-aula-watch {
    border: 1px solid var(--rt-gold);
    color: var(--rt-gold);
    background: transparent;
}

.reflexo-theme .btn-aula-watch:hover {
    background: var(--rt-gold);
    color: #000;
}

.reflexo-theme .btn-aula-lock {
    border: 1px solid var(--rt-border-subtle);
    color: var(--rt-text-muted);
    background: transparent;
    cursor: default;
}

/* CTA Full Pass */
.reflexo-theme .aulas-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(197, 160, 89, 0.05);
    border-radius: 8px;
    margin-top: 1rem;
}

.reflexo-theme .aulas-cta .cta-text {
    font-family: var(--rt-font-sans);
    color: var(--rt-text-muted);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.reflexo-theme .aulas-cta .cta-reinforcement {
    font-family: var(--rt-font-sans);
    font-size: 1.05rem;
    color: var(--rt-text-subtle);
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Lista de Aulas (Layout Completo) */
.reflexo-theme .aulas-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 2rem;
}

.reflexo-theme .aula-card-full {
    background: var(--rt-bg-subtle);
    border: 1px solid var(--rt-border-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.reflexo-theme .aula-card-full:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

.reflexo-theme .aula-card-full.locked {
    opacity: 0.8;
}

.reflexo-theme .aula-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reflexo-theme .aula-identifier-badge {
    display: inline-block;
    background: rgba(197, 160, 89, 0.15);
    color: var(--rt-gold);
    font-family: var(--rt-font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 4px;
}

.reflexo-theme .aula-card-full.locked .aula-identifier-badge {
    background: rgba(255, 255, 255, 0.05);
    color: var(--rt-text-muted);
}

.reflexo-theme .aula-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reflexo-theme .aula-duration {
    font-family: var(--rt-font-sans);
    font-size: 0.8rem;
    color: var(--rt-text-muted);
}

.reflexo-theme .aula-duration i {
    margin-right: 4px;
}

.reflexo-theme .btn-ementa {
    font-family: var(--rt-font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--rt-gold);
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 4px;
    padding: 4px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reflexo-theme .btn-ementa:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--rt-gold);
}

.reflexo-theme .btn-ementa i {
    margin-right: 4px;
}

.reflexo-theme .aula-body {
    margin-bottom: 1.25rem;
}

.reflexo-theme .aula-card-full .aula-title {
    font-family: var(--rt-font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--rt-text-main);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.reflexo-theme .aula-card-full.locked .aula-title {
    color: var(--rt-text-muted);
}

.reflexo-theme .aula-card-full .aula-subtitle {
    font-family: var(--rt-font-sans);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--rt-gold);
    margin: 0 0 0.75rem;
    opacity: 0.9;
}

.reflexo-theme .aula-description {
    font-family: var(--rt-font-sans);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--rt-text-reading);
    margin: 0;
}

.reflexo-theme .aula-footer {
    display: flex;
    justify-content: flex-start;
    padding-top: 1rem;
    border-top: 1px solid var(--rt-border-subtle);
}

.reflexo-theme .btn-aula-assistir {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.9rem;
    text-decoration: none;
}

.reflexo-theme .btn-aula-assistir i {
    font-size: 0.8rem;
}

.reflexo-theme .aula-locked-msg,
.reflexo-theme .aula-coming-soon,
.reflexo-theme .aula-release-date {
    font-family: var(--rt-font-sans);
    font-size: 0.85rem;
    color: var(--rt-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.reflexo-theme .aula-locked-msg i,
.reflexo-theme .aula-coming-soon i,
.reflexo-theme .aula-release-date i {
    color: var(--rt-gold);
    opacity: 0.6;
}

/* Aula Featured (mesmo layout da masterclass) */
.reflexo-theme .aula-featured {
    background: rgba(197, 160, 89, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.reflexo-theme .aula-featured.locked {
    border-color: var(--rt-border-subtle);
    background: var(--rt-bg-subtle);
}

.reflexo-theme .aula-featured.date-locked {
    border-color: var(--rt-border-subtle);
    background: var(--rt-bg-subtle);
    opacity: 0.7;
}

.reflexo-theme .aula-featured-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: rgba(197, 160, 89, 0.15);
    color: var(--rt-gold);
    font-family: var(--rt-font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 4px;
}

.reflexo-theme .aula-featured.locked .aula-featured-badge,
.reflexo-theme .aula-featured.date-locked .aula-featured-badge {
    background: rgba(255, 255, 255, 0.05);
    color: var(--rt-text-muted);
}

.reflexo-theme .aula-featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0.75rem;
}

.reflexo-theme .aula-featured-title {
    font-family: var(--rt-font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rt-text-main);
    margin: 0;
    line-height: 1.3;
    flex: 1;
    min-width: 200px;
}

.reflexo-theme .aula-featured.locked .aula-featured-title,
.reflexo-theme .aula-featured.date-locked .aula-featured-title {
    color: var(--rt-text-muted);
}

.reflexo-theme .aula-featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.reflexo-theme .aula-featured-subtitle {
    font-family: var(--rt-font-sans);
    font-size: 1rem;
    font-style: italic;
    color: var(--rt-gold);
    margin: 0 0 1rem;
    opacity: 0.9;
}

.reflexo-theme .aula-featured.locked .aula-featured-subtitle,
.reflexo-theme .aula-featured.date-locked .aula-featured-subtitle {
    color: var(--rt-text-muted);
}

.reflexo-theme .aula-featured-description {
    font-family: var(--rt-font-sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--rt-text-reading);
    margin: 0 0 1.5rem;
}

/* Video Player para Aula Featured */
.reflexo-theme .aula-featured-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 8px;
    overflow: hidden;
}

.reflexo-theme .aula-featured-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Estado Bloqueado para Aula Featured */
.reflexo-theme .aula-featured-locked {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.reflexo-theme .aula-featured-locked .locked-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--rt-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reflexo-theme .aula-featured-locked .locked-placeholder i {
    font-size: 3rem;
    color: var(--rt-border-subtle);
}

.reflexo-theme .aula-featured-locked .locked-placeholder.coming-soon i {
    color: var(--rt-gold);
    opacity: 0.4;
}

.reflexo-theme .aula-featured-locked .locked-placeholder.date-locked i {
    color: var(--rt-text-muted);
    opacity: 0.3;
}

.reflexo-theme .aula-featured-locked .locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.reflexo-theme .aula-featured-locked .locked-overlay.coming-soon {
    background: rgba(0, 0, 0, 0.5);
}

.reflexo-theme .aula-featured-locked .locked-overlay.date-locked {
    background: rgba(0, 0, 0, 0.5);
}

.reflexo-theme .aula-featured-locked .locked-message {
    font-family: var(--rt-font-sans);
    font-size: 1rem;
    color: var(--rt-text-main);
    margin-bottom: 1rem;
}

.reflexo-theme .aula-featured-locked .locked-overlay.date-locked .locked-message {
    margin-bottom: 0;
    color: var(--rt-text-muted);
}

.reflexo-theme .aula-featured-locked .locked-overlay.coming-soon .locked-message {
    margin-bottom: 0;
    color: var(--rt-text-muted);
}

.reflexo-theme .aula-featured-locked .locked-release-date {
    font-family: var(--rt-font-sans);
    font-size: 0.75rem;
    color: var(--rt-text-muted);
    margin-top: 1rem;
    margin-bottom: 0;
}

.reflexo-theme .aula-featured-locked .locked-release-date i {
    margin-right: 6px;
    opacity: 0.7;
}

/* ==========================================================================
   NOVO LAYOUT: SEÇÃO DE AULAS (Quiet Luxury Redesign)
   ========================================================================== */

/* Cabeçalho da Seção */
.reflexo-theme .aulas-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reflexo-theme .aulas-main-title {
    font-family: var(--rt-font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--rt-gold);
    line-height: 1.3;
    margin: 1.5rem 0 1rem;
    letter-spacing: 0.02em;
}

.reflexo-theme .aulas-subtitle {
    font-family: var(--rt-font-literary);
    font-size: 1.65rem;
    font-style: italic;
    color: var(--rt-text-stone);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ====== HERO: Aula 1 (Gratuita) ====== */
.reflexo-theme .aula-hero {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(197, 160, 89, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
}

/* Player de vídeo */
.reflexo-theme .aula-hero-media {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 0.75rem;
}

.reflexo-theme .aula-hero-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.reflexo-theme .aula-hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.reflexo-theme .aula-hero-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.reflexo-theme .aula-hero-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reflexo-theme .thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1512 0%, #2a2320 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reflexo-theme .thumbnail-placeholder i {
    font-size: 4rem;
    color: rgba(197, 160, 89, 0.3);
}

.reflexo-theme .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.reflexo-theme .aula-hero-thumbnail:hover .play-overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* Botão CTA com ícone de play centralizado no player */
.reflexo-theme .btn-play-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--rt-gold);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.reflexo-theme .btn-play-cta i {
    font-size: 1.2rem;
    color: #1A1512;
}

.reflexo-theme .btn-play-cta span {
    font-family: var(--rt-font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: #1A1512;
    letter-spacing: 0.02em;
}

.reflexo-theme .aula-hero-thumbnail:hover .btn-play-cta:not(.disabled) {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.5);
}

/* Estado bloqueado (aula ainda não disponível) */
.reflexo-theme .aula-locked-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.reflexo-theme .aula-release-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--rt-gold);
    font-family: var(--rt-font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
}

.reflexo-theme .aula-release-label i {
    font-size: 0.9rem;
}

.reflexo-theme .btn-play-cta.disabled {
    background: rgba(100, 100, 100, 0.6);
    cursor: not-allowed;
    opacity: 0.8;
}

.reflexo-theme .btn-play-cta.disabled i,
.reflexo-theme .btn-play-cta.disabled span {
    color: #888;
}

.reflexo-theme .aula-hero-thumbnail:hover .btn-play-cta.disabled {
    transform: none;
    box-shadow: none;
}

/* Estilo antigo do play-icon (mantido para compatibilidade) */
.reflexo-theme .play-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--rt-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reflexo-theme .play-icon i {
    font-size: 1.8rem;
    color: #1A1512;
    margin-left: 4px;
}

/* Elementos do Hero da Aula Gratuita (layout stacked) */
.reflexo-theme .aula-hero-tag {
    display: inline-block;
    background: var(--rt-gold);
    color: #1A1512;
    font-family: var(--rt-font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 4px;
}

.reflexo-theme .aula-hero-title {
    font-family: var(--rt-font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rt-gold);
    line-height: 1.3;
    margin: 0;
}

.reflexo-theme .aula-hero-duration {
    font-family: var(--rt-font-sans);
    font-size: 0.85rem;
    color: var(--rt-text-muted);
}

.reflexo-theme .aula-hero-duration i {
    margin-right: 6px;
}

.reflexo-theme .aula-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0;
}

.reflexo-theme .aula-hero-bullets li {
    font-family: var(--rt-font-literary);
    font-size: 1.1rem;
    color: #E5E5E5;
    line-height: 1.5;
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.reflexo-theme .aula-hero-bullets li i {
    color: var(--rt-gold);
    font-size: 0.7rem;
    margin-top: 6px;
    flex-shrink: 0;
}

.reflexo-theme .btn-aula-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--rt-font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ====== LISTA COMPACTA: Aulas 2-7 ====== */
.reflexo-theme .aulas-list {
    margin-top: 2rem;
}

.reflexo-theme .aulas-list-title {
    font-family: var(--rt-font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rt-gold);
    text-align: center;
    margin-bottom: 1.5rem;
}

.reflexo-theme .aula-list-item {
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.reflexo-theme .aula-list-item.locked {
    opacity: 0.85;
}

.reflexo-theme .aula-list-item:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

.reflexo-theme .aula-list-item.expanded {
    border-color: rgba(197, 160, 89, 0.4);
    background: rgba(197, 160, 89, 0.02);
}

/* Header clicável - layout vertical */
.reflexo-theme .aula-list-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.reflexo-theme .aula-list-header:hover {
    background: rgba(197, 160, 89, 0.03);
}

/* Chevron - posicionado no canto superior direito */
.reflexo-theme .aula-list-chevron {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reflexo-theme .aula-list-chevron i {
    font-size: 0.75rem;
    color: var(--rt-text-muted);
    transition: transform 0.3s ease;
}

.reflexo-theme .aula-list-item.expanded .aula-list-chevron i {
    transform: rotate(180deg);
    color: var(--rt-gold);
}

/* Conteúdo expandível */
.reflexo-theme .aula-list-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.reflexo-theme .aula-list-item.expanded .aula-list-expand {
    max-height: 500px;
}

.reflexo-theme .aula-list-expand-inner {
    padding: 0 24px 24px 24px;
}

/* Bullets do conteúdo expandido */
.reflexo-theme .aula-expand-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    padding-top: 16px;
}

.reflexo-theme .aula-expand-bullets li {
    font-family: var(--rt-font-literary);
    font-size: 0.9rem;
    color: var(--rt-text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.reflexo-theme .aula-expand-bullets li:last-child {
    margin-bottom: 0;
}

.reflexo-theme .aula-expand-bullets li i {
    font-size: 0.35rem;
    color: var(--rt-gold);
    margin-top: 8px;
    flex-shrink: 0;
}

/* Linha do identifier (ícone + texto) */
.reflexo-theme .aula-list-identifier {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.reflexo-theme .aula-list-lock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reflexo-theme .aula-list-lock i {
    font-size: 0.85rem;
    color: rgba(197, 160, 89, 0.6);
}

.reflexo-theme .aula-list-item.locked .aula-list-lock i {
    color: var(--rt-text-muted);
}

.reflexo-theme .aula-list-item.unlocked .aula-list-lock i {
    color: var(--rt-gold);
}

.reflexo-theme .aula-list-number {
    font-family: var(--rt-font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rt-text-muted);
}

.reflexo-theme .aula-list-title-text {
    font-family: var(--rt-font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--rt-text-main);
    margin: 0 0 4px;
    line-height: 1.3;
}

.reflexo-theme .aula-list-item.locked .aula-list-title-text {
    color: var(--rt-text-muted);
}

.reflexo-theme .aula-list-description {
    font-family: var(--rt-font-literary);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--rt-text-muted);
    margin: 0;
    line-height: 1.5;
}

.reflexo-theme .aula-list-action {
    margin-top: 12px;
    align-self: flex-start;
}

.reflexo-theme .aula-list-cta {
    font-family: var(--rt-font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.reflexo-theme .aula-list-cta i {
    font-size: 0.7rem;
}

.reflexo-theme .aula-list-cta.unlocked {
    background: transparent;
    border: 1px solid var(--rt-gold);
    color: var(--rt-gold);
}

.reflexo-theme .aula-list-cta.unlocked:hover {
    background: var(--rt-gold);
    color: #1A1512;
}

.reflexo-theme .aula-list-cta.locked {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--rt-text-muted);
    opacity: 0.45;
    cursor: default;
}

.reflexo-theme .aula-list-cta.date-locked {
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--rt-gold);
    opacity: 0.8;
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.reflexo-theme .aula-list-cta.date-locked i {
    font-size: 0.65rem;
}

.reflexo-theme .aula-list-item.date-locked .aula-list-lock i {
    color: var(--rt-gold);
    opacity: 0.7;
}

/* CTA para assinar */
.reflexo-theme .aula-list-cta.subscribe {
    background: transparent;
    border: 1px solid var(--rt-gold);
    color: var(--rt-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.reflexo-theme .aula-list-cta.subscribe:hover {
    background: var(--rt-gold);
    color: #1A1512;
}

/* CTA Final */
.reflexo-theme .aulas-list-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.reflexo-theme .btn-fullpass-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--rt-font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--rt-gold);
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.reflexo-theme .btn-fullpass-cta:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--rt-gold);
}

.reflexo-theme .btn-fullpass-cta i {
    font-size: 1rem;
}

/* Responsivo: Hero Aulas */
@media (max-width: 900px) {
    .reflexo-theme .aula-hero {
        padding: 1.5rem;
        gap: 1rem;
    }

    .reflexo-theme .aula-hero-title {
        font-size: 1.4rem;
    }

    .reflexo-theme .aulas-main-title {
        font-size: 1.8rem;
    }

    .reflexo-theme .aula-hero-bullets li {
        font-size: 1.05rem;
    }

    .reflexo-theme .btn-play-cta {
        padding: 14px 24px;
        gap: 10px;
    }

    .reflexo-theme .btn-play-cta span {
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .reflexo-theme .aula-list-header {
        padding: 16px;
        padding-right: 48px;
    }

    .reflexo-theme .aula-list-number {
        display: none;
    }

    .reflexo-theme .aula-list-title-text {
        font-size: 1.1rem;
    }

    .reflexo-theme .aula-list-description {
        font-size: 1.1rem;
    }

    .reflexo-theme .aula-list-cta {
        font-size: 0.7rem;
        padding: 8px 14px;
    }

    .reflexo-theme .aula-list-chevron {
        top: 16px;
        right: 16px;
    }

    .reflexo-theme .aula-list-expand-inner {
        padding: 0 16px 20px 16px;
    }

    .reflexo-theme .aula-expand-bullets li {
        font-size: 0.85rem;
    }
}

/* Modal de Ementa */
.reflexo-theme .ementa-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    overflow-y: auto;
    padding: 40px 20px;
}

.reflexo-theme .ementa-modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.reflexo-theme .ementa-modal-content {
    background: var(--rt-bg-subtle);
    border: 1px solid var(--rt-border-subtle);
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    position: relative;
    margin: auto;
}

.reflexo-theme .ementa-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid var(--rt-border-subtle);
    border-radius: 50%;
    color: var(--rt-text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.reflexo-theme .ementa-modal-close:hover {
    border-color: var(--rt-gold);
    color: var(--rt-gold);
}

.reflexo-theme .ementa-modal-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--rt-border-subtle);
}

.reflexo-theme .ementa-aula-badge {
    display: inline-block;
    font-family: var(--rt-font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rt-gold);
    background: rgba(197, 160, 89, 0.15);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.reflexo-theme .ementa-modal-header h3 {
    font-family: var(--rt-font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rt-text-main);
    margin: 0;
    line-height: 1.3;
}

.reflexo-theme .ementa-modal-body {
    padding: 1.5rem 2rem 2rem;
}

.reflexo-theme .ementa-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--rt-border-subtle);
}

.reflexo-theme .ementa-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.reflexo-theme .ementa-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.reflexo-theme .ementa-section-title {
    font-family: var(--rt-font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--rt-text-main);
    margin: 0;
    flex: 1;
}

.reflexo-theme .ementa-section-duration {
    font-family: var(--rt-font-sans);
    font-size: 0.75rem;
    color: var(--rt-text-muted);
    white-space: nowrap;
    margin-left: 12px;
}

.reflexo-theme .ementa-topics {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reflexo-theme .ementa-topics li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 0.5rem;
    font-family: var(--rt-font-sans);
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--rt-text-reading);
}

.reflexo-theme .ementa-topics li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--rt-gold);
}

.reflexo-theme .ementa-topics li:last-child {
    margin-bottom: 0;
}

/* Sinopse no topo do modal */
.reflexo-theme .ementa-synopsis {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--rt-border-subtle);
}

.reflexo-theme .ementa-synopsis p {
    font-family: var(--rt-font-sans);
    font-size: 1.95rem;
    line-height: 1.7;
    color: var(--rt-text-reading);
    margin: 0;
    font-style: italic;
}

/* Subtítulo da seção */
.reflexo-theme .ementa-section-subtitle {
    font-family: var(--rt-font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--rt-gold);
    margin: 0 0 1rem;
    opacity: 0.9;
}

/* Pergunta para o Líder */
.reflexo-theme .ementa-section-question {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: rgba(197, 160, 89, 0.05);
    border-left: 3px solid var(--rt-gold);
    border-radius: 0 8px 8px 0;
}

.reflexo-theme .ementa-section-question .question-label {
    display: block;
    font-family: var(--rt-font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--rt-gold);
    margin-bottom: 0.5rem;
}

.reflexo-theme .ementa-section-question p {
    font-family: var(--rt-font-sans);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--rt-text-main);
    margin: 0;
}

/* --------------------------------------------------------------------------
   ST-303: SEÇÃO DE RODAS DE CONVERSA
   -------------------------------------------------------------------------- */
.reflexo-theme .rodas-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 20px;
    background-color: var(--rt-bg-coffee);
    position: relative;
    overflow: hidden;
}

/* Textura de ruído — continuidade visual */
.reflexo-theme .rodas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
}

.reflexo-theme .rodas-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.reflexo-theme .rodas-section .section-title {
    font-family: var(--rt-font-serif);
    font-size: 2rem;
    color: var(--rt-gold);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.reflexo-theme .rodas-intro {
    position: relative;
}

.reflexo-theme .rodas-intro p {
    font-family: var(--rt-font-literary);
    font-size: 1.25rem;
    line-height: 1.85;
    color: var(--rt-text-main);
    margin-bottom: 1.5rem;
    text-align: left;
}

.reflexo-theme .rodas-intro .lead-paragraph {
    font-size: 1.45rem;
    line-height: 1.85;
    color: var(--rt-text-main);
    margin-bottom: 1.75rem;
}

.reflexo-theme .rodas-intro .lead-paragraph::first-letter {
    font-family: var(--rt-font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin-right: 0.15em;
    margin-top: 0.05em;
    color: var(--rt-gold);
}

/* Timeline Vertical do Debriefing */
.reflexo-theme .debriefing-timeline {
    margin: 2.5rem 0 3rem;
}

.reflexo-theme .debriefing-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
    transition: background 0.3s ease;
}

.reflexo-theme .debriefing-row:first-child {
    border-top: 1px solid rgba(197, 160, 89, 0.12);
}

.reflexo-theme .debriefing-row:hover {
    background: rgba(197, 160, 89, 0.03);
}

/* Coluna 1: Data */
.reflexo-theme .debriefing-date {
    min-width: 80px;
    flex-shrink: 0;
    text-align: center;
}

.reflexo-theme .debriefing-date .date-day {
    display: block;
    font-family: var(--rt-font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rt-gold);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.reflexo-theme .debriefing-row.past .date-day {
    opacity: 0.6;
}

.reflexo-theme .debriefing-date .date-weekday {
    display: block;
    font-family: var(--rt-font-sans);
    font-size: 0.7rem;
    color: var(--rt-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* Coluna 2: Conteúdo */
.reflexo-theme .debriefing-content {
    flex: 1;
    min-width: 0;
}

.reflexo-theme .debriefing-title {
    font-family: var(--rt-font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--rt-text-main);
    margin: 0 0 4px 0;
}

.reflexo-theme .debriefing-row.past .debriefing-title {
    color: var(--rt-text-muted);
}

.reflexo-theme .debriefing-subtitle {
    font-family: var(--rt-font-literary);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--rt-text-muted);
    margin: 0;
    opacity: 0.8;
}

/* Coluna 3: Status Badge */
.reflexo-theme .debriefing-status {
    flex-shrink: 0;
}

.reflexo-theme .status-badge {
    font-family: var(--rt-font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 3px;
}

.reflexo-theme .status-badge.past {
    background: rgba(197, 160, 89, 0.15);
    color: var(--rt-gold);
}

.reflexo-theme .status-badge.future {
    background: transparent;
    border: 1px solid var(--rt-border-subtle);
    color: var(--rt-text-muted);
}

/* ===== SEÇÃO COMUNIDADE ===== */
.reflexo-theme .comunidade-section {
    padding: 80px 24px;
    background: var(--rt-bg-coffee);
    position: relative;
}

.reflexo-theme .comunidade-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
}

.reflexo-theme .comunidade-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Card da Comunidade WhatsApp */
.reflexo-theme .community-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08) 0%, rgba(10, 9, 8, 0.4) 100%);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 6px;
    padding: 40px 44px;
    margin-bottom: 60px;
}

.reflexo-theme .community-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 50%;
}

.reflexo-theme .community-card-icon i {
    font-size: 2.5rem;
    color: var(--rt-gold);
}

.reflexo-theme .community-card-content {
    flex: 1;
}

.reflexo-theme .community-card-title {
    font-family: var(--rt-font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    letter-spacing: 0.01em;
}

.reflexo-theme .community-card-description {
    font-family: var(--rt-font-literary);
    font-size: 1.2rem;
    line-height: 1.6;
    color: #AAAAAA;
    margin: 0 0 16px 0;
}

.reflexo-theme .community-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.reflexo-theme .community-benefits li {
    font-family: var(--rt-font-sans);
    font-size: 1rem;
    color: #888888;
    display: flex;
    align-items: left;
    text-align: left;
    gap: 8px;
}

.reflexo-theme .community-benefits li i {
    color: var(--rt-gold-muted);
    font-size: 0.75rem;
}

.reflexo-theme .community-card-cta {
    text-align: center;
}

.reflexo-theme .btn-community {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: var(--rt-font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #0a0908;
    background: var(--rt-gold);
    border: 1px solid var(--rt-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.reflexo-theme .btn-community:hover {
    background: #d4b068;
    border-color: #d4b068;
}

.reflexo-theme .btn-community i {
    font-size: 1.1rem;
}

/* Debriefing Subsection */
.reflexo-theme .debriefing-subsection {
    margin-top: 0;
}

.reflexo-theme .subsection-title {
    font-family: var(--rt-font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 24px 0;
    letter-spacing: 0.02em;
}

/* Responsividade da Comunidade */
@media (max-width: 768px) {
    .reflexo-theme .comunidade-section {
        padding: 60px 16px;
    }

    .reflexo-theme .community-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 24px;
        text-align: center;
    }

    .reflexo-theme .community-card-icon {
        margin: 0 auto;
        width: 70px;
        height: 70px;
    }

    .reflexo-theme .community-card-icon i {
        font-size: 2rem;
    }

    .reflexo-theme .community-card-title {
        font-size: 1.3rem;
    }

    .reflexo-theme .community-card-description {
        font-size: 1.15rem;
    }

    .reflexo-theme .community-benefits {
        flex-direction: column;
        gap: 12px;
        align-items: left;
    }

    .reflexo-theme .btn-community {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .reflexo-theme .subsection-title {
        font-size: 1.5rem;
    }
}

/* CTA Section */
.reflexo-theme .rodas-cta {
    text-align: center;
    margin-top: 2rem;
}

.reflexo-theme .cta-microcopy {
    font-family: var(--rt-font-sans);
    font-size: 1rem;
    color: var(--rt-text-muted);
    margin-top: 1rem;
    opacity: 0.7;
}

/* Responsividade para Aulas e Rodas */
@media (max-width: 768px) {
    .reflexo-theme .aulas-section,
    .reflexo-theme .rodas-section {
        padding: 60px 16px;
    }

    .reflexo-theme .aulas-section .section-title,
    .reflexo-theme .rodas-section .section-title {
        font-size: 1.5rem;
    }

    .reflexo-theme .aulas-intro p,
    .reflexo-theme .rodas-intro p {
        font-size: 1.1rem;
        text-align: center;
    }

    .reflexo-theme .aulas-intro .lead-paragraph,
    .reflexo-theme .rodas-intro .lead-paragraph {
        font-size: 1.3rem;
    }

    .reflexo-theme .aulas-intro .lead-paragraph::first-letter,
    .reflexo-theme .rodas-intro .lead-paragraph::first-letter {
        font-size: 2.8rem;
    }

    .reflexo-theme .masterclass-featured {
        padding: 1.5rem;
    }

    .reflexo-theme .aula-featured {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .reflexo-theme .aula-featured-header {
        flex-direction: column;
        gap: 12px;
    }

    .reflexo-theme .aula-featured-title {
        font-size: 1.15rem;
        min-width: auto;
    }

    .reflexo-theme .aula-featured-meta {
        width: 100%;
        justify-content: space-between;
    }

    .reflexo-theme .aula-featured-subtitle {
        font-size: 0.9rem;
    }

    .reflexo-theme .aula-featured-description {
        font-size: 0.9rem;
    }

    .reflexo-theme .aulas-grid {
        grid-template-columns: 1fr;
    }

    .reflexo-theme .aulas-grid-title {
        font-size: 1.1rem;
    }

    /* Debriefing Timeline - Mobile */
    .reflexo-theme .debriefing-row {
        flex-wrap: wrap;
        gap: 12px;
        padding: 16px 0;
    }

    .reflexo-theme .debriefing-date {
        min-width: 70px;
        text-align: left;
    }

    .reflexo-theme .debriefing-date .date-day {
        font-size: 1.2rem;
    }

    .reflexo-theme .debriefing-content {
        flex: 1 1 calc(100% - 90px);
    }

    .reflexo-theme .debriefing-status {
        position: absolute;
        right: 0;
        top: 16px;
    }

    .reflexo-theme .debriefing-row {
        position: relative;
        padding-right: 80px;
    }

    .reflexo-theme .debriefing-title {
        font-size: 0.95rem;
    }

    .reflexo-theme .debriefing-subtitle {
        font-size: 0.85rem;
    }

    /* Layout Completo de Aulas - Mobile */
    .reflexo-theme .aula-card-full {
        padding: 1.25rem;
    }

    .reflexo-theme .aula-header {
        flex-direction: column;
        gap: 12px;
    }

    .reflexo-theme .aula-meta {
        width: 100%;
        justify-content: space-between;
    }

    .reflexo-theme .aula-card-full .aula-title {
        font-size: 1.05rem;
    }

    .reflexo-theme .aula-card-full .aula-subtitle {
        font-size: 0.85rem;
    }

    .reflexo-theme .aula-description {
        font-size: 0.85rem;
    }

    .reflexo-theme .btn-aula-assistir {
        width: 100%;
        justify-content: center;
    }

    /* Modal de Ementa - Mobile */
    .reflexo-theme .ementa-modal {
        padding: 20px 12px;
    }

    .reflexo-theme .ementa-modal-header {
        padding: 1.5rem 1.25rem 1rem;
    }

    .reflexo-theme .ementa-modal-header h3 {
        font-size: 1.15rem;
    }

    .reflexo-theme .ementa-modal-body {
        padding: 1rem 1.25rem 1.5rem;
    }

    .reflexo-theme .ementa-section-header {
        flex-direction: column;
        gap: 4px;
    }

    .reflexo-theme .ementa-section-duration {
        margin-left: 0;
    }

    .reflexo-theme .ementa-section-title {
        font-size: 0.95rem;
    }

    .reflexo-theme .ementa-topics li {
        font-size: 0.8rem;
    }
}

/* --------------------------------------------------------------------------
   CURADORIA DO AUTOR (Chef's Recommendation)
   -------------------------------------------------------------------------- */
.reflexo-theme .curation-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, #0a0908 0%, #080706 50%, #0a0908 100%);
    position: relative;
}

.reflexo-theme .curation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    z-index: 1;
    pointer-events: none;
}

/* Header com Avatar do Autor */
.reflexo-theme .curation-header {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.reflexo-theme .curation-author-avatar {
    flex-shrink: 0;
}

.reflexo-theme .curation-author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(197, 160, 89, 0.3);
    object-fit: cover;
}

.reflexo-theme .curation-header-text {
    flex: 1;
}

.reflexo-theme .curation-eyebrow {
    display: block;
    font-family: var(--rt-font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--rt-gold);
    margin-bottom: 8px;
}

.reflexo-theme .curation-headline {
    font-family: var(--rt-font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.reflexo-theme .curation-intro {
    font-family: var(--rt-font-literary);
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--rt-text-reading);
    margin: 0;
    max-width: 600px;
}

/* Grid de Cursos */
.reflexo-theme .curation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Card de Curso */
.reflexo-theme .curation-card {
    background: rgba(20, 18, 16, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.12);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.reflexo-theme .curation-card:hover {
    border-color: rgba(197, 160, 89, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Thumbnail com Category Tag */
.reflexo-theme .curation-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1A1512 0%, #2a2320 100%);
    overflow: hidden;
}

.reflexo-theme .curation-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.reflexo-theme .curation-card:hover .curation-card-thumb img {
    transform: scale(1.05);
}

.reflexo-theme .curation-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10, 9, 8, 0.85);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--rt-gold);
    font-family: var(--rt-font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 3px;
}

/* Card Body */
.reflexo-theme .curation-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reflexo-theme .curation-card-title {
    font-family: var(--rt-font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

/* Curator Note com gold vertical line */
.reflexo-theme .curation-card-note {
    font-family: var(--rt-font-literary);
    font-size: 1.2rem;
    line-height: 1.6;
    color: #999999;
    margin: 0;
    padding-left: 16px;
    border-left: 2px solid rgba(197, 160, 89, 0.4);
    font-style: italic;
}

/* CTA */
.reflexo-theme .curation-cta {
    text-align: center;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.reflexo-theme .btn-curation {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--rt-font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--rt-gold);
    background: transparent;
    border: 1px solid var(--rt-gold);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.reflexo-theme .btn-curation:hover {
    background: var(--rt-gold);
    color: #0a0908;
}

.reflexo-theme .btn-curation i {
    font-size: 1rem;
}

/* Responsividade da Curadoria */
@media (max-width: 992px) {
    .reflexo-theme .curation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reflexo-theme .curation-section {
        padding: 60px 16px;
    }

    .reflexo-theme .curation-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
        margin-bottom: 40px;
    }

    .reflexo-theme .curation-author-avatar img {
        width: 70px;
        height: 70px;
    }

    .reflexo-theme .curation-headline {
        font-size: 1.6rem;
    }

    .reflexo-theme .curation-intro {
        font-size: 1.2rem;
    }

    .reflexo-theme .curation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reflexo-theme .curation-card-body {
        padding: 16px;
    }

    .reflexo-theme .curation-card-title {
        font-size: 1rem;
    }

    .reflexo-theme .curation-card-note {
        font-size: 1.2rem;
    }

    .reflexo-theme .curation-cta {
        margin-top: 32px;
    }

    .reflexo-theme .btn-curation {
        width: 100%;
        justify-content: center;
    }
}
