:root {
    --bg-color: #0a0a0f;
    --surface-color: rgba(255, 255, 255, 0.03);
    --surface-border: rgba(255, 255, 255, 0.08);
    --primary-color: #8b5cf6; /* Neon Purple */
    --primary-hover: #7c3aed;
    --secondary-color: #3b82f6; /* Neon Blue */
    --accent-color: #06b6d4; /* Cyan accent */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-blur: blur(12px);
    --glow-primary: 0 0 25px rgba(139, 92, 246, 0.45);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #08080c;
    background-image: 
        radial-gradient(rgba(139, 92, 246, 0.12) 1px, transparent 1px),
        radial-gradient(rgba(59, 130, 246, 0.07) 1px, transparent 1px);
    background-size: 36px 36px, 72px 72px;
    background-position: 0 0, 18px 18px;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Typography */
h1, h2, h3, .logo-text, .price {
    font-family: 'Outfit', sans-serif;
}

/* Organic Ambient Light Mesh (Substitui as manchas genéricas de IA) */
.bg-shape {
    position: fixed;
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
    opacity: 0.35;
    filter: blur(140px);
}

.bg-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: -150px;
    left: -150px;
}

.bg-shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    top: 40%;
    right: -120px;
}

.bg-shape-3 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    bottom: 5%;
    left: 15%;
    opacity: 0.2;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Elementos de Divisão e Estilização Humana */
.section-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3.5rem auto;
    max-width: 1000px;
    opacity: 0.95;
    height: 40px;
    overflow: visible;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.45), transparent);
}

.divider-badge {
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

/* Dragãozinho Boss Limpo no centro da linha (Patas alinhadas perfeitamente SOBRE a linha) */
.divider-dragon-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    z-index: 5;
    transform: translateY(-24px); /* Eleva o dragão para as patas assentarem EXATAMENTE sobre a linha do robô */
    width: 90px;
    height: 68px;
    flex-shrink: 0;
}

.divider-dragon-svg {
    width: 90px !important;
    height: 68px !important;
    max-width: 90px !important;
    max-height: 68px !important;
    flex-shrink: 0;
    filter: drop-shadow(0 0 16px rgba(239, 68, 68, 0.8));
    overflow: visible;
}

/* Animações das asas e cabeça do Dragão Boss */
.dragon-wing-front, .dragon-wing-back {
    animation: dragon-wing-flap 0.45s ease-in-out infinite alternate;
    transform-origin: 20px 22px;
}

@keyframes dragon-wing-flap {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-22deg); }
}

.dragon-head {
    animation: dragon-head-fire-prep 0.9s ease-in-out infinite alternate;
    transform-origin: 20px 20px;
}

@keyframes dragon-head-fire-prep {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-2px) rotate(4deg); }
}

/* Jato de Fogo Cuspindo (Fire Breath Blast) */
.dragon-fire-breath {
    animation: dragon-spit-fire 1.8s ease-in-out infinite;
    transform-origin: 30px 19px;
}

@keyframes dragon-spit-fire {
    0% {
        opacity: 0;
        transform: scale(0.2) translateX(-4px);
    }
    20% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    45% {
        opacity: 1;
        transform: scale(1.3) translateX(3px);
        filter: drop-shadow(0 0 10px #f97316);
    }
    70% {
        opacity: 0.85;
        transform: scale(0.9) translateX(5px);
    }
    85%, 100% {
        opacity: 0;
        transform: scale(0.2) translateX(8px);
    }
}

.fire-spark-1 { animation: spark-float-1 0.9s linear infinite; }
.fire-spark-2 { animation: spark-float-2 0.9s linear infinite 0.3s; }
.fire-spark-3 { animation: spark-float-3 0.9s linear infinite 0.6s; }

@keyframes spark-float-1 {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(8px, -4px) scale(0); opacity: 0; }
}

@keyframes spark-float-2 {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(10px, 3px) scale(0); opacity: 0; }
}

@keyframes spark-float-3 {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(6px, -2px) scale(0); opacity: 0; }
}

/* Robô Caminhando e Skippando o Boss Dragão */
.divider-walking-robot {
    position: absolute;
    bottom: 18px;
    width: 36px;
    height: 42px;
    pointer-events: none;
    z-index: 10;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.7));
    animation: robot-walk-and-jump 7.5s linear infinite;
}

