:root {
    --bg-black: #050505;
    --accent: #a855f7;
    --accent-glow: rgba(168, 85, 247, 0.15);
    --text-white: #ffffff;
    --text-gray: #a1a1aa;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { 
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Trava absoluta contra rolagem horizontal */
}

body { 
    background: var(--bg-black); 
    color: var(--text-white); 
    font-family: 'Montserrat', sans-serif; 
    position: relative; 
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #7c3aed, var(--accent));
    border-radius: 10px;
    border: 3px solid var(--bg-black);
    box-shadow: inset 0 0 10px rgba(168, 85, 247, 0.4);
}

::-webkit-scrollbar-thumb:hover {
    background: #9333ea; /* Roxo profundo e vibrante no hover */
}

/* Barra de Progresso no Topo */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, #7c3aed, var(--accent));
    box-shadow: 0 0 15px var(--accent);
    z-index: 10001;
    transition: width 0.1s ease-out;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-black);
}

.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; width: 100%; }

/* Mouse Glow */
.mouse-glow {
    position: fixed; width: 300px; height: 300px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: 0; transform: translate(-50%, -50%);
}

/* Background Outline Text */
.bg-text-outline {
    position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
    font-size: 15rem; font-weight: 900; color: transparent;
    -webkit-text-stroke: 1px rgba(168, 85, 247, 0.1);
    z-index: -1; pointer-events: none; letter-spacing: 2rem;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#smokeCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

#neuralCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2; /* Fica atrás de tudo, mas na frente do gradiente base */
    opacity: 0.5; /* Aumentado para 50% para dar destaque real */
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Header */
header { 
    position: fixed; 
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000; 
    background: rgba(5,5,5,0.7); 
    backdrop-filter: blur(20px); 
    border-radius: 100px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.1);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.05);
}

.header-group {
    cursor: grab;
    user-select: none;
    transition: transform 0.2s;
}

.header-group:active {
    cursor: grabbing;
}

.header-group.dragging {
    opacity: 0.4;
    transform: scale(0.95);
}

.nav-item {
    cursor: grab;
}

.nav-item.dragging {
    opacity: 0.3;
}

header::after {
    content: '';
    position: absolute;
    inset: -1px;
    padding: 1px;
    border-radius: 100px;
    background: conic-gradient(from var(--angle), transparent 70%, var(--accent) 95%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
  to { --angle: 360deg; }
}

header:hover {
    background: rgba(5,5,5,0.85);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

nav { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 2rem; }
.logo img { height: 30px; width: auto; display: block; }
.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.mobile-cta-item { display: none; } /* Oculta no desktop */
.nav-links a { text-decoration: none; color: var(--text-gray); font-weight: 500; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.mobile-menu-btn { display: none; color: white; cursor: pointer; order: 3; }

.btn-glow-header {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
}

.btn-glow-header:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 25px var(--accent);
    filter: brightness(1.1);
}

/* Buttons */
.btn-main-neon { 
    padding: 1.2rem 2.5rem; 
    background: linear-gradient(135deg, var(--accent), #7c3aed); 
    color: white; 
    text-decoration: none; 
    font-weight: 800; 
    font-family: inherit; /* Adicionado para corrigir a news */
    border-radius: 100px; /* Formato pílula */
    transition: 0.4s; 
    text-transform: uppercase; 
    box-shadow: 0 0 20px var(--accent-glow); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block; 
    text-align: center; 
}

.btn-main-neon:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 0 40px var(--accent); 
    filter: brightness(1.1);
}

.btn-outline-neon { padding: 1.2rem 2.5rem; border: 2px solid var(--accent); color: white; text-decoration: none; font-weight: 800; border-radius: 12px; transition: 0.4s; text-transform: uppercase; margin-left: 1rem; }
.btn-outline-neon:hover { background: var(--accent-glow); }

/* HERO ORBITAL */
#hero-home { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 120px; overflow: hidden; }
.grid-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }

.hero-text h1 { font-size: 4.2rem; font-weight: 700; line-height: 1; margin: 1.5rem 0; }
.hero-text h1 span { color: var(--accent); text-shadow: 0 0 20px var(--accent-glow); }

.hero-text p {
    margin-bottom: 3rem;
    line-height: 1.7;
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
}

.hero-visual-orbit { 
    position: relative; 
    width: 500px; 
    height: 500px; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    cursor: grab;
    user-select: none;
}
.hero-visual-orbit:active { cursor: grabbing; }

.orbit-center { position: relative; z-index: 10; pointer-events: none; }
.core-logo { width: 150px; filter: drop-shadow(0 0 30px var(--accent)); }
.pulse-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 200px; height: 200px; border: 2px solid var(--accent); border-radius: 50%; animation: pulseCore 3s infinite; }

@keyframes pulseCore { 0% { width: 150px; height: 150px; opacity: 1; } 100% { width: 400px; height: 400px; opacity: 0; } }

.orbit-item {
    position: absolute; 
    padding: 10px 18px; 
    background: var(--glass); 
    border: 1px solid var(--glass-border);
    border-radius: 50px; 
    font-size: 0.8rem; 
    font-weight: 700; 
    backdrop-filter: blur(10px);
    color: var(--text-white);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: background 0.3s, border-color 0.3s, transform 0.1s linear;
    will-change: transform;
    top: 50%; left: 50%;
    margin-top: -18px;
    margin-left: -50px;
    text-align: center;
    display: flex; justify-content: center; align-items: center;
}

