/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --success: #10b981;
    --warning: #f59e0b;
    --bg-dark: #0f0f23;
    --bg-darker: #050510;
    --bg-card: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border: #27272a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Gradient Background */
.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(15, 15, 35, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    animation: slideDown 0.6s ease-out;
}

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

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.6));
    transform: scale(1.05);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a:not(.btn-nav-download)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-nav-download):hover::after {
    width: 100%;
}

.btn-nav-download {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 0.5rem;
    color: white !important;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-nav-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 2rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

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

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Hero Mockup - Nova animação ESPETACULAR */
.hero-image-container {
    position: relative;
    z-index: 2;
    padding: 2rem;
    animation: fadeInUp 0.8s ease-out 0.7s both;
    min-height: 600px;
}

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    perspective: 2000px;
    position: relative;
    height: 600px;
}

/* Partículas flutuantes */
.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #3b82f6, transparent);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 70%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.particle:nth-child(3) {
    left: 30%;
    top: 80%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.particle:nth-child(4) {
    left: 80%;
    top: 30%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.particle:nth-child(5) {
    left: 50%;
    top: 50%;
    animation-delay: 3s;
    animation-duration: 15s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) scale(1.5);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 20px) scale(1);
        opacity: 0.5;
    }
    75% {
        transform: translate(20px, 30px) scale(1.2);
        opacity: 0.7;
    }
}

/* Linha de conexão animada */
.connection-line {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.8;
    z-index: 1;
}

.connection-path {
    stroke-dasharray: 10, 5;
    animation: dashFlow 2s linear infinite;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
}

@keyframes dashFlow {
    to {
        stroke-dashoffset: -20;
    }
}

.data-pulse {
    filter: drop-shadow(0 0 8px currentColor);
}

/* Base para os mockups */
.app-mockup {
    position: absolute;
    background: rgba(15, 20, 25, 0.95);
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
    backdrop-filter: blur(20px);
    animation: float 8s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.app-mockup:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(59, 130, 246, 0.3);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotateX(5deg);
    }
    50% {
        transform: translateY(-15px) rotateX(5deg);
    }
}

/* Electron App */
.electron-app {
    width: 520px;
    height: 500px;
    top: 50px;
    left: 0;
    animation-delay: 0s;
}

/* Extension Mockup */
.extension-mockup {
    width: 400px;
    height: 550px;
    top: 20px;
    right: 50px;
    animation-delay: 0.5s;
    z-index: 2;
}

/* Mockup Header */
.mockup-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    gap: 1rem;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) {
    background: #ff5f57;
    box-shadow: 0 0 8px rgba(255, 95, 87, 0.5);
}

.mockup-dots span:nth-child(2) {
    background: #febc2e;
    box-shadow: 0 0 8px rgba(254, 188, 46, 0.5);
}

.mockup-dots span:nth-child(3) {
    background: #28c840;
    box-shadow: 0 0 8px rgba(40, 200, 64, 0.5);
}

.mockup-title {
    flex: 1;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
}

.extension-badge {
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mockup Content */
.mockup-content {
    display: flex;
    height: calc(100% - 40px);
    background: #0f1419;
}

/* App Sidebar */
.app-sidebar {
    width: 60px;
    background: rgba(15, 20, 25, 0.95);
    border-right: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: 0.5rem;
}

.sidebar-brand {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

.brand-icon svg {
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
}

.sidebar-item {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.sidebar-item:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateX(3px);
}

.sidebar-item.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.sidebar-item.active::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
}

.sidebar-icon {
    font-size: 1.2rem;
}

/* App Main Content */
.app-main {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.app-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.app-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

.app-badge.running {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

/* Automation Grid */
.automation-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.automation-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.automation-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.card-header {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    align-items: center;
}

.card-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.card-status.running {
    background: #3b82f6;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

.card-status.completed {
    background: #10B981;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
}

.card-info {
    flex: 1;
}

.card-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.4rem;
}

.card-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
    animation: progressGlow 2s ease-in-out infinite;
    transition: width 1s ease;
}

.progress-bar.completed {
    background: linear-gradient(90deg, #10B981, #059669);
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
    }
}

.card-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.stat-glow {
    color: #3b82f6;
    font-weight: 600;
    animation: textGlow 2s ease-in-out infinite;
}

.stat-success {
    color: #10B981;
    font-weight: 600;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
    }
}

/* Video Preview Grid */
.video-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.video-preview {
    aspect-ratio: 16/9;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-preview.generating {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
}

.video-preview.ready {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.video-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(59, 130, 246, 0.3);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    opacity: 0.3;
}

.video-label {
    position: absolute;
    bottom: 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Extension Content */
.extension-content {
    flex-direction: column !important;
    padding: 1.25rem;
}

.extension-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    margin-bottom: 1rem;
}

.extension-logo svg {
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.5));
}