.divider-robot-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Fogo do Jetpack ativado durante o Pulo Longo */
.robot-jetpack-flame {
    animation: jetpack-flame-boost 7.5s linear infinite;
    transform-origin: 24px 30px;
}

@keyframes jetpack-flame-boost {
    0%, 36% {
        opacity: 0;
        transform: scale(0.3);
    }
    40% {
        opacity: 1;
        transform: scale(1.4);
    }
    48% {
        opacity: 1;
        transform: scale(1.8);
    }
    55% {
        opacity: 0.85;
        transform: scale(1.2);
    }
    60%, 100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Ciclo de caminhada (pernas e braços) */
.divider-walking-robot .divider-robot-leg-front,
.divider-walking-robot .divider-robot-arm-back {
    animation: walk-limb-swing-a 0.35s ease-in-out infinite alternate;
    transform-origin: 18px 25px;
}

.divider-walking-robot .divider-robot-leg-back,
.divider-walking-robot .divider-robot-arm-front {
    animation: walk-limb-swing-b 0.35s ease-in-out infinite alternate;
    transform-origin: 20px 25px;
}

.divider-walking-robot .divider-robot-body {
    animation: walk-body-bounce 0.35s ease-in-out infinite alternate;
    transform-origin: 20px 20px;
}

@keyframes walk-limb-swing-a {
    0% { transform: rotate(-22deg); }
    100% { transform: rotate(22deg); }
}

@keyframes walk-limb-swing-b {
    0% { transform: rotate(22deg); }
    100% { transform: rotate(-22deg); }
}

@keyframes walk-body-bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-1.5px); }
}

/* Animação Principal: Robô Caminha e Dá Salto Épico Longo de Jetpack sem Colidir com o Dragão */
@keyframes robot-walk-and-jump {
    0% {
        left: 95%;
        transform: translateY(0) rotate(0deg);
    }
    35% {
        left: 62%;
        transform: translateY(0) rotate(0deg);
    }
    /* Decolagem Antecipada do Jetpack (Passa bem longe do fogo e da ponta da asa) */
    40% {
        left: 57%;
        transform: translateY(-30px) rotate(-22deg);
    }
    48% {
        left: 49%;
        transform: translateY(-68px) rotate(0deg);
    }
    55% {
        left: 41%;
        transform: translateY(-30px) rotate(22deg);
    }
    60% {
        left: 36%;
        transform: translateY(0) rotate(0deg);
    }
    100% {
        left: 2%;
        transform: translateY(0) rotate(0deg);
    }
}

/* Deslocamento de tempo entre os divisores */
.section-divider:nth-of-type(1) .divider-walking-robot,
.section-divider:nth-of-type(1) .robot-jetpack-flame {
    animation-delay: 0s;
}

.section-divider:nth-of-type(2) .divider-walking-robot,
.section-divider:nth-of-type(2) .robot-jetpack-flame {
    animation-delay: -2.5s;
}

.section-divider:nth-of-type(3) .divider-walking-robot,
.section-divider:nth-of-type(3) .robot-jetpack-flame {
    animation-delay: -5s;
}

/* Human Crafted Glassmorphism */
.glass-panel {
    position: relative;
    background: linear-gradient(160deg, rgba(20, 24, 38, 0.75) 0%, rgba(11, 13, 22, 0.85) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
    pointer-events: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--surface-border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
    vertical-align: middle !important;
    line-height: 1 !important;
}

.logo:hover, .logo:focus, .logo:active {
    text-decoration: none !important;
}

.logo-img {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
    object-fit: contain !important;
    display: block !important;
    flex-shrink: 0 !important;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
    transition: transform 0.3s ease;
    margin: 0 !important;
}

.logo:hover .logo-img {
    transform: scale(1.08) rotate(3deg);
}

.logo-img-sm {
    width: 30px !important;
    height: 30px !important;
    object-fit: contain !important;
    border-radius: 6px;
}

.logo-text {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: var(--text-main) !important;
    white-space: nowrap !important;
    display: inline-block !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-decoration: none !important;
}

.highlight {
    color: var(--primary-color);
    background: linear-gradient(135deg, #a78bfa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a:not(.btn) {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

/* Mobile Hamburger Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-main);
    border-radius: 4px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8.75px) rotate(45deg);
    background-color: var(--primary-color);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8.75px) rotate(-45deg);
    background-color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-chrome-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), #6d28d9);
    box-shadow: var(--glow-primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--surface-border);
}

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

.pulse-btn {
    animation: pulse 2.5s infinite;
}

.glow-effect {
    box-shadow: var(--glow-primary);
}

.full-width {
    width: 100%;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(139, 92, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 4rem;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    background: rgba(139, 92, 246, 0.12);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.badge-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
}

.hero h1 {
    font-size: 3.4rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

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

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Hero Animated Logo Card */
.hero-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-card {
    position: relative;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(139, 92, 246, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.15);
    overflow: hidden;
}

.hero-animated-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.8));
    animation: floatLogo 4s ease-in-out infinite alternate, pulseGlow 3s ease-in-out infinite alternate;
}

