:root {
    --bg-white: #ffffff;
    --text-dark-blue: #0f172a;
    --text-light-blue: #475569;
    --primary-blue: #2563eb;
    --border-color: #cbd5e1;
    --font-family: 'Inter', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark-blue);
    font-family: var(--font-family);
    line-height: 1.7;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 40px 0;
}

.navbar {
    background-color: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.nav-links a {
    color: var(--text-light-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.hero {
    text-align: center;
    padding: 80px 0 40px;
}

.badge {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 3rem;
    color: var(--text-dark-blue);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light-blue);
}

.section {
    padding: 40px 0;
}

.section h2 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-blue);
    display: inline-block;
    padding-bottom: 5px;
}

.section p {
    margin-bottom: 15px;
    text-align: justify;
}

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

.card {
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 4px;
    background-color: #f8fafc;
}

.card h3 {
    font-size: 1.2rem;
    color: var(--text-dark-blue);
    margin-bottom: 5px;
}

.highlight {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.card ul {
    list-style-type: square;
    margin-left: 20px;
    color: var(--text-dark-blue);
}

.card li {
    margin-bottom: 8px;
}

.list-item {
    margin-bottom: 30px;
}

.list-item h3 {
    font-size: 1.1rem;
    color: var(--text-dark-blue);
    margin-bottom: 5px;
}

.contato-section {
    text-align: center;
}

.contato-section p {
    text-align: center;
}

.contact-links {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 10