.orbit-item:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 15px var(--accent);
    z-index: 20;
    cursor: pointer;
}

/* COMPARISON SECTION */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 4rem; }

#manifestoDragContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comp-card-style { padding: 3rem; border-radius: 24px; border: 1px solid var(--glass-border); position: relative; }
.comp-card-style.old { background: rgba(255, 255, 255, 0.07); }
.comp-card-style.new { background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), transparent); border-color: var(--accent); }
.comp-card-style h4 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.comp-card-style ul { list-style: none; }
.comp-card-style ul li { margin-bottom: 1rem; color: var(--text-gray); display: flex; align-items: center; gap: 10px; }
.comp-card-style.new ul li::before { content: '✓'; color: var(--accent); font-weight: bold; }

/* STACK CARDS */
.cards-stack { display: flex; flex-direction: column; gap: 1.5rem; position: relative; min-height: 200px; }
.stack-card { 
    background: var(--glass); 
    padding: 2.5rem; 
    border-radius: 20px; 
    border: 1px solid var(--glass-border); 
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; 
    position: relative; 
    cursor: grab;
}
.stack-card:active { cursor: grabbing; }
.stack-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.stack-card i { color: var(--accent); margin-bottom: 1rem; }

.drag-card.dragging {
    opacity: 0.4;
    transform: scale(0.98);
    border: 1px dashed var(--accent);
}

.sticky-text .stack-card {
    margin: 2rem 0;
    background: rgba(168, 85, 247, 0.05);
}

/* NICHE CARDS */
.scrolling-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.niche-card-large { background: var(--glass); padding: 4rem 2rem; border-radius: 30px; text-align: center; border: 1px solid var(--glass-border); transition: 0.5s; }
.niche-card-large:hover { background: var(--accent); color: black; }
.niche-card-large .niche-icon { width: 80px; height: 80px; background: rgba(168, 85, 247, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; transition: 0.3s; }
.niche-card-large:hover .niche-icon { background: rgba(0,0,0,0.1); color: black; }

/* REVEAL ANIMATIONS & SPACING - MAIS LENTOS */
.section-padding { padding: 120px 0; }
.section-header h2 { margin-bottom: 1.5rem; } 
.section-header p { margin-top: 1rem; line-height: 1.6; }

.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-pixel { opacity: 0; transform: scale(0.95); filter: blur(10px); transition: all 1.2s ease-out; }

/* Efeito Gran Finale: Pop-in individual */
.reveal-pop {
    opacity: 0;
    transform: scale(0.5) translateY(30px);
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.visible { opacity: 1; transform: translate(0) scale(1) rotate(0) translateZ(0); filter: blur(0); }

/* Grid 2 Column Layout */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.sticky-text { position: sticky; top: 120px; min-height: 400px; }
.sticky-text h2 { margin-bottom: 2rem; }
.sticky-text p { margin-bottom: 1.5rem; line-height: 1.8; color: var(--text-gray); font-size: 1.05rem; }
.sticky-text p strong { color: var(--text-white); font-weight: 600; }

.stack-card h4 { margin-bottom: 1rem; font-size: 1.4rem; } 
.stack-card p { line-height: 1.6; color: var(--text-gray); }

.delay-200 { transition-delay: 0.2s; }
.delay-400 { transition-delay: 0.4s; }
.delay-600 { transition-delay: 0.6s; }
.delay-800 { transition-delay: 0.8s; }

.mb-80 { margin-bottom: 80px !important; }

/* Manifesto CTA Card */
.manifesto-cta-card {
    max-width: 800px;
    margin: 60px auto 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(0, 0, 0, 0.4));
    border: 1px solid var(--accent);
    border-radius: 30px;
    padding: 4rem 2rem;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.1);
    position: relative;
    z-index: 10;
}

.final-headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-card-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.manifesto-cta-card .cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* --- NEWSLETTER NEWSPÉRPOW --- */
.newsletter-box {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(0, 0, 0, 0.4));
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 6rem 2rem; /* Aumentado respiro vertical */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Espaçamento da Mensagem de Sucesso */
.newsletter-box .success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem; /* Distância ideal entre badge, título e texto */
}

.newsletter-content {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; /* Espaçamento entre badge, título e parágrafo */
}

.newsletter-content .badge-neon {
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0; /* Controlado pelo gap do pai */
}