@keyframes floatLogo {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulseGlow {
    0% { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6)); }
    100% { filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.9)); }
}

.logo-glow-ring {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(59, 130, 246, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.logo-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 1.5rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.logo-card-subtitle {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* Features Section */
.features {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

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

.feature-card {
    padding: 2.5rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

/* Modules Section */
.modulos {
    padding: 6rem 0;
}

.modulos-filter {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.65rem 1.4rem;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--surface-border);
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
}

.modulos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.module-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(16, 16, 24, 0.85);
    border: 1px solid var(--surface-border);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.module-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(139, 92, 246, 0.2);
}

.module-card.hidden {
    display: none !important;
}

/* Window Mockup Top Bar */
.window-mockup-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    background: rgba(10, 10, 15, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.window-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.window-title-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: monospace;
}

/* Screenshot Container */
.module-img-container {
    position: relative;
    width: 100%;
    min-height: 230px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.12) 0%, rgba(10, 10, 15, 0.95) 85%);
    border-bottom: 1px solid var(--surface-border);
}

.module-img {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    border-radius: 8px;
    filter: brightness(1.08) contrast(1.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 1px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.module-card:hover .module-img {
    transform: scale(1.03);
}

/* Content Area */
.module-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
    background: rgba(14, 14, 20, 0.6);
}

.module-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 0.25rem 0.7rem;
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-content h3 {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 700;
}

.module-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    display: flex;
    justify-content: center;
}

.pricing-card {
    width: 100%;
    max-width: 480px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.badge-pricing {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--surface-border);
}

.pricing-header h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.amount {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(to bottom, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cents {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-size: 0.95rem;
}

.check {
    color: #34d399;
    font-weight: bold;
}

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

.secure-text {
    display: block;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--surface-border);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
footer {
    border-top: 1px solid var(--surface-border);
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.4);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-main);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .badge {
        margin: 0 auto 1.5rem auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .feature-grid,
    .modulos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

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

    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }

    .features, .modulos, .pricing, .faq {
        padding: 3rem 0 !important;
    }

    .section-title {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        word-break: break-word;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    .navbar {
        padding: 0.6rem 0;
    }

    .nav-content {
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 11, 20, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid rgba(139, 92, 246, 0.3);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.8rem;
        padding: 2.5rem 1.5rem;
        z-index: 1000;
        box-shadow: -15px 0 50px rgba(0, 0, 0, 0.85);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.mobile-active {
        right: 0;
    }

    .nav-links a:not(.btn) {
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--text-main);
    }

    .nav-links .nav-webstore-btn {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero {
        padding-top: 90px !important;
        padding-bottom: 2.5rem !important;
        min-height: auto !important;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.25;
        word-break: break-word;
    }

    .hero p {
        font-size: 0.92rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.8rem 0.85rem;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .hero-logo-card {
        padding: 1.8rem 1.25rem;
        max-width: 290px;
        margin: 1.25rem auto 0 auto;
    }

    .hero-animated-logo {
        width: 110px;
        height: 110px;
    }

    .logo-card-title {
        font-size: 1.2rem;
    }

    /* Modules Filter bar touch scroll on mobile */
    .modulos-filters {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
        margin-bottom: 1.75rem;
        width: 100%;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.85rem;
        border-radius: 20px;
    }

    .modulos-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        width: 100%;
    }

    .module-card {
        width: 100%;
    }

    .module-img-container {
        min-height: 170px;
        padding: 0.75rem;
    }

    .module-img {
        max-height: 200px;
    }

    .module-content {
        padding: 1.15rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    /* Pricing Card on Mobile */
    .pricing-card {
        padding: 1.75rem 1rem;
        max-width: 100%;
    }

    .pricing-header h2 {
        font-size: 1.35rem;
    }

    .price .amount {
        font-size: 2.8rem;
    }

    .price .currency, .price .cents {
        font-size: 1.1rem;
    }

    .scarcity-alert {
        font-size: 0.82rem;
        padding: 0.75rem;
    }

    .feature-list li {
        font-size: 0.88rem;
    }

    .pricing-actions .btn {
        font-size: 0.88rem;
        padding: 0.85rem 0.75rem;
        word-break: break-word;
        width: 100%;
    }

    .accordion-header {
        font-size: 0.9rem;
        padding: 0.9rem 1rem;
    }

    .accordion-content p {
        font-size: 0.85rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.55rem;
    }

    .section-title h2 {
        font-size: 1.4rem;
    }

    .btn-chrome-icon {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }

    .hero-actions .btn {
        font-size: 0.85rem;
        padding: 0.75rem 0.6rem;
    }

    .pricing-card {
        padding: 1.5rem 0.85rem;
    }
}

/* Scroll Ladder & Climbing Robot Widget */
.scroll-ladder-widget {
    position: fixed;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 88vh;
    z-index: 999;
    pointer-events: none;
    background: transparent !important;
    user-select: none;
}

.scroll-ladder-svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}

.scroll-climbing-robot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 44px;
    height: 48px;
    will-change: transform;
    pointer-events: none;
    transition: transform 0.06s ease-out;
}

.scroll-robot-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
}

/* Limb Climbing Animations (Active only during scroll) */
.scroll-climbing-robot.is-climbing .scroll-robot-arm-left,
.scroll-climbing-robot.is-climbing .scroll-robot-leg-right {
    animation: climb-limb-a 260ms ease-in-out infinite alternate;
    transform-origin: center;
}

.scroll-climbing-robot.is-climbing .scroll-robot-arm-right,
.scroll-climbing-robot.is-climbing .scroll-robot-leg-left {
    animation: climb-limb-b 260ms ease-in-out infinite alternate;
    transform-origin: center;
}

.scroll-climbing-robot.is-climbing .scroll-robot-body {
    animation: climb-body-sway 260ms ease-in-out infinite alternate;
    transform-origin: center;
}

@keyframes climb-limb-a {
    0% { transform: translateY(-3px) rotate(-5deg); }
    100% { transform: translateY(3px) rotate(5deg); }
}

@keyframes climb-limb-b {
    0% { transform: translateY(3px) rotate(5deg); }
    100% { transform: translateY(-3px) rotate(-5deg); }
}

@keyframes climb-body-sway {
    0% { transform: translateX(-1px) rotate(-1.5deg); }
    100% { transform: translateX(1px) rotate(1.5deg); }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .scroll-climbing-robot.is-climbing .scroll-robot-arm-left,
    .scroll-climbing-robot.is-climbing .scroll-robot-leg-right,
    .scroll-climbing-robot.is-climbing .scroll-robot-arm-right,
    .scroll-climbing-robot.is-climbing .scroll-robot-leg-left,
    .scroll-climbing-robot.is-climbing .scroll-robot-body {
        animation: none !important;
    }
}

/* Responsiveness for Scroll Ladder Widget */
@media (max-width: 600px) {
    .scroll-ladder-widget {
        width: 28px;
        height: 52vh;
        right: 0px;
        opacity: 0.75;
    }

    .scroll-climbing-robot {
        width: 30px;
        height: 34px;
    }

    .divider-dragon-svg {
        width: 70px;
        height: 52px;
    }
}

/* ==========================================================================
   Modal Simples de Ampliação de Imagens dos Módulos
   ========================================================================== */
.module-img-container {
    cursor: pointer;
}

.module-img-container::after {
    content: "🔍 Clique para ampliar";
    position: absolute;
    bottom: 12px;
    right: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #e2e8f0;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 99px;
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.25s ease;
    pointer-events: none;
    z-index: 5;
}

.module-card:hover .module-img-container::after {
    opacity: 1;
    transform: translateY(0);
}

.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 20, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.95);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(139, 92, 246, 0.25);
    cursor: pointer;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -10px;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease, color 0.2s ease;
}

.lightbox-close:hover {
    color: #ef4444;
    transform: scale(1.2);
}

@media (max-width: 600px) {
    .lightbox-content img {
        max-width: 94vw;
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: -35px;
        right: 0;
    }
}





