:root {
    --ms-blue: #0078d4;
    --ms-blue-hover: #106ebe;
    --verdiss-green: #16a34a;
    --verdiss-green-light: #22c55e;
    
    /* Cores escuras sólidas e limpas */
    --bg-dark: #0f1115;
    --bg-card: #181b21;
    --bg-card-hover: #1e222a;
    --bg-nav: #12151b;
    
    --border-color: #262b35;
    --border-active: #3b4252;
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

.ambient-glow, .grid-overlay {
    display: none !important;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: var(--bg-nav);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 200px;
    text-decoration: none;
    overflow: hidden;
}

/* FIX DA LOGO: Força a imagem gigante a encolher */
.brand-logo {
    height: 28px !important;
    width: auto !important;
    max-width: 160px !important;
    max-height: 28px !important;
    object-fit: contain !important;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: background-color 0.15s ease, color 0.15s ease;
}

nav a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 8% 60px;
    text-align: center;
    background: var(--bg-dark);
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero h1 span {
    color: var(--verdiss-green-light);
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-fluent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--verdiss-green);
    color: #ffffff;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: #15803d;
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: var(--border-active);
}

/* Sections */
section {
    padding: 80px 8%;
    background-color: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

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

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

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--border-active);
}

.card.featured {
    grid-column: 1 / -1;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(34, 197, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--verdiss-green-light);
}

.card-tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.card.featured .card-tag {
    background: rgba(34, 197, 94, 0.15);
    color: var(--verdiss-green-light);
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 16px;
}

.app-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.chip {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--text-muted);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--verdiss-green-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.card-link:hover {
    color: #ffffff;
}

/* Roadmap */
.roadmap-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.roadmap-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.roadmap-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.roadmap-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.status-done {
    background: rgba(34, 197, 94, 0.15);
    color: var(--verdiss-green-light);
}

.status-planned {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.roadmap-title {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    text-decoration: none;
}

.roadmap-title:hover {
    color: var(--verdiss-green-light);
}

.roadmap-status-badge {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.badge-done {
    background: rgba(34, 197, 94, 0.1);
    color: var(--verdiss-green-light);
}

.badge-planned {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-dark);
:root {
    --ms-blue: #0078d4;
    --ms-blue-hover: #106ebe;
    --verdiss-green: #16a34a;
    --verdiss-green-light: #22c55e;
    
    /* Cores sólidas e limpas */
    --bg-dark: #0f1115;
    --bg-card: #181b21;
    --bg-card-hover: #1e222a;
    --bg-nav: #12151b;
    
    --border-color: #262b35;
    --border-active: #3b4252;
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 50% 0%, #1a1f29 0%, var(--bg-dark) 70%);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.ambient-glow, .grid-overlay {
    display: none;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    height: 100%;
}

/* Trava de dimensão para a Logo no Menu */
.brand-logo {
    height: 28px;
    max-height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: background-color 0.15s ease, color 0.15s ease;
}

nav a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 8% 60px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.badge-fluent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--verdiss-green-light);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-fluent .dot {
    width: 6px;
    height: 6px;
    background-color: var(--verdiss-green-light);
    border-radius: 50%;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero h1 span {
    color: var(--verdiss-green-light);
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 32px;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-fluent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--verdiss-green);
    color: #ffffff;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: #15803d;
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: var(--border-active);
}

/* Sections */
section {
    padding: 80px 8%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

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

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

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.card::before {
    display: none;
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-active);
}

.card.featured {
    grid-column: 1 / -1;
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(34, 197, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--verdiss-green-light);
}

.card-tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.card.featured .card-tag {
    background: rgba(34, 197, 94, 0.15);
    color: var(--verdiss-green-light);
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 16px;
}

.app-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.chip {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--text-muted);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--verdiss-green-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.15s ease;
}

.card-link:hover {
    color: #ffffff;
}

/* Roadmap */
.roadmap-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.roadmap-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.roadmap-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.roadmap-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.status-done {
    background: rgba(34, 197, 94, 0.15);
    color: var(--verdiss-green-light);
}