.extension-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.extension-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.extension-tab {
    flex: 1;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.extension-tab.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Extension Form */
.extension-form {
    margin-bottom: 1rem;
}

.form-section {
    margin-bottom: 1rem;
}

.form-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.75rem;
    color: white;
    min-height: 60px;
    position: relative;
}

.typing-animation {
    overflow: hidden;
}

.typing-text {
    display: inline-block;
    animation: typeText 4s steps(40) infinite;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
}

@keyframes typeText {
    0%, 100% {
        width: 0;
    }
    50%, 90% {
        width: 100%;
    }
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 12px;
    background: #3b82f6;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 6px;
    font-size: 0.7rem;
    color: #10B981;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
}

.status-dot.pulsing {
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
}

.extension-button {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.extension-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

/* Extension Queue */
.extension-queue {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 8px;
    padding: 0.75rem;
}

.queue-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.queue-count {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.65rem;
}

.queue-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.queue-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.queue-item.sending {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.05);
}

.queue-item.pending {
    opacity: 0.6;
}

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

.queue-info {
    flex: 1;
    min-width: 0;
}

.queue-name {
    font-size: 0.7rem;
    color: white;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 0.25rem;
}

.queue-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-small {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
    animation: progressGlow 2s ease-in-out infinite;
    transition: width 0.5s ease;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(59, 130, 246, 0.2);
    animation: floatBadge 6s ease-in-out infinite;
    z-index: 10;
}

.floating-badge svg {
    flex-shrink: 0;
}

.badge-1 {
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.badge-2 {
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Features Section */
.features {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 2rem;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 1rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    flex-shrink: 0;
}

/* How It Works */
.how-it-works {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03), transparent);
}

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 5rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid rgba(99, 102, 241, 0.3);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* CTA Box */
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1.5rem;
    flex-wrap: wrap;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Tutorial Section */
.tutorial {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.02), transparent);
    position: relative;
}

.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tutorial-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 1.5rem;
    transition: all 0.4s ease;
}

.tutorial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.tutorial-card.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.tutorial-number {
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.25rem;
    color: white;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.tutorial-icon-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.tutorial-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
}

.tutorial-card:hover .tutorial-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
}

.tutorial-icon.chrome {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.15));
    border-color: rgba(59, 130, 246, 0.4);
}

.tutorial-icon.app {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(124, 58, 237, 0.15));
    border-color: rgba(139, 92, 246, 0.4);
    color: var(--secondary);
}

.tutorial-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-align: center;
}

.tutorial-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tutorial-description strong {
    color: white;
    font-weight: 600;
}

.highlight {
    padding: 0.15rem 0.5rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 4px;
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-mono), monospace;
    font-size: 0.9em;
}

.tutorial-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tutorial-substep {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid rgba(59, 130, 246, 0.5);
    border-radius: 0.5rem;
}

.substep-number {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}

.tutorial-substep p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.tutorial-substep strong {
    color: white;
    font-weight: 600;
}

.tutorial-tip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.75rem;
    font-size: 0.9rem;
    color: var(--primary);
}

.tutorial-tip.success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.tutorial-tip svg {
    flex-shrink: 0;
}

.tutorial-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}

.feature-item svg {
    color: #f59e0b;
    flex-shrink: 0;
}

/* Tutorial Workflow */
.tutorial-workflow {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1.5rem;
    margin-bottom: 3rem;
    overflow-x: auto;
}

.workflow-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: white;
}

.workflow-title svg {
    color: #f59e0b;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-width: min-content;
}

.workflow-steps::-webkit-scrollbar {
    height: 8px;
}

.workflow-steps::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.workflow-steps::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

.workflow-steps::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, var(--primary-hover), var(--secondary));
}

.workflow-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.workflow-item:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.workflow-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.workflow-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.workflow-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.workflow-arrow {
    font-size: 2rem;
    color: var(--primary);
    text-align: center;
    font-weight: 900;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
    padding: 0 1rem;
}

/* Tutorial Help */
.tutorial-help {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.5rem;
    flex-wrap: wrap;
}

.help-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.help-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.help-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-help {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-help svg {
    width: 24px;
    height: 24px;
}

.btn-help.discord {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

.btn-help.discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.6);
}

.btn-help.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-help.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Download Section */
.download {
    padding: 8rem 0;
}

.download-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 2rem;
}

.download-icon {
    margin-bottom: 2rem;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.download-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.download-buttons {
    margin-bottom: 2rem;
}

.btn-download {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}

.btn-download:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
}

.btn-download span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-download small {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Community Section */
.community-section {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1rem;
}

.community-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.community-header svg {
    color: var(--primary);
}

.community-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-community {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-community::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-community:hover::before {
    opacity: 1;
}

.btn-community svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-community:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.btn-community-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.btn-community-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-community-subtitle {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.2;
}

/* Discord Button */
.btn-community.discord {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(114, 137, 218, 0.15));
    border: 1px solid rgba(88, 101, 242, 0.3);
    color: #5865F2;
}

.btn-community.discord::before {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.25), rgba(114, 137, 218, 0.25));
}

