/* ==========================================================================
   MINERVA — SISTEMA DE DESIGN CINEMATOGRÁFICO, SCROLL REVEAL & GOOGLE MEET
   ========================================================================== */

/* --- VARIÁVEIS DE COR E TIPOGRAFIA (QUIET LUXURY) --- */
:root {
    --bg-dark: #070709;
    --bg-surface: #100f0e;
    --bg-card: rgba(22, 20, 18, 0.75);
    --bg-card-hover: rgba(35, 31, 28, 0.9);

    --off-white: #fcfbf9;
    --beige: #e6dfd3;
    --beige-dark: #b8af9e;
    --chocolate: #2a211c;
    --chocolate-light: #3e322a;

    --gold-punctual: #c5a059;
    --gold-light: #dfc285;
    --gold-glow: rgba(197, 160, 89, 0.25);

    --text-primary: #fcfbf9;
    --text-secondary: #c7c0b3;
    --text-muted: #8c8375;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

    --transition-smooth: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & ESTRUTURA BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* --- FUNDO CINEMATOGRÁFICO AMBIENTE EM MOVIMENTO --- */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140vw;
    height: 140vh;
    background: 
        radial-gradient(circle at 20% 25%, rgba(197, 160, 89, 0.07) 0%, transparent 45%),
        radial-gradient(circle at 75% 75%, rgba(42, 33, 28, 0.5) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(197, 160, 89, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: ambientPulse 22s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-3%, 3%) scale(1.05);
        opacity: 1;
    }
    100% {
        transform: translate(3%, -2%) scale(1.02);
        opacity: 0.85;
    }
}

/* --- ANIMAÇÕES DE ENTRADA CINEMATOGRÁFICAS (ESQUERDA, DIREITA, CIMA) --- */
.anim-left {
    opacity: 0;
    transform: translateX(-70px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
    will-change: opacity, transform;
}

.anim-right {
    opacity: 0;
    transform: translateX(70px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
    will-change: opacity, transform;
}

.anim-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
    will-change: opacity, transform;
}

.anim-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
    will-change: opacity, transform;
}

/* Quando entra no viewport */
.in-view .anim-left,
.in-view .anim-right,
.in-view .anim-up,
.in-view .anim-scale {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* Delays escalonados para efeito de cascata */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* --- TIPOGRAFIA EDITORIAL --- */
h1, h2, h3, .grand-gold-logo, .editorial-logo {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.gold-italic {
    font-style: italic;
    color: var(--gold-punctual);
}

.section-gold-label {
    font-family: var(--font-body);
    color: var(--gold-punctual);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
    display: inline-block;
}

/* --- TOP NAV & BARRA DE PROGRESSO --- */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(7, 7, 9, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    z-index: 100;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--off-white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.screen-indicator {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.screen-indicator .dim {
    color: var(--text-muted);
}

.screen-title-badge {
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--gold-punctual);
    padding: 0.2rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.nav-trigger-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--off-white);
    padding: 0.45rem 1rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.nav-trigger-btn:hover {
    background: rgba(197, 160, 89, 0.15);
    border-color: var(--gold-punctual);
    color: var(--gold-light);
}

.top-progress-container {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 101;
}

.top-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-punctual), var(--gold-light));
    transition: width 0.3s ease;
}

/* --- DRAWER LATERAL DE CONSULTORA --- */
.consultant-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;
    background: #100f0e;
    border-left: 1px solid rgba(197, 160, 89, 0.25);
    box-shadow: -10px 0 40px rgba(0,0,0,0.85);
    z-index: 200;
    transition: right var(--transition-smooth);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.consultant-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}

.drawer-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-punctual);
}

.drawer-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
}

.drawer-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 1rem 0;
}

.drawer-list {
    list-style: none;
    overflow-y: auto;
    flex: 1;
    padding-right: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.drawer-item {
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-fast);
}

.drawer-item:hover, .drawer-item.active {
    background: rgba(197, 160, 89, 0.12);
    border-color: var(--gold-punctual);
    color: var(--gold-light);
}

.drawer-item-num {
    font-family: var(--font-heading);
    color: var(--gold-punctual);
    font-weight: 600;
}

/* --- CONTAINER DAS TELAS (SCROLL EDITORIAL) --- */
.presentation-container {
    width: 100%;
    margin-top: 62px;
}

.screen {
    width: 100%;
    min-height: calc(100vh - 62px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 6rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.screen-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Layout Split Editorial (Texto + Mídia) */
.split-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.central-editorial {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.screen-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
}

.screen-headline {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--off-white);
    margin-bottom: 1rem;
}

.screen-subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* TELA 01 - ABERTURA */
.editorial-logo {
    font-size: 4.5rem;
    letter-spacing: 0.15em;
    color: var(--off-white);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--off-white);
    margin-bottom: 0.5rem;
}