.newsletter-form {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.newsletter-input-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 6px;
    transition: all 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-form input {
    flex: 1;
    background: transparent !important;
    border: none;
    padding: 0 2rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

/* Fix Definitivo para remover RETÂNGULO de Autocomplete */
.newsletter-form input:-webkit-autofill,
.newsletter-form input:-webkit-autofill:hover, 
.newsletter-form input:-webkit-autofill:focus,
.newsletter-form input:-webkit-autofill:active {
    transition: background-color 9999s ease-in-out 0s; /* Faz o fundo do navegador nunca aparecer */
    -webkit-text-fill-color: white !important;
    caret-color: white;
}

.newsletter-form .btn-main-neon {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.newsletter-form .error-msg {
    display: none;
    color: #ff4d4d;
    font-size: 0.8rem;
    margin-top: 1rem;
    font-weight: 500;
}

.news-pun-text {
    margin-top: 2rem;
    color: var(--text-gray);
    font-size: 0.85rem;
    opacity: 0.7;
    font-style: italic;
}

/* Responsividade Newsletter */
@media (max-width: 768px) {
    .newsletter-box {
        padding: 3rem 1.5rem;
        border-radius: 30px;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 1rem;
    }
    
    .newsletter-form input {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--glass-border);
        padding: 1.2rem 2rem;
        border-radius: 100px;
        width: 100%;
    }
    
    .newsletter-form .btn-main-neon {
        width: 100%;
        padding: 1.2rem;
    }
}

/* Utility */
.max-800 { max-width: 800px !important; margin-left: auto; margin-right: auto; }
.center { text-align: center; }

/* FOOTER */
footer { padding: 5rem 0 2rem; border-top: 1px solid var(--glass-border); margin-top: 100px; width: 100%; overflow: hidden; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.footer-brand img { height: 35px; width: auto; margin-bottom: 1.5rem; display: block; }
.social-btns { display: flex; gap: 1.5rem; margin-top: 1rem; }
.social-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--glass); border: 1px solid var(--glass-border); color: white; transition: 0.4s; }
.social-icon:hover { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 20px var(--accent); transform: translateY(-5px); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--glass-border); color: var(--text-gray); font-size: 0.8rem; margin-top: 4rem; width: 100%; }

