body {
    margin: 0 !important;
    padding-top: 128px;
}


html {
    scroll-behavior: smooth;
}

.header-like {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 128px;
    background-color: #283E81;
    opacity: 1;
    z-index: 1000;
}

.header-container {
    height: 100%;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo-img {
    width: 161px;
    height: 25px;
    object-fit: contain;
}

.menu-like a {
    font-family: 'Circular', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 900;
    line-height: 18px;
    letter-spacing: 0;
    color: #F8FAFB;
    text-decoration: none;
    opacity: 1;
}

.menu-like a:hover {
    text-decoration: underline;
}


.btn-acesso {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 208px;
    height: 64px;

    background-color: #C1C72F;
    border-radius: 32px;

    font-family: 'Circular', system-ui, sans-serif;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    letter-spacing: 0;

    color: #F8FAFB;
    text-decoration: none;
    opacity: 1;

    transition: background-color 0.3s ease;
}

.btn-acesso:hover {
    background-color: #CDD239;
}

.btn-menu-mobile,
.btn-icon-mobile {
    background: none;
    border: none;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #F8FAFB;
    font-size: 22px;
    cursor: pointer;
}

.btn-icon-mobile img {
    width: 24px;
    height: 24px;
}


@media (max-width: 767px) {
    .logo-img {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 50px; /* ajuste fino para mobile */
    }
}

@media (max-width: 767px) {
    .header-like .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .btn-menu-mobile {
        margin-left: 4px;
    }

    .btn-icon-mobile {
        margin-right: 4px;
    }
}
