:root {
    --bg: #0a0c10;
    --card-bg: #14171c;
    --primary: #c5a059; /* Dourado Premium */
    --text: #ffffff;
    --text-dim: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; line-height: 1.6; scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Navbar */
.navbar { position: fixed; top: 0; width: 100%; padding: 18px 0; background: rgba(10, 12, 16, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.4rem; font-weight: 800; }
.logo span { color: var(--primary); font-weight: 300; }
.nav-menu a { color: var(--text); text-decoration: none; margin-left: 20px; font-size: 0.9rem; font-weight: 500; }

/* Buttons */
.btn-primary { background: var(--primary); color: #000; padding: 12px 24px; border-radius: 4px; font-weight: 700; text-decoration: none; transition: 0.3s; }
.btn-outline { border: 1px solid var(--border); color: var(--text); padding: 12px 24px; border-radius: 4px; text-decoration: none; transition: 0.3s; }
.large { padding: 18px 36px; }

/* Hero */
.hero { padding: 200px 0 100px; position: relative; }
.hero-bg { position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(to left, var(--bg), transparent), url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2069') no-repeat center/cover; opacity: 0.2; z-index: -1; }
.badge { color: var(--primary); font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border-left: 2px solid var(--primary); padding-left: 10px; }
.hero-content h1 { font-size: 4rem; line-height: 1.1; margin: 25px 0; font-weight: 800; }
.hero-content h1 span { color: var(--primary); }
.hero-content p { font-size: 1.2rem; color: var(--text-dim); max-width: 650px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 20px; }

/* Segment Section - ONDE MOSTRA QUE ATENDE TODOS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: -60px; position: relative; z-index: 10; }
.segment-card { background: var(--card-bg); padding: 30px; border-radius: 8px; border: 1px solid var(--border); text-align: center; }
.segment-card.active { border-color: var(--primary); background: linear-gradient(145deg, #1a1e26, #14171c); }
.icon-box { color: var(--primary); margin-bottom: 20px; }
.icon-box i { width: 32px; height: 32px; }
.segment-card h4 { margin-bottom: 10px; font-size: 1.1rem; }
.segment-card p { font-size: 0.9rem; color: var(--text-dim); }

/* Bento Grid */
.section { padding: 100px 0; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 10px; }
.bento-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }
.card { background: var(--card-bg); padding: 40px; border-radius: 12px; border: 1px solid var(--border); transition: 0.3s; }
.card:hover { border-color: var(--primary); }
.card i { color: var(--primary); margin-bottom: 25px; width: 30px; height: 30px; }
.card.highlight { background: #1a1e26; border: 1px solid var(--primary); }
.card-link { display: block; margin-top: 25px; color: var(--primary); text-decoration: none; font-weight: 700; }

/* CTA Box */
.cta-box { background: var(--primary); padding: 60px; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; color: #000; }
.cta-text h2 { font-size: 2.2rem; margin-bottom: 10px; }

/* Footer */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-bottom { text-align: center; padding-top: 40px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 0.8rem; }

/* Mobile */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero-content h1 { font-size: 2.5rem; }
    .grid-3 { grid-template-columns: 1fr; margin-top: 20px; }
    .cta-box { flex-direction: column; text-align: center; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr; }
}
/* Estilos da Linha do Tempo */
.timeline-section {
    background: #0d0f14;
    padding-top: 50px;
}

.section-header.center {
    text-align: center;
    margin-bottom: 80px;
}

.section-header.center p {
    margin: 15px auto;
    max-width: 600px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Linha central */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--border);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    width: 100%;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 42%;
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: 0.3s;
}

.timeline-content:hover {
    border-color: var(--primary);
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
    z-index: 2;
}

/* Responsividade da Linha do Tempo */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        justify-content: flex-start;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
}