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

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4f6f9;
    color: #2b2b2b;
    line-height: 1.7;
}

/* HEADER */

.topbar {
    display: flex;
    height: 82px;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

/* bloco branco da esquerda */
.logo-container {
    width: 270px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #dcdcdc;
}

/* barra azul direita */
.topbar-right {
    flex: 1;
    background: #003b5c;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.logo {
    height: 52px;
}

.nav-links {
    margin-left: auto;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    font-size: 15px;
}


/* HERO */
.hero {
    padding: 60px 40px 30px 40px;
}

.hero h1 {
    font-size: 38px;
    color: #003b5c;
    margin-bottom: 10px;
}

.hero p {
    color: #666;
    font-size: 18px;
    max-width: 800px;
}

/* CONTENT */
.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

.card {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.card h2 {
    color: #003b5c;
    margin-bottom: 15px;
    font-size: 24px;
}

.card ul {
    margin-left: 20px;
}

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

/* FOOTER */
footer {
    margin-top: 60px;
    background: #003b5c;
    color: white;
    padding: 30px;
    text-align: center;
}

footer a {
    color: #6fd49c;
    text-decoration: none;
    margin: 0 12px;
}

.company {
    margin-top: 15px;
    opacity: .9;
    font-size: 14px;
}
.legal-document {
    background: white;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    border-radius: 8px;
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    color: #003b5c;
    font-size: 28px;
    margin-bottom: 20px;
}

.legal-section h3 {
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 21px;
    color: #222;
}

.legal-section p {
    margin-bottom: 15px;
    color: #444;
    font-size: 17px;
    line-height: 1.9;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 10px;
    font-size: 17px;
}