.status-planned {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.roadmap-title {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    text-decoration: none;
}

.roadmap-title:hover {
    color: var(--verdiss-green-light);
}

.roadmap-status-badge {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.badge-done {
    background: rgba(34, 197, 94, 0.1);
    color: var(--verdiss-green-light);
}

.badge-planned {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    background: var(--bg-dark);
    padding: 40px 8% 30px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
:root {
    --ms-blue: #0078d4;
    --ms-blue-hover: #106ebe;
    --verdiss-green: #16a34a;
    --verdiss-green-light: #22c55e;
    
    /* Cores sólidas e limpas */
    --bg-dark: #0f1115;
    --bg-card: #181b21;
    --bg-card-hover: #1e222a;
    --bg-nav: #12151b;
    
    --border-color: #262b35;
    --border-active: #3b4252;
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 50% 0%, #1a1f29 0%, var(--bg-dark) 70%);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.ambient-glow, .grid-overlay {
    display: none;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

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

.brand-text span {
    color: var(--verdiss-green-light);
    font-weight: 500;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: background-color 0.15s ease, color 0.15s ease;
}

nav a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 8% 60px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.badge-fluent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--verdiss-green-light);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-fluent .dot {
    width: 6px;
    height: 6px;
    background-color: var(--verdiss-green-light);
    border-radius: 50%;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero h1 span {
    color: var(--verdiss-green-light);
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 32px;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-fluent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--verdiss-green);
    color: #ffffff;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: #15803d;
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: var(--border-active);
}

/* Sections */
section {
    padding: 80px 8%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

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

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

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.card::before {
    display: none;
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-active);
}

.card.featured {
    grid-column: 1 / -1;
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(34, 197, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--verdiss-green-light);
}

.card-tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.card.featured .card-tag {
    background: rgba(34, 197, 94, 0.15);
    color: var(--verdiss-green-light);
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 16px;
}

.app-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.chip {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--text-muted);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--verdiss-green-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.15s ease;
}

.card-link:hover {
    color: #ffffff;
}

/* Roadmap */
.roadmap-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.roadmap-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.roadmap-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.roadmap-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
:root {
    --ms-blue: #0078d4;
    --ms-blue-hover: #106ebe;
    --verdiss-green: #16a34a;
    --verdiss-green-light: #22c55e;
    
    /* Cores sólidas e limpas */
    --bg-dark: #0f1115;
    --bg-card: #181b21;
    --bg-card-hover: #1e222a;
    --bg-nav: #12151b;
    
    --border-color: #262b35;
    --border-active: #3b4252;
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 50% 0%, #1a1f29 0%, var(--bg-dark) 70%);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.ambient-glow, .grid-overlay {
    display: none;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

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

.brand-text span {
    color: var(--verdiss-green-light);
    font-weight: 500;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: background-color 0.15s ease, color 0.15s ease;
}

nav a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 8% 60px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.badge-fluent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--verdiss-green-light);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-fluent .dot {
    width: 6px;
    height: 6px;
    background-color: var(--verdiss-green-light);
    border-radius: 50%;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero h1 span {
    color: var(--verdiss-green-light);
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 32px;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-fluent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--verdiss-green);
    color: #ffffff;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: #15803d;
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: var(--border-active);
}

/* Sections */
section {
    padding: 80px 8%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

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

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

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.card::before {
    display: none;
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-active);
}

.card.featured {
    grid-column: 1 / -1;
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(34, 197, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--verdiss-green-light);
}

.card-tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.card.featured .card-tag {
    background: rgba(34, 197, 94, 0.15);
    color: var(--verdiss-green-light);
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 16px;
}

.app-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.chip {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--text-muted);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--verdiss-green-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.15s ease;
}

.card-link:hover {
    color: #ffffff;
}

/* Roadmap */
.roadmap-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.roadmap-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.roadmap-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.roadmap-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.status-done {
    background: rgba(34, 197, 94, 0.15);
    color: var(--verdiss-green-light);
}

.status-planned {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.roadmap-title {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    text-decoration: none;
}

.roadmap-title:hover {
    color: var(--verdiss-green-light);
}

.roadmap-status-badge {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.badge-done {
    background: rgba(34, 197, 94, 0.1);
    color: var(--verdiss-green-light);
}

.badge-planned {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    background: var(--bg-dark);
    padding: 40px 8% 30px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

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

.footer-legal {
    text-align: right;
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    nav ul { display: none; }
    .card.featured { grid-column: span 1; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-legal { text-align: center; }
    }
    justify-content: center;
    font-size: 0.75rem;
}

.status-done {
    background: rgba(34, 197, 94, 0.15);
    color: var(--verdiss-green-light);
}

.status-planned {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.roadmap-title {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    text-decoration: none;
}

.roadmap-title:hover {
    color: var(--verdiss-green-light);
}

.roadmap-status-badge {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.badge-done {
    background: rgba(34, 197, 94, 0.1);
    color: var(--verdiss-green-light);
}

.badge-planned {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    background: var(--bg-dark);
    padding: 40px 8% 30px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;

gn: center; }
}

e-height: 1.6;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    nav ul { display: none; }
    .card.featured { grid-column: span 1; }
    .footer-content { flex-direction: column; text-align: center; align-items: center; }
    .footer-legal { text-align: center; }
}