.hero-subheadline {
    font-size: 2.2rem;
    font-style: italic;
    color: var(--gold-punctual);
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.meta-gold-dot {
    color: var(--gold-punctual);
}

/* MOLDURA EDITORIAL DE FOTOS COM SELO MINERVA */
.founders-hero-frame {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1.5px solid var(--gold-punctual);
    box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 30px rgba(197, 160, 89, 0.2);
    aspect-ratio: 16/11;
    background: #000;
}

.founders-hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease;
}

.founders-hero-frame:hover img {
    transform: scale(1.03);
}

.founders-badge-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(7, 7, 9, 0.95), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.founders-badge-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-light);
    letter-spacing: 0.05em;
}

.founders-badge-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* UPLOADER DE FOTO LIVE & TROCA DE FOTOS */
.image-upload-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    aspect-ratio: 16/10;
}

.hero-img, .uploadable-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.image-upload-wrapper:hover .uploadable-img,
.image-upload-wrapper:hover .hero-img {
    transform: scale(1.03);
}

.upload-overlay-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(10, 10, 12, 0.85);
    border: 1px solid var(--gold-punctual);
    color: var(--gold-light);
    padding: 0.4rem 0.85rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    
    /* Hidden by default, shown on hover */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.25s ease;
}

*:hover > .upload-overlay-btn,
.upload-overlay-btn:focus {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.upload-overlay-btn:hover {
    background: var(--gold-punctual);
    color: #000;
}

.media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--gold-light);
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.image-upload-wrapper:hover .media-overlay,
.media-modal-trigger:hover .media-overlay,
.founders-hero-frame:hover .media-overlay {
    opacity: 1;
}

/* TELA 02 - DIAGRAMA DE EVOLUÇÃO & FUNDADORAS */
.editorial-prose p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.editorial-prose .highlight-p {
    color: var(--off-white);
    font-weight: 400;
}

.founders-duo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.founder-portrait-card {
    background: var(--bg-card);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
}

.founder-portrait-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.flow-node {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 1.75rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 160px;
}

.node-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.node-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.flow-arrow {
    color: var(--gold-punctual);
    font-size: 1.5rem;
}

.gold-node {
    border-color: var(--gold-punctual);
    background: rgba(197, 160, 89, 0.08);
}

.gold-node .node-title {
    color: var(--gold-light);
}

/* TELA 03 - PILARES GRID */
.pilares-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pilar-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 2.5rem;
    border-radius: 4px;
    position: relative;
    transition: all var(--transition-fast);
}

.pilar-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-4px);
}

.pilar-card-wide {
    grid-column: span 2;
}

.pilar-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold-punctual);
    display: block;
    margin-bottom: 0.5rem;
}

.pilar-card h3 {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.pilar-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* TELA 04 - GALERIA & NETWORKING */
.quote-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--gold-punctual);
    border-left: 2px solid var(--gold-punctual);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.networking-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    aspect-ratio: 16/9;
}

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

.item-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(10,10,12,0.85);
    color: var(--gold-light);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border-radius: 2px;
}

.gallery-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.placeholder-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(197, 160, 89, 0.3);
    padding: 2rem 1rem;
    border-radius: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-fast);
}

.placeholder-card:hover {
    background: rgba(197, 160, 89, 0.05);
    border-color: var(--gold-punctual);
}

.placeholder-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

/* TELA 05 - MÓDULOS DE PLATAFORMA */
.modules-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto 3.5rem auto;
}

.module-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.2);
    color: var(--off-white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-fast);
}

.module-chip:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--gold-punctual);
    transform: translateY(-2px);
}

.chip-dot {
    color: var(--gold-punctual);
}

.footer-note-text {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
}

/* TELA 06 - APLICATIVO MOCKUP */
.app-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.app-features-list li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.gold-check {
    color: var(--gold-punctual);
    font-weight: bold;
}

.phone-mockup-frame {
    width: 320px;
    margin: 0 auto;
    background: #181614;
    border: 3px solid rgba(197, 160, 89, 0.4);
    border-radius: 36px;
    padding: 1rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.phone-screen {
    background: #0d0c0b;
    border-radius: 26px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 480px;
}

.phone-header-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.5rem;
}

