/* APLICAR OUTFIT EM TODO O SITE */
body {
    margin: 0;
    font-family: "Outfit", sans-serif;

    /* Cor base */
    background-color: #ffffff;
}

/* MENU SUPERIOR */
.menu {
    text-align: center;
    padding: 80px 0;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    /* peso da fonte */
    font-size: 23px;
    font-family: "Outfit", sans-serif;
}

.menu .active a {
    background: #FF9921;
    padding: 6px 40px;
}

/* BOLINHA DO ITEM ATIVO */
.menu .active a {
    position: relative;
}

.menu .active a::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 15px;
    height: 15px;
    background: #2B17B2;
    border-radius: 50%;
    transform: translateY(-50%);
}
/* ÍCONE DO HAMBÚRGUER */
.hamburger {
    display: none;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}

/* NAV FECHADO NO MOBILE */
#nav-menu {
    transition: max-height 0.3s ease;
    overflow: hidden;
}

/* CONTAINER FLEX DAS LATERAIS + LOGO CENTRAL */
.top-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    /* centraliza verticalmente */
    margin-top: 40px;
    pointer-events: none;
    /* imagens não bloqueiam clique */
}

/* LATERAL ESQUERDA */
.side-left {
    width: 240px;
    margin-top: -49px;
    /* ajuste fino da altura individual */
}

/* LATERAL DIREITA */
.side-right {
    width: 240px;
    margin-top: -194px;
    /* ajuste fino da altura individual */
}