@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #1F3A5F; /* O azul escuro do Kuantos */
    --primary-hover: #152842;
    --bg-color: #F8FAFC; /* Um cinza/azul ultra claro e elegante */
    --text-main: #0F172A;
    --text-muted: #64748B;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: var(--text-main);
}

/* Header Navbar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: transparent;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.btn-acesso {
    padding: 10px 24px;
    background-color: white;
    color: var(--primary-color);
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-acesso:hover {
    border-color: var(--primary-color);
    background-color: #F1F5F9;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.badge {
    background-color: #E0E7FF;
    color: #3730A3;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 16px 0;
    letter-spacing: -1px;
    line-height: 1.1;
    max-width: 600px;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin: 0;
    max-width: 500px;
    line-height: 1.5;
}

/* Footer */
footer {
    text-align: center;
    padding: 24px;
    font-size: 13px;
    color: #94A3B8;
}

/* Responsividade */
@media (max-width: 600px) {
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 16px; }
}