.mcc-main {
    min-height: 60vh;
}

.mcc-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(255, 250, 242, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--mcc-linha);
}

.mcc-navbar {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mcc-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--mcc-texto);
}

.mcc-brand img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 999px;
}

.mcc-brand strong {
    display: block;
    font-size: 1.25rem;
    line-height: 1.1;
}

.mcc-brand small {
    display: block;
    margin-top: 3px;
    max-width: 260px;
    font-family: "Alexandria", Arial, sans-serif;
    font-size: 0.78rem;
    line-height: 1.25;
    color: var(--mcc-texto-suave);
}

.mcc-desktop-menu {
    align-items: center;
    gap: 6px;
}

.mcc-page {
    padding: 70px 0;
}

.mcc-page h1 {
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.mcc-footer {
    margin-top: 80px;
    padding: 46px 0 24px;
    background: #152947;
    color: rgba(255, 255, 255, 0.82);
}

.mcc-footer h2,
.mcc-footer h3 {
    color: #ffffff;
}

.mcc-footer h3 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.mcc-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mcc-footer li + li {
    margin-top: 8px;
}

.mcc-footer a {
    color: rgba(255, 255, 255, 0.72);
}

.mcc-footer a:hover {
    color: #ffffff;
}

.mcc-footer hr {
    margin: 32px 0 20px;
    border-color: rgba(255, 255, 255, 0.18);
}

.mcc-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mcc-footer-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 999px;
}

.mcc-footer-brand h2,
.mcc-footer-brand p,
.mcc-footer-bottom p {
    margin: 0;
}

.mcc-footer-brand p {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.68);
}

.mcc-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.mcc-footer-bottom p {
    color: rgba(255, 255, 255, 0.64);
}

.mcc-footer-bottom .mcc-decolores {
    font-size: 1.55rem;
    color: var(--mcc-amarelo);
}

@media (max-width: 991.98px) {
    .mcc-navbar {
        min-height: 82px;
        justify-content: center;
    }

    .mcc-brand img {
        width: 58px;
        height: 58px;
    }

    .mcc-brand small {
        max-width: 210px;
    }

    .mcc-footer {
        padding-bottom: 104px;
    }

    .mcc-footer-bottom {
        flex-direction: column;
    }
}