/* =========================
HEADER (TOPO)
========================= */
.topbar {
position: sticky;
top: 0;
z-index: 999;
background: rgba(255,255,255,0.85);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* =========================
CONTAINER
========================= */
.topbar-inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
padding: 6px 20px; /* MAIS FINO */
}

/* =========================
LOGO
========================= */
.logo img {
height: 60px; /* REDUZIDO */
width: 60px;
object-fit: cover;
border-radius: 50%;
}

/* =========================
MENU
========================= */
.menu {
display: flex;
align-items: center;
gap: 28px;
margin-left: 70px;
}

/* LINKS */
.menu a {
font-family: 'FunnelSans', sans-serif; /* GARANTE FONTE */
font-size: 14px;
font-weight: 500;
color: #333;
text-decoration: none;
position: relative;
padding: 4px 0;
}

/* LINHA HOVER */
.menu a::after {
content: "";
position: absolute;
left: 0;
bottom: -3px;
width: 0%;
height: 2px;
background: #2ecc71;
transition: 0.3s;
}

.menu a:hover {
color: #2ecc71;
}

.menu a:hover::after {
width: 100%;
}

/* ATIVO */
.menu a.active {
color: #2ecc71;
}

.menu a.active::after {
width: 100%;
}

/* CTA */
.menu .cta {
background: #2ecc71;
color: #fff;
padding: 6px 16px;
border-radius: 20px;
font-weight: 600;
}

/* =========================
BOTÃO MOBILE
========================= */
.menu-btn {
display: none;
}

/* =========================
RESPONSIVO
========================= */
@media (max-width: 900px) {

```
.logo img {
    height: 45px;
    width: 45px;
}

.menu {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    display: none;
}

.menu.active {
    display: flex;
}

.menu a {
    padding: 10px 0;
    width: 100%;
}

.menu-btn {
    display: block;
    font-size: 22px;
    cursor: pointer;
}
```

}