/* --- PÁGINA EM CONSTRUÇÃO --- */
.coming-soon-container {
    min-height: 100vh;
    display: flex; justify-content: center; align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(20,20,20,1) 0%, #050505 100%);
    padding: 0 2rem;
}
.coming-soon-container .content-wrapper { max-width: 600px; animation: fadeInScale 0.8s ease-out; }
@keyframes fadeInScale { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.loader-container { position: relative; width: 120px; height: 120px; margin: 0 auto 2rem; display: flex; justify-content: center; align-items: center; }
.loading-logo { width: 70px; animation: pulseRotateLogo 3s infinite ease-in-out; filter: drop-shadow(0 0 15px var(--accent-glow)); }
.loader-ring { display: none; }
@keyframes pulseRotateLogo { 
    0% { opacity: 1; transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 20px var(--accent)); } 
    50% { opacity: 0.3; transform: scale(0.7) rotate(180deg); filter: drop-shadow(0 0 5px var(--accent)); } 
    100% { opacity: 1; transform: scale(1) rotate(360deg); filter: drop-shadow(0 0 20px var(--accent)); } 
}
.coming-soon-container h1 { font-size: 2.5rem; margin-bottom: 1rem; background: linear-gradient(to right, #fff, var(--text-gray)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.coming-soon-container p { color: var(--text-gray); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.6; }
.status-badge { display: inline-block; padding: 0.5rem 1.5rem; background: rgba(168, 85, 247, 0.1); border: 1px solid var(--accent); color: var(--accent); border-radius: 50px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3rem; box-shadow: 0 0 15px var(--accent-glow); }
.action-box { padding-top: 2rem; border-top: 1px solid var(--glass-border); }

/* --- PÁGINA SOBRE --- */
.about-hero { padding: 120px 0 60px; text-align: center; }
.overline { color: var(--accent); text-transform: uppercase; letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 1rem; font-weight: 700; }
.glitch-title { font-size: 4rem; font-weight: 900; color: white; position: relative; display: inline-block; }
.glitch-title::before, .glitch-title::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.glitch-title::before { left: 2px; text-shadow: -1px 0 #ff00c1; clip: rect(44px, 450px, 56px, 0); animation: glitch-anim 5s infinite linear alternate-reverse; }
.glitch-title::after { left: -2px; text-shadow: -1px 0 #00fff9; clip: rect(44px, 450px, 56px, 0); animation: glitch-anim2 5s infinite linear alternate-reverse; }
@keyframes glitch-anim { 
    0% { clip: rect(2px, 9999px, 15px, 0); transform: skew(0.5deg); } 
    10% { clip: rect(50px, 9999px, 80px, 0); transform: skew(-0.5deg); } 
    20% { clip: rect(10px, 9999px, 30px, 0); transform: skew(0.8deg); } 
    30% { clip: rect(80px, 9999px, 90px, 0); transform: skew(-0.8deg); } 
    40% { clip: rect(40px, 9999px, 50px, 0); transform: skew(0.3deg); } 
    50% { clip: rect(2px, 9999px, 15px, 0); transform: skew(-0.3deg); } 
    60% { clip: rect(50px, 9999px, 80px, 0); transform: skew(0.5deg); } 
    70% { clip: rect(10px, 9999px, 30px, 0); transform: skew(-0.5deg); } 
    80% { clip: rect(80px, 9999px, 90px, 0); transform: skew(0.8deg); } 
    90% { clip: rect(40px, 9999px, 50px, 0); transform: skew(-0.8deg); } 
    100% { clip: rect(2px, 9999px, 15px, 0); transform: skew(0.5deg); } 
}

@keyframes glitch-anim2 { 
    0% { clip: rect(60px, 9999px, 70px, 0); transform: skew(-0.5deg); } 
    15% { clip: rect(10px, 9999px, 20px, 0); transform: skew(0.5deg); } 
    30% { clip: rect(85px, 9999px, 95px, 0); transform: skew(-0.8deg); } 
    45% { clip: rect(30px, 9999px, 40px, 0); transform: skew(0.8deg); } 
    60% { clip: rect(60px, 9999px, 70px, 0); transform: skew(-0.5deg); } 
    75% { clip: rect(10px, 9999px, 20px, 0); transform: skew(0.5deg); } 
    90% { clip: rect(85px, 9999px, 95px, 0); transform: skew(-0.8deg); } 
    100% { clip: rect(60px, 9999px, 70px, 0); transform: skew(0.8deg); } 
}

.subtitle { color: var(--text-gray); font-size: 1.2rem; margin-top: 1rem; }

.meanings-section { padding: 60px 0; perspective: 1000px; overflow: hidden; }
.carousel-3d-container { position: relative; width: 100%; max-width: 600px; height: 400px; margin: 0 auto; display: flex; justify-content: center; align-items: center; }
.meaning-card { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    background: #1a0b2e; /* Roxo sólido e profundo */
    border: 1px solid rgba(168, 85, 247, 0.3); 
    border-radius: 20px; 
    padding: 3rem; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); 
    opacity: 0; 
    transform: translateX(100px) scale(0.8) rotateY(-10deg); 
    pointer-events: none; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 rgba(168, 85, 247, 0); 
}
.meaning-card.active { 
    opacity: 1; 
    transform: translateX(0) scale(1) rotateY(0); 
    z-index: 5; 
    pointer-events: all; 
    border-color: var(--accent); 
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.4), inset 0 0 20px rgba(168, 85, 247, 0.2); 
}
.meaning-card.prev { opacity: 0.4; transform: translateX(-120px) scale(0.85) rotateY(10deg); z-index: 2; }
.meaning-card.next { opacity: 0.4; transform: translateX(120px) scale(0.85) rotateY(-10deg); z-index: 2; }
.card-icon { font-size: 3rem; color: var(--accent); margin-bottom: 1.5rem; width: 80px; height: 80px; background: rgba(168, 85, 247, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.meaning-card h2 { margin-bottom: 1rem; color: white; }
.meaning-card p { color: var(--text-gray); line-height: 1.6; }
.nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: white; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; z-index: 10; backdrop-filter: blur(5px); transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.nav-btn:hover { background: var(--accent); }
.nav-btn.prev { left: -60px; }
.nav-btn.next { right: -60px; }
.carousel-indicators { display: flex; justify-content: center; gap: 10px; margin-top: 2rem; }
.indicator { width: 10px; height: 10px; border-radius: 50%; background: var(--glass-border); transition: 0.3s; }
.indicator.active { background: var(--accent); width: 30px; border-radius: 10px; }

.nietzsche-section { padding: 100px 0; text-align: center; background: linear-gradient(to top, rgba(168,85,247,0.05), transparent); }
.question-text { font-size: 2rem; margin-bottom: 1rem; color: var(--text-gray); }
.answer-text { font-size: 2.5rem; color: var(--text-white); margin-bottom: 4rem; text-transform: uppercase; letter-spacing: 2px; }
.quote-block { max-width: 800px; margin: 0 auto 3rem; padding: 3rem; border-left: 4px solid var(--accent); background: rgba(255,255,255,0.02); text-align: left; }
.quote-block p { font-size: 2rem; font-weight: 300; font-style: italic; line-height: 1.4; margin-bottom: 1.5rem; }
.quote-block cite { font-size: 1.1rem; color: var(--accent); font-weight: 700; text-transform: uppercase; }

.symbolism-section { padding: 80px 0 120px; position: relative; overflow: hidden; }
.symbolism-header h2 { font-size: 2.5rem; margin-top: 1rem; color: white; }
.symbol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: center; }
.symbol-item { 
    background: rgba(255,255,255,0.02); 
    border: 1px solid var(--glass-border); 
    padding: 3rem 2rem; 
    border-radius: 20px; 
    text-align: center; 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
    position: relative; 
    z-index: 2; 
    cursor: pointer;
}

.symbol-item:hover { 
    background: rgba(168, 85, 247, 0.05); 
    border-color: var(--accent); 
    transform: translateY(-15px) scale(1.05); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(168, 85, 247, 0.2);
    z-index: 10;
}

.symbol-item.featured { 
    background: linear-gradient(180deg, rgba(168,85,247,0.15), rgba(20,20,20,0.8)); 
    border-color: rgba(168,85,247,0.5); 
    padding: 4rem 2.5rem; 
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.2); 
    transform: scale(1.1);
    z-index: 5;
}

.symbol-item.featured:hover {
    transform: scale(1.15) translateY(-10px);
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.3);
}

/* Ajuste para mobile */
@media (max-width: 900px) {
    .symbol-item.featured {
        transform: scale(1);
        padding: 3rem 2rem;
    }
}
.symbol-icon-box { width: 70px; height: 70px; background: var(--glass); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--accent); font-size: 2rem; border: 1px solid var(--glass-border); }
.symbol-icon-box.pulse { animation: glowPulse 3s infinite; background: var(--accent); color: white; box-shadow: 0 0 20px var(--accent-glow); }
@keyframes glowPulse { 0% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7); } 70% { box-shadow: 0 0 0 20px rgba(168, 85, 247, 0); } 100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); } }
.bg-glow-symbol { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; background: radial-gradient(circle, rgba(168,85,247,0.05) 0%, transparent 70%); z-index: 0; pointer-events: none; }