.app-card-preview {
    background: rgba(255,255,255,0.04);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.app-badge {
    font-size: 0.65rem;
    background: var(--gold-punctual);
    color: #000;
    padding: 0.15rem 0.5rem;
    border-radius: 2px;
    font-weight: bold;
}

.placeholder-screen {
    background: rgba(197, 160, 89, 0.05);
    border: 1px dashed rgba(197, 160, 89, 0.3);
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    color: var(--gold-light);
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

/* TELA 07 - FLUXO LINEAR */
.linear-flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.flow-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2rem;
    border-radius: 4px;
    flex: 1;
    text-align: left;
}

.flow-step {
    font-family: var(--font-heading);
    color: var(--gold-punctual);
    font-size: 1.25rem;
}

.flow-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

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

.gold-flow-card {
    border-color: var(--gold-punctual);
    background: rgba(197, 160, 89, 0.08);
}

.flow-connector {
    color: var(--gold-punctual);
    font-size: 1.5rem;
}

/* TELA 08 & MOCKUPS */
.marketplace-mockup-card {
    background: var(--bg-card);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    padding: 2rem;
    cursor: pointer;
    position: relative;
}

.mockup-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.mockup-tag {
    font-size: 0.8rem;
    color: var(--gold-punctual);
    letter-spacing: 0.1em;
}

.placeholder-box {
    padding: 3rem 1.5rem;
    background: rgba(0,0,0,0.3);
    border: 1px dashed rgba(255,255,255,0.15);
    border-radius: 4px;
    text-align: center;
}

.placeholder-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin: 0.5rem 0;
}

/* TELA 09 - GALERIA DE PALESTRANTES (QUADROS AMPLIADOS E UNIFORMES) */
.speakers-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.speaker-placeholder-card {
    background: var(--bg-card);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 6px;
    padding: 1.25rem;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.speaker-placeholder-card:hover {
    border-color: var(--gold-punctual);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.speaker-img-container {
    width: 100%;
    height: 220px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed rgba(197, 160, 89, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.speaker-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.speaker-placeholder-card:hover .speaker-img-container img {
    transform: scale(1.04);
}

.speaker-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card-tag {
    font-size: 0.75rem;
    color: var(--gold-punctual);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.card-label {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--off-white);
}

/* TELA 10 - MOSAICO EDITORIAL */
.editorial-mosaic {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mosaic-main {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.3);
    aspect-ratio: 16/9;
}

.mosaic-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mosaic-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(10,10,12,0.9);
    color: var(--gold-light);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
}

.mosaic-sub {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.mosaic-box {
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(197, 160, 89, 0.3);
    padding: 1.5rem 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
}

/* TELA 11 - PROVAS SOCIAIS */
.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.social-proof-card {
    background: var(--bg-card);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 6px;
    padding: 2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.social-proof-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold-punctual);
}

.proof-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.proof-badge {
    font-size: 0.75rem;
    color: var(--gold-punctual);
    font-weight: 600;
}

.play-icon-badge {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.proof-body p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--off-white);
    margin-bottom: 0.5rem;
}

.proof-body small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* TELA 12 - PÁGINA OFICIAL */
.gold-editorial-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--gold-punctual);
    color: var(--gold-light);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.gold-editorial-btn:hover {
    background: var(--gold-punctual);
    color: #000;
}

.video-showcase-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-placeholder-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.play-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.2);
    color: var(--gold-punctual);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TELA 13 - NETWORKING STRIP */
.networking-elements-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.strip-item {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--off-white);
}

.strip-dot {
    color: var(--gold-punctual);
}

/* TELA 14 - EBOOKS */
.ebooks-mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.ebook-card {
    background: var(--bg-card) url('images/minerva_logo_black.png') center/cover no-repeat;
    border: 1px solid rgba(197, 160, 89, 0.25);
    padding: 2.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ebook-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7, 7, 9, 0.7); /* Dark overlay for text readability */
    z-index: 0;
}

.ebook-card > * {
    position: relative;
    z-index: 1;
}

.ebook-tag {
    font-size: 0.75rem;
    color: var(--gold-punctual);
}

/* TELA 15 - EXPERIÊNCIA SÍNTESE COM EMBLEMA EMBEDDED */
.experience-headline-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.grand-gold-logo {
    font-size: 5.5rem;
    color: var(--gold-punctual);
    letter-spacing: 0.15em;
    margin-top: 1rem;
}

.screen-bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    max-width: 600px;
    opacity: 0.12;
    filter: grayscale(100%) brightness(150%);
    pointer-events: none;
    z-index: 1;
}

/* TELA 16 - PAUSA DE TRANSIÇÃO */
.dark-pause-screen {
    background: #050506;
}

