/* --- DESIGN SYSTEM & RESET --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary: #07080d;
    --bg-secondary: #0f111a;
    --bg-card: rgba(18, 22, 35, 0.65);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(50, 188, 173, 0.2);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --pix-cyan: #32BCAD;
    --pix-cyan-glow: rgba(50, 188, 173, 0.4);
    --neon-indigo: #6366f1;
    --neon-purple: #8b5cf6;
    --neon-purple-glow: rgba(139, 92, 246, 0.4);
    --neon-rose: #f43f5e;
    
    --primary-gradient: linear-gradient(135deg, #32BCAD 0%, #4f46e5 50%, #8b5cf6 100%);
    --accent-gradient: linear-gradient(135deg, #a855f7 0%, #f43f5e 100%);
    --dark-gradient: linear-gradient(180deg, #121625 0%, #07080d 100%);
    
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --container-width: 1200px;
}

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

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

/* --- GLOW BACKGROUND EFFECTS --- */
.glow-bg-1, .glow-bg-2, .glow-bg-3 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.45;
    animation: float-glow 25s infinite alternate ease-in-out;
}

.glow-bg-1 {
    background: radial-gradient(circle, var(--pix-cyan-glow) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.glow-bg-2 {
    background: radial-gradient(circle, var(--neon-purple-glow) 0%, transparent 70%);
    top: 30%;
    left: -200px;
    animation-delay: -5s;
}

.glow-bg-3 {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
    bottom: 10%;
    right: -100px;
    animation-delay: -10s;
}

@keyframes float-glow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 80px) scale(1.1); }
    100% { transform: translate(-30px, -50px) scale(0.9); }
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* --- REUSABLE COMPONENTS & UTILITIES --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hidden {
    display: none !important;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(50, 188, 173, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(50, 188, 173, 0.4), 0 0 15px rgba(139, 92, 246, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.btn-accent {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(244, 63, 94, 0.25);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(244, 63, 94, 0.4), 0 0 15px rgba(168, 85, 247, 0.2);
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    transition: var(--transition-normal);
}

.btn-glow:hover::after {
    opacity: 0.65;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 8px;
}

/* --- HEADER / NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(7, 8, 13, 0.75);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.navbar.scrolled .nav-container {
    padding: 0.9rem 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.6rem;
    animation: pulse 2s infinite ease-in-out;
}

.logo-accent {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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

.badge-new {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    background: var(--accent-gradient);
    color: #fff;
    padding: 0.15rem 0.4rem;
    border-radius: 20px;
    position: absolute;
    top: -12px;
    right: -28px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero-section {
    padding-top: 10rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
}

/* --- PREVIEW MOCKUP PREVIEW (HERO RIGHT) --- */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.widget-wrapper {
    width: 100%;
    max-width: 420px;
    position: relative;
}

/* Glass Creator Card Mockup */
.creator-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(50, 188, 173, 0.05);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.creator-profile {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.creator-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
}

.avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed var(--pix-cyan);
    animation: rotate 15s linear infinite;
}

.avatar-emoji {
    font-size: 2rem;
    z-index: 2;
}

.creator-name {
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.verified-badge {
    color: var(--pix-cyan);
    display: flex;
    align-items: center;
}

.verified-badge svg {
    width: 16px;
    height: 16px;
    fill: rgba(50, 188, 173, 0.1);
}

.creator-bio {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.preview-tag-badge {
    display: inline-block;
    background: rgba(50, 188, 173, 0.1);
    color: var(--pix-cyan);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Dashboard List Mockup in Hero Card */
.dashboard-preview-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.sim-payment-row {
    display: flex;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    transition: var(--transition-fast);
}

.sim-payment-row:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.sim-payment-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(50, 188, 173, 0.1);
    color: var(--pix-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sim-payment-icon svg {
    width: 16px;
    height: 16px;
}

.sim-payment-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sim-payment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.15rem;
}

.sim-donator {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.sim-val {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pix-cyan);
}

.sim-msg {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Floating badges surrounding card */
.floating-badge {
    position: absolute;
    background: rgba(18, 22, 35, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 0.65rem 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 12;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.floating-badge svg {
    color: var(--pix-cyan);
    width: 20px;
    height: 20px;
}

.badge-top-right {
    top: 15%;
    right: -2.5rem;
    animation: float-badge 6s infinite alternate ease-in-out;
}

.badge-bottom-left {
    bottom: 12%;
    left: -2.5rem;
    animation: float-badge 6s infinite alternate ease-in-out;
    animation-delay: -3s;
}

.badge-title {
    display: block;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.85rem;
}

.badge-desc {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

@keyframes float-badge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

/* --- RECURSOS (FEATURES) --- */
.features-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem auto;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 188, 173, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(50, 188, 173, 0.05);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(50, 188, 173, 0.1);
    color: var(--pix-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--pix-cyan);
    color: #fff;
    box-shadow: 0 0 15px var(--pix-cyan-glow);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

/* --- COMO FUNCIONA (HOW IT WORKS) --- */
.how-it-works {
    padding: 6rem 0;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition-normal);
}

.step-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.3rem;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.step-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.step-arrow {
    color: var(--text-muted);
    animation: walk 2s infinite ease-in-out;
}

@keyframes walk {
    0% { transform: translateX(0); }
    50% { transform: translateX(6px); }
    100% { transform: translateX(0); }
}

/* --- TEASER SECTION (THE MYSTERY FEATURE) --- */
.teaser-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.teaser-glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-gradient);
    filter: blur(120px);
    right: 15%;
    top: 25%;
    z-index: 1;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.teaser-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.teaser-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.teaser-badge .badge-text {
    color: var(--neon-purple);
}

.teaser-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.teaser-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.teaser-details {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.teaser-quote {
    font-style: italic;
    color: var(--text-muted);
    border-left: 2px solid var(--neon-purple);
    padding-left: 1rem;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

/* Waitlist Box Styling */
.waitlist-box {
    background: rgba(15, 17, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.waitlist-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
}

.waitlist-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.waitlist-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.waitlist-form {
    display: flex;
    gap: 0.75rem;
}

.input-glow-group {
    position: relative;
    flex: 1;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
}

#waitlist-email {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.85rem 1rem 0.85rem 2.8rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

#waitlist-email:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.25);
    background: rgba(0, 0, 0, 0.4);
}

/* Success State Waitlist */
.waitlist-success-msg {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(50, 188, 173, 0.08);
    border: 1px solid rgba(50, 188, 173, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    animation: fadeIn var(--transition-normal);
}

.success-icon {
    font-size: 1.8rem;
    color: var(--pix-cyan);
    animation: bounce 1.5s infinite ease-in-out;
}

.waitlist-success-msg h5 {
    font-size: 1rem;
    color: var(--pix-cyan);
    margin-bottom: 0.25rem;
}

.waitlist-success-msg p {
    margin-bottom: 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Teaser Sphere visual */
.teaser-visual {
    display: flex;
    justify-content: center;
}

.mystery-sphere-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mystery-sphere {
    position: relative;
    width: 200px;
    height: 200px;
    cursor: pointer;
}

.sphere-core {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #a855f7 0%, #07080d 80%, #f43f5e 100%);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.4), inset -10px -10px 30px rgba(0, 0, 0, 0.8);
    animation: pulse 4s infinite ease-in-out alternate;
}

.sphere-ring-1, .sphere-ring-2, .sphere-ring-3 {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
}

.sphere-ring-1 {
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.1);
    animation: orbit1 10s linear infinite;
}

.sphere-ring-2 {
    border-color: rgba(244, 63, 94, 0.35);
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.1);
    animation: orbit2 12s linear infinite;
}

.sphere-ring-3 {
    border-color: rgba(50, 188, 173, 0.35);
    box-shadow: 0 0 15px rgba(50, 188, 173, 0.1);
    animation: orbit3 15s linear infinite;
}

@keyframes orbit1 {
    0% { transform: rotateX(35deg) rotateY(45deg) rotateZ(0deg); }
    100% { transform: rotateX(35deg) rotateY(45deg) rotateZ(360deg); }
}

@keyframes orbit2 {
    0% { transform: rotateX(45deg) rotateY(-45deg) rotateZ(0deg); }
    100% { transform: rotateX(45deg) rotateY(-45deg) rotateZ(360deg); }
}

@keyframes orbit3 {
    0% { transform: rotateX(-35deg) rotateY(30deg) rotateZ(0deg); }
    100% { transform: rotateX(-35deg) rotateY(30deg) rotateZ(-360deg); }
}

.mystery-overlay-text {
    position: absolute;
    bottom: -10px;
    background: rgba(7, 8, 13, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.mystery-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--neon-purple);
    letter-spacing: 0.1em;
}

.mystery-overlay-text h3 {
    font-size: 0.95rem;
    margin-top: 0.15rem;
    font-weight: 700;
}

.mystery-dots {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    margin-top: 0.4rem;
}

.mystery-dots .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--text-muted);
}

.mystery-dots .dot.active {
    background-color: var(--neon-purple);
    box-shadow: 0 0 5px var(--neon-purple);
    animation: flash 1s infinite alternate;
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 6rem 0;
}

.faq-accordion-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.faq-icon {
    color: var(--text-muted);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active {
    border-color: rgba(50, 188, 173, 0.25);
    background: rgba(18, 22, 35, 0.4);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--pix-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer p strong {
    color: var(--text-primary);
}

/* --- FINAL CTA SECTION --- */
.final-cta {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #0f111a 100%);
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.final-cta-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
}

/* --- FOOTER --- */
.footer {
    background-color: #040508;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem 0;
}

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

.footer-brand .nav-logo {
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 340px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.social-links a:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
}

.social-links a svg {
    width: 18px;
    height: 18px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-group a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links-group a:hover {
    color: var(--text-primary);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- ANIMATIONS --- */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes flash {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

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

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

/* --- RESPONSIVIDADE (MEDIA QUERIES) --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        animation: walk-down 2s infinite ease-in-out;
    }
    
    @keyframes walk-down {
        0% { transform: rotate(90deg) translateX(0); }
        50% { transform: rotate(90deg) translateX(6px); }
        100% { transform: rotate(90deg) translateX(0); }
    }
    
    .teaser-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }
    
    .nav-menu.open {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-actions .btn:not(.mobile-toggle) {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .waitlist-form {
        flex-direction: column;
    }
}
