/* Resets e Variaveis Globais */
:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --orange-primary: #ff5e00;
    --orange-secondary: #ff8400;
    --orange-glow: rgba(255, 94, 0, 0.4);
    --text-main: #f5f5f5;
    --text-muted: #999999;
    --glass-bg: rgba(25, 25, 25, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

.text-orange {
    color: var(--orange-primary);
    text-shadow: 0 0 10px var(--orange-glow);
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Botoes */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px var(--orange-glow);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px var(--orange-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-main);
}

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

.btn-outline {
    background: transparent;
    border: 1px solid var(--orange-primary);
    color: var(--orange-primary);
}

.btn-outline:hover {
    background: var(--orange-primary);
    color: #fff;
    box-shadow: 0 0 10px var(--orange-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 5% 50px;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 94, 0, 0.15);
    color: var(--orange-primary);
    border: 1px solid var(--orange-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-group {
    display: flex;
    gap: 20px;
}

/* Mockup & Orbs */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.orange-orb {
    width: 300px;
    height: 300px;
    background: var(--orange-primary);
    top: 10%;
    right: 20%;
    opacity: 0.4;
    animation: float 6s infinite alternate;
}

.dark-orb {
    width: 400px;
    height: 400px;
    background: #1a0800;
    bottom: -10%;
    left: 10%;
}

.mockup {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.mockup-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
}

.mockup-header span:nth-child(1) { background: #ff5f56; }
.mockup-header span:nth-child(2) { background: #ffbd2e; }
.mockup-header span:nth-child(3) { background: #27c93f; }

.mockup-body p {
    font-family: monospace;
    margin-bottom: 10px;
}

.ai-prompt { color: var(--text-muted); }
.ai-response { color: #f5f5f5; }
.ai-success { color: var(--orange-primary); font-weight: bold; }

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

/* Features */
.features {
    padding: 80px 5%;
    background: var(--bg-darker);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.feature-card {
    padding: 30px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
}

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

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
    border-top: 1px solid #222;
}

/* Responsividade */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding-top: 120px;
        text-align: center;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .mockup {
        transform: none;
    }
}