.btn-community.discord:hover {
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.3);
    transform: translateY(-3px);
}

/* WhatsApp Button */
.btn-community.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(18, 140, 126, 0.15));
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.btn-community.whatsapp::before {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.25), rgba(18, 140, 126, 0.25));
}

.btn-community.whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    transform: translateY(-3px);
}

.download-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.info-item svg {
    color: var(--success);
    flex-shrink: 0;
}

.system-requirements details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1rem;
}

.system-requirements summary {
    cursor: pointer;
    font-weight: 600;
    user-select: none;
}

.system-requirements ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.system-requirements li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* Download Preview */
.preview-window {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
}

.preview-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-dots span:nth-child(1) {
    background: #ff5f57;
}

.preview-dots span:nth-child(2) {
    background: #febc2e;
}

.preview-dots span:nth-child(3) {
    background: #28c840;
}

.preview-content {
    padding: 2rem;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.preview-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.preview-icon.installing {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.preview-icon.pending {
    background: rgba(255, 255, 255, 0.1);
}

.preview-text {
    flex: 1;
}

.preview-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.preview-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    animation: progressAnimation 2s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% {
        width: 20%;
    }
    50% {
        width: 80%;
    }
    100% {
        width: 20%;
    }
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

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

.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .step-connector {
        display: none;
    }

    .download-card {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    /* Ajustes para a animação */
    .hero-image {
        height: 500px;
    }

    .electron-app {
        width: 420px;
        height: 400px;
        left: -20px;
    }

    .extension-mockup {
        width: 350px;
        height: 450px;
        right: -20px;
    }

    .floating-badge {
        font-size: 0.7rem;
        padding: 0.6rem 0.8rem;
    }

    /* Tutorial tablet */
    .tutorial-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .workflow-item {
        min-width: 160px;
        max-width: 200px;
        padding: 1.25rem;
    }

    .workflow-icon {
        font-size: 2.25rem;
    }

    .workflow-content h4 {
        font-size: 0.95rem;
    }

    .workflow-content p {
        font-size: 0.8rem;
    }

    .workflow-steps {
        flex-wrap: nowrap;
        gap: 1rem;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1rem;
    }

    .workflow-item {
        min-width: 180px;
        flex-shrink: 0;
    }

    .workflow-arrow {
        display: none;
    }

    .tutorial-workflow {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        gap: 2rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        text-align: center;
        flex-direction: column;
    }

    .download-card {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    /* Ajustes para mobile - simplificar animação */
    .hero-image-container {
        min-height: 400px;
    }

    .hero-image {
        height: 800px;
    }

    .electron-app {
        width: 90%;
        max-width: 350px;
        height: 350px;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .extension-mockup {
        width: 85%;
        max-width: 320px;
        height: 400px;
        top: 400px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .connection-line {
        display: none;
    }

    .floating-badge {
        display: none;
    }

    .particles-container {
        opacity: 0.5;
    }

    .app-sidebar {
        width: 50px;
    }

    .sidebar-item {
        width: 38px;
        height: 38px;
    }

    .app-main {
        padding: 1rem;
    }

    .automation-grid {
        gap: 0.75rem;
    }

    .video-preview-grid {
        grid-template-columns: 1fr;
    }

    .community-buttons {
        grid-template-columns: 1fr;
    }

    .btn-community {
        padding: 1rem;
    }

    .btn-community svg {
        width: 28px;
        height: 28px;
    }

    .btn-community-title {
        font-size: 0.9rem;
    }

    .btn-community-subtitle {
        font-size: 0.75rem;
    }

    .community-section {
        padding: 1.5rem;
    }

    .community-header {
        font-size: 1rem;
    }

    /* Tutorial responsivo */
    .tutorial-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tutorial-card {
        padding: 2rem 1.5rem;
    }

    .tutorial-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.125rem;
    }

    .tutorial-icon {
        width: 80px;
        height: 80px;
    }

    .tutorial-icon svg {
        width: 40px;
        height: 40px;
    }

    .tutorial-title {
        font-size: 1.25rem;
    }

    .workflow-steps {
        flex-direction: column;
    }

    .workflow-item {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }

    .workflow-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
        padding: 0.5rem 0;
    }

    .workflow-title {
        font-size: 1.25rem;
    }

    .workflow-icon {
        font-size: 2rem;
    }

    .workflow-content h4 {
        font-size: 0.95rem;
    }

    .workflow-content p {
        font-size: 0.8rem;
    }

    .tutorial-workflow {
        padding: 2rem 1.5rem;
        overflow-x: visible;
    }

    .tutorial-help {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .help-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-help {
        width: 100%;
        justify-content: center;
    }
}