.manifesto-section { padding: 100px 0; position: relative; background: linear-gradient(to bottom, #050505, #0a0a0a); }
.timeline-guide { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: linear-gradient(to bottom, transparent, var(--accent), transparent); transform: translateX(-50%); z-index: 0; opacity: 0.3; }
.manifesto-block { display: flex; justify-content: flex-end; padding-right: 50%; position: relative; margin-bottom: 4rem; width: 100%; }
.manifesto-block.right { justify-content: flex-start; padding-right: 0; padding-left: 50%; flex-direction: row-reverse; }
.block-content { background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); padding: 2.5rem; border-radius: 20px; max-width: 90%; position: relative; margin: 0 2rem; }
.block-icon { position: absolute; top: 30px; right: -25px; width: 50px; height: 50px; background: #050505; border: 2px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; color: var(--accent); box-shadow: 0 0 15px var(--accent-glow); }
.manifesto-block.right .block-icon { right: auto; left: -25px; }

.block-content h2, .block-content h3 { 
    font-size: 1.8rem; 
    margin-bottom: 1.5rem; 
    color: white; 
    line-height: 1.2; 
}

.block-content p {
    margin-bottom: 1rem;
}

.block-content ul {
    list-style: none;
    margin-top: 1rem;
}

.block-content ul li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.block-content ul li::before {
    content: '•';
    color: var(--accent);
    font-weight: bold;
}

.strong-statement { font-size: 1.2rem; color: white !important; font-weight: 700; border-left: 3px solid var(--accent); padding-left: 1rem; margin-top: 1.5rem; }
.highlight-card .block-content { background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(0,0,0,0.4)); border-color: var(--accent); box-shadow: 0 0 30px rgba(168, 85, 247, 0.1); }
.social-mini-links {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.social-mini-links span {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.social-mini-links a {
    color: white;
    background: rgba(168, 85, 247, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-mini-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
    border-color: var(--accent);
}

.social-mini-links i {
    width: 22px;
    height: 22px;
}

/* --- HOME: SEÇÃO CAOS --- */
.overline-alert { color: #ff4d4d; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; font-size: 0.85rem; margin-bottom: 0.5rem; }
.chaos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.chaos-item { background: rgba(20, 5, 5, 0.4); border: 1px solid rgba(255, 77, 77, 0.15); padding: 2.5rem 2rem; border-radius: 20px; transition: 0.3s; position: relative; overflow: hidden; }
.chaos-item:hover { border-color: #ff4d4d; background: rgba(255, 77, 77, 0.05); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(255, 77, 77, 0.1); }
.alert-icon { width: 60px; height: 60px; background: rgba(255, 77, 77, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ff4d4d; margin-bottom: 1.5rem; font-size: 1.5rem; }

.chaos-item h4 { 
    font-size: 1.4rem; 
    margin-bottom: 1.5rem; /* Aumentado o espaçamento */
    color: white;
}

.chaos-item p {
    line-height: 1.6;
    color: var(--text-gray);
}

.evolution-container { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; margin-top: 4rem; align-items: center; }
.timeline-menu { display: flex; flex-direction: column; position: relative; border-left: 2px solid rgba(255,255,255,0.1); }
.time-btn { display: flex; align-items: center; gap: 20px; padding: 1.5rem; background: transparent; border: none; text-align: left; cursor: pointer; opacity: 0.5; transition: 0.3s; position: relative; width: 100%; font-family: 'Montserrat', sans-serif; }
.time-btn::before { content: ''; position: absolute; left: -2px; top: 0; bottom: 0; width: 2px; background: var(--accent); transform: scaleY(0); transition: 0.3s; }
.time-btn.active::before { transform: scaleY(1); }
.time-btn.active { opacity: 1; background: rgba(168, 85, 247, 0.03); }
.phase-num { font-size: 2.5rem; font-weight: 900; color: rgba(255,255,255,0.1); font-family: 'Montserrat', sans-serif; line-height: 1; }
.time-btn.active .phase-num { color: var(--accent); text-shadow: 0 0 15px var(--accent); }
.phase-info { display: flex; flex-direction: column; gap: 4px; font-family: 'Montserrat', sans-serif; }

/* Sinergia Slots */
.cards-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    min-height: 600px;
}

.sinergia-slot {
    position: relative;
    min-height: 200px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(168, 85, 247, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sinergia-slot .sinergia-placeholder {
    position: absolute;
    opacity: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.sinergia-slot:has(.sinergia-card) .sinergia-placeholder {
    opacity: 0;
}

.sinergia-slot:has(.sinergia-card) {
    border-color: transparent;
    background: transparent;
}

.sinergia-slot.drag-over {
    border-color: var(--accent);
    background: rgba(168, 85, 247, 0.05);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.sinergia-placeholder img {
    width: 80px;
    animation: pulseRotateLogo 3s infinite ease-in-out;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}
.phase-info strong { color: white; font-size: 1.2rem; font-weight: 700; font-family: 'Montserrat', sans-serif; }
.phase-info small { color: var(--text-gray); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-family: 'Montserrat', sans-serif; }

/* Sinergia Placeholder Logo */
.sinergia-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.sinergia-placeholder.visible {
    opacity: 1;
}

.sinergia-placeholder img {
    width: 120px;
    animation: pulseRotateLogo 3s infinite ease-in-out;
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

@keyframes pulseRotateLogo { 
    0% { opacity: 1; transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 20px var(--accent)); } 
    50% { opacity: 0.3; transform: scale(0.7) rotate(180deg); filter: drop-shadow(0 0 5px var(--accent)); } 
    100% { opacity: 1; transform: scale(1) rotate(360deg); filter: drop-shadow(0 0 20px var(--accent)); } 
}

.chaos-card { cursor: grab; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; }
.chaos-card:active { cursor: grabbing; }
.chaos-card:hover { transform: translateY(-10px) rotate(1deg); border-color: #ff4d4d; box-shadow: 0 15px 35px rgba(255, 77, 77, 0.2); }
.chaos-card.dragging { opacity: 0.5; transform: scale(0.95); border-color: #ff4d4d; background: rgba(255, 77, 77, 0.1); }

/* Feedback de Arraste do Header */
.is-being-dragged {
    opacity: 0.7;
    transform: scale(1.05);
    z-index: 1001;
}

.nav-item.is-being-dragged {
    opacity: 0.5;
}

/* Light Effect for Card Swaps (from Módulo 01) */
.drag-card.drag-over {
    border-color: var(--accent) !important;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.5) !important;
    transform: scale(1.03) !important;
    background: rgba(168, 85, 247, 0.1) !important;
    z-index: 100;
}

/* Red Light Effect for Chaos Cards */
.chaos-card.drag-over {
    border-color: #ff4d4d !important;
    box-shadow: 0 0 40px rgba(255, 77, 77, 0.5) !important;
    background: rgba(255, 77, 77, 0.1) !important;
}

.holo-display { background: radial-gradient(circle at center, rgba(168,85,247,0.05) 0%, transparent 70%); border: 1px solid rgba(168, 85, 247, 0.2); border-radius: 30px; padding: 3rem; min-height: 400px; display: flex; align-items: center; justify-content: center; position: relative; backdrop-filter: blur(5px); box-shadow: inset 0 0 50px rgba(0,0,0,0.5); }
.holo-display::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(168,85,247,0.03) 3px); pointer-events: none; border-radius: 30px; }
.holo-content { text-align: center; width: 100%; animation: holoFade 0.5s ease-out; }
@keyframes holoFade { from { opacity: 0; transform: scale(0.95); filter: blur(5px); } to { opacity: 1; transform: scale(1); filter: blur(0); } }
.holo-header { margin-bottom: 2rem; }
.holo-header i { font-size: 3rem; color: var(--accent); margin-bottom: 1rem; }
.holo-header h3 { font-size: 2rem; color: white; text-transform: uppercase; letter-spacing: 2px; }
.main-stat { font-size: 1.5rem; color: #fff; font-style: italic; margin-bottom: 2rem; opacity: 0.8; }
.holo-list { list-style: none; text-align: left; max-width: 400px; margin: 0 auto 2rem; }
.holo-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; color: var(--text-gray); font-size: 1.1rem; }
.holo-list li .check { color: #27c93f; font-weight: bold; }
.holo-list li .cross { color: #ff4d4d; font-weight: bold; }
.holo-footer { display: inline-block; padding: 0.5rem 1.5rem; border-radius: 50px; font-weight: 700; font-size: 0.9rem; }
.holo-footer.warning { background: rgba(255, 77, 77, 0.1); color: #ff4d4d; border: 1px solid #ff4d4d; }
.holo-footer.success { background: rgba(39, 201, 63, 0.1); color: #27c93f; border: 1px solid #27c93f; }
.holo-footer.process { background: rgba(168, 85, 247, 0.1); color: var(--accent); border: 1px solid var(--accent); }

/* --- PRIORITY PLAYGROUND --- */
.drag-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.drag-card { background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); padding: 2rem; border-radius: 20px; cursor: grab; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; position: relative; user-select: none; }
.drag-card:active { cursor: grabbing; }
.drag-card.dragging { opacity: 0.5; transform: scale(0.95); background: rgba(168, 85, 247, 0.1); border-color: var(--accent); }
.drag-card h3 { font-size: 1.3rem; color: white; margin-bottom: 0.5rem; }
.drag-card p { color: var(--text-gray); font-size: 0.9rem; line-height: 1.5; }

/* CONCEPT V3 - EXPERIMENTAL */
.concept-v3 {
    background: #020202;
    overflow-x: hidden;
}

/* Background Imersivo */
.bg-mesh {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.05) 0%, transparent 40%);
    z-index: -2;
}

.bg-noise {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.2; contrast: 150%; brightness: 100%;
    z-index: -1; pointer-events: none; mix-blend-mode: overlay;
}

/* PÁGINA DE MÓDULOS */
.modules-hero { 
    padding: 180px 0 0; 
    position: relative;
    overflow: hidden;
}

.hero-modules-content {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-modules-content .badge-neon {
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.modules-hero .section-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
}

.hero-description {
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-description p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.hero-description .sub-text {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.modules-grid-section {
    padding-top: 2rem;
}

.modules-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding-top: 0;
}

/* Efeito de surgimento lento e individual */
.module-card-reveal {
    opacity: 0 !important;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(0.2, 0, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0, 0.2, 1);
    will-change: transform, opacity;
}

.module-card-reveal.visible {
    opacity: 1 !important;
    transform: translateY(0);
}

.pb-120 { padding-bottom: 120px; }

/* Otimização de Performance */
@keyframes pulseRotateLogo { 
    0% { opacity: 1; transform: scale(1) rotate(0deg); } 
    50% { opacity: 0.4; transform: scale(0.8) rotate(180deg); } 
    100% { opacity: 1; transform: scale(1) rotate(360deg); } 
}

.locked-symbol {
    width: 60px;
    opacity: 0.2;
    animation: pulseRotateLogo 6s infinite linear;
    will-change: transform, opacity;
}

.module-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    min-height: 450px; /* Altura padronizada */
    height: 100%;
}

/* Cards Ativos */
.module-card.active {
    border-color: rgba(168, 85, 247, 0.3);
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.05) 0%, transparent 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.module-card.active.waitlist {
    border-color: rgba(168, 85, 247, 0.2);
    border-style: dashed;
}

.module-card.active:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

/* Cards Bloqueados */
.module-card.locked {
    filter: grayscale(1);
}

.module-card.locked.visible {
    opacity: 0.6 !important; /* Opacidade após revelado */
}

.module-card.locked .module-card-content {
    opacity: 0;
    transition: opacity 0.4s;
}

.module-card.locked:hover {
    opacity: 1;
    filter: grayscale(0);
    border-color: var(--accent);
    background: rgba(168, 85, 247, 0.03);
    transform: translateY(-10px);
    box-shadow: 0 0 30px var(--accent-glow);
}

.module-card.locked:hover .module-card-content {
    opacity: 1;
}

.module-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.module-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -10px;
    right: 0;
}

.module-icon {
    width: 50px;
    height: 50px;
    color: var(--accent);
    margin-bottom: 2rem;
}

.module-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.module-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-module {
    padding: 0.8rem 1.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    transition: 0.3s;
}

.module-card.locked .btn-module { display: none; }

/* Overlay de Bloqueio */
.locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5,5,5,0.4);
    backdrop-filter: blur(2px);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: 0.4s;
}

.module-card.locked:hover .locked-overlay {
    opacity: 1; /* Mantém visível no hover */
}

.module-card.locked:hover .locked-symbol {
    opacity: 1;
    filter: drop-shadow(0 0 15px var(--accent));
}

.module-card.locked:hover .locked-overlay span {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

.locked-symbol {
    width: 60px;
    opacity: 0.2;
    animation: pulseRotateLogo 4s infinite ease-in-out;
}

.locked-overlay span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-gray);
}

/* MEDIA QUERIES ATUALIZADAS PARA RESPONSIVIDADE TOTAL */
@media (max-width: 1200px) {
    .container { padding: 0 1.5rem; }
    .hero-text h1 { font-size: 3.5rem; }
}

@media (max-width: 1024px) {
    .grid-hero { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-text { order: 1; display: flex; flex-direction: column; align-items: center; }
    .hero-visual-orbit { order: 2; width: 100%; height: 400px; transform: scale(0.8); margin: 0 auto; }
    .hero-text h1 { font-size: 3rem; }
    .hero-text p { margin: 0 auto 3rem; }
    
    .modules-grid-main { grid-template-columns: 1fr 1fr; }
    .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
    .sticky-text { position: static; min-height: auto; text-align: center; }
    
    .comparison-grid, .scrolling-wrapper, .chaos-grid { grid-template-columns: 1fr; }
    .manifesto-block, .manifesto-block.right { padding: 0; justify-content: center; }
    .timeline-guide { display: none; }
    .block-content { margin: 0; max-width: 100%; width: 100%; }
    .block-icon { display: none; }
}

@media (max-width: 900px) {
    .symbol-grid { grid-template-columns: 1fr; gap: 3rem; }
    .symbol-item.featured { transform: none !important; }
    .evolution-container { grid-template-columns: 1fr; gap: 2rem; }
    
    /* Novo Seletor em Pílula para a Jornada */
    .timeline-menu { 
        flex-direction: row; 
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.05);
        padding: 8px;
        border-radius: 100px;
        border: 1px solid rgba(168, 85, 247, 0.2);
        margin-bottom: 2rem;
        border-left: none;
    }
    
    .time-btn { 
        padding: 12px 0; 
        justify-content: center;
        flex: 1;
        border-radius: 100px;
        opacity: 0.6;
    }
    
    .time-btn.active {
        background: var(--accent) !important;
        opacity: 1;
        box-shadow: 0 0 20px var(--accent-glow);
    }

    .time-btn::before { display: none; }
    
    .phase-num { 
        font-size: 1.2rem; 
        color: white; 
        margin: 0;
    }
    
    .time-btn.active .phase-num { 
        color: white;
        text-shadow: none;
    }
    
    .phase-info { display: none; } /* Esconde textos extras no mobile */

    .holo-display {
        padding: 1.5rem;
        min-height: 350px;
    }

    .holo-header h3 { font-size: 1.5rem; }
    .main-stat { font-size: 1.1rem; }
    .holo-list li { font-size: 0.95rem; }
    
    .drag-grid { grid-template-columns: 1fr 1fr; }
    .carousel-3d-container { height: 450px; }
    .nav-btn.prev { left: 10px; }
    .nav-btn.next { right: 10px; }
    
    .footer-grid { flex-direction: column; text-align: center; gap: 3rem; }
    .footer-social { display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 768px) {
    header { top: 10px; width: 98%; }
    nav { padding: 0 1rem; }
    .logo img { height: 22px; }
    
    .header-cta { display: none; } /* Oculta o CTA da barra principal no mobile */
    
    .mobile-cta-item { 
        display: block; 
        width: 100%; 
        text-align: center;
        margin-top: 2rem;
        padding: 0 20px; /* Respiro nas bordas */
    }
    
    .mobile-cta-item .btn-glow-header {
        display: inline-block !important;
        padding: 0.8rem 1.8rem;
        background: linear-gradient(135deg, var(--accent), #7c3aed);
        color: white;
        text-decoration: none;
        font-weight: 700;
        border-radius: 50px;
        font-size: 0.9rem;
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: auto; /* Garante que não estique */
        max-width: 280px;
    }
    
    .mobile-menu-btn { 
        display: block !important; 
        z-index: 101; 
        font-size: 1.5rem; 
        order: 3; 
        cursor: pointer;
        color: white;
    }
    
    /* Ajuste Glitch Global Mobile */
    .glitch-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .glitch-title::before, .glitch-title::after {
        content: attr(data-text);
        animation-duration: 3s; /* Mais lento para não travar */
    }

    .mobile-menu-btn { display: block; z-index: 101; font-size: 1.5rem; order: 3; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
        background: rgba(5,5,5,0.98); backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center; align-items: center;
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1); z-index: 99;
        border-left: 1px solid var(--glass-border); gap: 3rem;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.2rem; }
    
    .hero-text h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .modules-grid-main { grid-template-columns: 1fr; }
    
    /* Manifesto Mobile */
    #manifestoDragContainer {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0;
    }

    .manifesto-card {
        padding: 2rem 1.5rem;
        width: 100% !important;
    }
    
    .drag-grid { 
        grid-template-columns: 1fr; 
        width: 100%;
    }
    
    .manifesto-cta-card { padding: 3rem 1.5rem; border-radius: 20px; }
    .final-headline { font-size: 1.8rem; }
    
    .bg-text-outline { display: none; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 2.2rem; }
    .hero-visual-orbit { transform: scale(0.6); height: 300px; }
    
    .module-card { 
        min-height: 400px !important; /* Altura padronizada para todos os cards */
        padding: 2.5rem 1.5rem; 
        display: flex;
        flex-direction: column;
    }

    .module-card.locked {
        filter: grayscale(0); /* Remove o cinza total para o roxo brilhar melhor */
        opacity: 0.8 !important;
    }

    .module-card.locked .locked-overlay {
        opacity: 1 !important;
        background: rgba(168, 85, 247, 0.02); /* Tom levemente roxo de fundo */
    }

    .module-card.locked .locked-symbol {
        opacity: 0.6;
        width: 80px;
    }

    .module-card.locked .locked-overlay span {
        color: var(--text-gray);
        font-size: 0.8rem;
    }
    
    .block-content { padding: 1.5rem; }
    .block-content h3 { font-size: 1.4rem; }
    
    /* Correção Espaçamento e Setas Cards Sobre */
    .meanings-section {
        padding: 40px 0 100px; /* Aumentado padding inferior para as setas */
    }
    
    .carousel-3d-container {
        width: 100%;
        max-width: 100%;
        height: 450px;
    }

    .meaning-card { 
        padding: 3rem 1.5rem; 
        width: 90%;
        left: 5%;
    }

    /* Move as setas para baixo do card no mobile */
    .nav-btn {
        top: auto;
        bottom: -60px;
        transform: none;
        width: 45px;
        height: 45px;
    }

    .nav-btn.prev { left: 30%; }
    .nav-btn.next { right: 30%; }
    
    .meaning-card h2 { font-size: 1.3rem; }

    /* Reativação e Ajuste Glitch Title Mobile */
    .glitch-title,
    .modules-hero .section-title {
        font-size: 2.2rem !important;
        width: 100%;
        display: block;
        position: relative;
        text-align: center;
        line-height: 1.2;
    }
    
    .glitch-title::before, .glitch-title::after {
        display: block;
        width: 100%;
        left: 0;
        text-align: center;
        /* Removido o clip fixo para permitir que as keyframes funcionem */
    }

    /* Loader Blog Mobile */
    .coming-soon-container {
        padding-top: 140px; 
        align-items: flex-start;
    }
}