.gold-divider-line {
    color: var(--gold-punctual);
    letter-spacing: 0.5em;
    display: block;
    margin-bottom: 1.5rem;
}

.pause-headline {
    font-size: 2.8rem;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
}

.pause-subtext {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* TELAS 17, 18, 19 — PLANOS COMERCIAIS */
.plan-screen {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 4rem;
    position: relative;
}

.plan-badge {
    font-size: 0.8rem;
    background: rgba(255,255,255,0.08);
    color: var(--text-secondary);
    padding: 0.3rem 1rem;
    border-radius: 99px;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.gold-badge {
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold-light);
    border: 1px solid var(--gold-punctual);
}

.max-gold-badge {
    background: var(--gold-punctual);
    color: #000;
    font-weight: 800;
}

.plan-title {
    font-size: 2.8rem;
    margin: 1.25rem 0 0.5rem 0;
}

.highlight-gold-title {
    color: var(--gold-light);
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--off-white);
}

.gold-price {
    color: var(--gold-punctual);
}

.plan-subprice {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-top: 0.25rem;
}

.plan-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin: 1rem 0;
}

.plan-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--text-muted);
}

.gold-quote {
    color: var(--gold-light);
}

.plan-includes-grid {
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.include-item {
    font-size: 1.05rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-gold {
    color: var(--gold-punctual);
    font-weight: bold;
}

.highlight-include {
    font-weight: 600;
    color: var(--gold-light);
    font-size: 1.15rem;
}

.plan-screen-premium {
    border-color: var(--gold-punctual);
    background: linear-gradient(135deg, rgba(26,24,22,0.92) 0%, rgba(42,33,28,0.85) 100%);
    box-shadow: 0 0 60px rgba(197, 160, 89, 0.25);
}

/* TELA 20 — ESCADA DE EXPERIÊNCIA */
.experience-ladder {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 850px;
    margin: 3rem auto 0 auto;
}

.ladder-step {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2rem;
    border-radius: 4px;
    text-align: left;
}

.step-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold-punctual);
}

.step-title {
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0.5rem 0;
    color: var(--off-white);
}

.ladder-arrow {
    color: var(--gold-punctual);
    font-size: 1.5rem;
}

.gold-ladder-step {
    border-color: var(--gold-punctual);
    background: rgba(197, 160, 89, 0.1);
}

/* TELA 21 — ESCASSEZ REAL */
.scarcity-edit-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 2.5rem;
    border-radius: 6px;
    margin-top: 3rem;
}

.scarcity-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.scarcity-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.scarcity-val {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--off-white);
}

.gold-val {
    color: var(--gold-punctual);
}

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

/* TELA 22 — FECHAMENTO */
.final-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-gold-primary {
    padding: 1.25rem 3rem;
    background: var(--gold-punctual);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.btn-gold-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-gold-secondary {
    padding: 1.25rem 3rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--off-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.btn-gold-secondary:hover {
    border-color: var(--gold-punctual);
    color: var(--gold-light);
}

/* --- BARRA OTIMIZADA PARA GOOGLE MEET (MEET DOCK) --- */
.meet-dock {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 99px;
    padding: 0.4rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 150;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.meet-nav-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gold-light);
    font-size: 1rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.meet-nav-btn:hover {
    background: var(--gold-punctual);
    color: #000;
}

.meet-num-strip {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    max-width: 500px;
    overflow-x: auto;
    padding: 0.2rem 0;
}

.meet-num-strip::-webkit-scrollbar {
    display: none;
}

.meet-num-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.meet-num-pill:hover, .meet-num-pill.active {
    background: rgba(197, 160, 89, 0.2);
    border-color: var(--gold-punctual);
    color: var(--gold-light);
}

.meet-keyboard-tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    white-space: nowrap;
}

/* --- MODAL DE MÍDIA --- */
.media-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 6, 0.95);
    backdrop-filter: blur(20px);
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-modal.open {
    opacity: 1;
    visibility: visible;
}

.media-modal-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-close-btn {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

.modal-body img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.modal-caption {
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-light);
}

/* RESPONSIVIDADE DESKTOP PRIME */
@media (max-width: 1024px) {
    .screen {
        padding: 3rem 2rem;
    }
    .split-editorial {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .screen-headline {
        font-size: 2.4rem;
    }
    .editorial-logo {
        font-size: 3.2rem;
    }
    .flow-diagram, .linear-flow-container, .founders-duo-grid {
        grid-template-columns: 1fr;
    }
    .pilares-grid, .speakers-gallery-grid, .social-proof-grid {
        grid-template-columns: 1fr;
    }
    .pilar-card-wide {
        grid-column: span 1;
    }
}
