:root {
    --site-chrome-navy: #032039;
    --site-chrome-teal: #168b98;
    --site-chrome-teal-dark: #0f6772;
    --site-chrome-ink: #123147;
    --site-chrome-muted: #587080;
    --site-chrome-line: #d8e2e7;
    --site-chrome-soft: #f4f8f9;
}

html {
    background: #fff;
}

body {
    background: #fff;
    min-width: 20rem;
}

.site-skip-link {
    background: var(--site-chrome-navy);
    border-radius: .5rem;
    color: #fff;
    font-weight: 700;
    left: 1rem;
    padding: .75rem 1rem;
    position: fixed;
    top: 1rem;
    transform: translateY(-220%);
    transition: transform .15s ease;
    z-index: 1000;
}

.site-skip-link:focus {
    transform: translateY(0);
}

main {
    min-width: 0;
}

.site-app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-app__content {
    flex: 1 0 auto;
}

.site-app__message {
    background: #eaf6f7;
    border: 1px solid #b9dce0;
    border-radius: .6rem;
    color: var(--site-chrome-navy);
    margin: 1rem auto 0;
    max-width: 76rem;
    padding: .8rem 1rem;
    width: calc(100% - 2.5rem);
}

.site-app__message--error {
    background: #fff3f2;
    border-color: #efc6c0;
    color: #84291f;
}

.site-chrome,
.site-chrome-footer {
    color: var(--site-chrome-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-chrome *,
.site-chrome-footer * {
    box-sizing: border-box;
}

.site-icon {
    display: block;
    flex: 0 0 auto;
    height: 1em;
    width: 1em;
}

.site-chrome a,
.site-chrome-footer a {
    color: inherit;
    text-decoration: none;
}

.site-chrome__notice {
    background: #008000;
    display: grid;
    color: #fff;
    font-size: .875rem;
    font-weight: 600;
    isolation: isolate;
    letter-spacing: .02em;
    overflow: hidden;
    padding: .625rem 1.25rem;
    position: sticky;
    text-align: center;
    top: 0;
    z-index: 80;
}

.site-chrome__notice > span {
    grid-area: 1 / 1;
    animation: notice-rotation 10s step-end infinite;
    position: relative;
    z-index: 1;
}

.site-chrome__notice::after {
    animation: notice-shine 4.8s ease-in-out infinite;
    background: linear-gradient(100deg, transparent 25%, rgb(255 255 255 / 22%) 48%, rgb(255 255 255 / 34%) 50%, transparent 75%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    transform: translateX(-120%);
    width: 48%;
    z-index: 0;
}

.site-chrome__notice > span:nth-child(2) {
    animation-delay: -5s;
}

.site-chrome__notice--single > span {
    animation: none;
}

@keyframes notice-rotation {
    0% { visibility: visible; }
    50%, 100% { visibility: hidden; }
}

@keyframes notice-shine {
    0%, 24% { transform: translateX(-120%); }
    68%, 100% { transform: translateX(310%); }
}

@media (prefers-reduced-motion: reduce) {
    .site-chrome__notice > span { animation: none; }
    .site-chrome__notice > span:nth-child(2) { display: none; }
    .site-chrome__notice::after { display: none; }
}

.site-whatsapp-launcher--above-bar {
    bottom: 4.75rem !important;
}

.site-whatsapp-launcher {
    align-items: center;
    background: #21c063;
    border-radius: 50%;
    bottom: 1.25rem;
    box-shadow: 0 .8rem 2rem rgb(3 32 57 / 22%);
    color: #fff;
    display: flex;
    height: 3.5rem;
    justify-content: center;
    position: fixed;
    right: 1.25rem;
    width: 3.5rem;
    z-index: 49;
}

.site-whatsapp-launcher svg {
    height: 2rem;
    width: 2rem;
}

@media (max-width: 639px) {
    .site-whatsapp-launcher--above-bar {
        bottom: 6.5rem !important;
    }
}

.site-chrome__bar {
    align-items: center;
    background: #fff;
    border-bottom: 1px solid var(--site-chrome-line);
    display: grid;
    gap: 1.25rem;
    grid-template-columns: auto auto minmax(12rem, 36rem) auto;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1400px;
    min-height: 4rem;
    padding: .5rem 2rem;
}

.site-chrome__brand {
    display: block;
    flex: 0 0 auto;
}

.site-chrome__brand img {
    height: auto;
    max-height: 2.8rem;
    max-width: 11.5rem;
    width: auto;
}

.site-chrome__nav {
    align-items: center;
    display: flex;
    gap: clamp(.7rem, 1.5vw, 1.35rem);
    white-space: nowrap;
}

.site-chrome__nav a {
    align-items: center;
    display: inline-flex;
    gap: .375rem;
    border-bottom: 2px solid transparent;
    color: var(--site-chrome-muted);
    font-size: .875rem;
    font-weight: 500;
    padding: .45rem 0;
    transition: border-color .15s ease, color .15s ease;
}

.site-chrome__nav a:hover,
.site-chrome__nav a[aria-current="page"] {
    border-bottom-color: var(--site-chrome-teal);
    color: var(--site-chrome-navy);
}

.site-chrome__search {
    align-items: center;
    border: 1px solid var(--site-chrome-line);
    border-radius: .6rem;
    color: var(--site-chrome-muted);
    display: flex;
    min-width: 0;
    padding-left: .75rem;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.site-chrome__search:focus-within {
    border-color: var(--site-chrome-teal);
    box-shadow: 0 0 0 3px rgb(22 139 152 / 14%);
}

.site-chrome__search > .site-icon {
    flex: 0 0 auto;
    height: 1rem;
    width: 1rem;
}

.site-chrome__search input {
    background: transparent;
    border: 0;
    color: var(--site-chrome-ink);
    font: inherit;
    font-size: .875rem;
    min-width: 0;
    outline: 0;
    padding: .7rem .55rem;
    width: 100%;
}

.site-chrome__search input::placeholder {
    color: #64748b;
}

.site-chrome__search button {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--site-chrome-navy);
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    justify-content: center;
    min-height: 2.55rem;
    padding: .45rem .75rem;
}

.site-chrome__search button .site-icon {
    height: 1rem;
    width: 1rem;
}

.site-chrome__actions {
    align-items: center;
    display: flex;
    gap: .1rem;
}

.site-chrome__action,
.site-chrome__mobile-menu > summary {
    align-items: center;
    border-radius: .5rem;
    color: var(--site-chrome-navy);
    display: inline-flex;
    height: 2.6rem;
    justify-content: center;
    position: relative;
    width: 2.6rem;
}

.site-chrome__action:hover,
.site-chrome__action[aria-current="page"],
.site-chrome__mobile-menu > summary:hover {
    background: #eaf6f7;
    color: var(--site-chrome-teal-dark);
}

.site-chrome__action .site-icon,
.site-chrome__mobile-menu > summary .site-icon {
    height: 1.3rem;
    width: 1.3rem;
}

.site-chrome__locale {
    align-items: center;
    border: 1px solid var(--site-chrome-line);
    border-radius: .5rem;
    display: inline-flex;
    overflow: hidden;
}

.site-chrome__locale button {
    background: #fff;
    border: 0;
    color: var(--site-chrome-muted);
    cursor: pointer;
    font: inherit;
    font-size: .7rem;
    font-weight: 700;
    min-height: 2.2rem;
    padding: .35rem .45rem;
}

.site-chrome__locale button[aria-pressed="true"] {
    background: var(--site-chrome-teal-dark);
    color: #fff;
}

.site-chrome__locale button:focus-visible {
    outline: 2px solid var(--site-chrome-navy);
    outline-offset: -2px;
}

.site-chrome__badge {
    align-items: center;
    background: var(--site-chrome-teal);
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    display: flex;
    font-size: .65rem;
    font-weight: 800;
    height: 1.15rem;
    justify-content: center;
    line-height: 1;
    min-width: 1.15rem;
    padding: 0 .15rem;
    position: absolute;
    right: .15rem;
    top: .15rem;
}

.site-chrome__mobile-menu {
    display: none;
    position: relative;
}

.site-chrome__mobile-menu > summary {
    cursor: pointer;
    list-style: none;
}

.site-chrome__mobile-menu > summary::-webkit-details-marker {
    display: none;
}

.site-chrome__mobile-panel {
    background: #fff;
    border: 1px solid var(--site-chrome-line);
    border-radius: .75rem;
    box-shadow: 0 1rem 2rem rgb(3 32 57 / 14%);
    display: grid;
    gap: 1rem;
    padding: 1rem;
    position: absolute;
    right: 0;
    top: calc(100% + .6rem);
    width: min(22rem, calc(100vw - 2.5rem));
    z-index: 70;
}

.site-chrome__mobile-panel nav,
.site-chrome__mobile-shortcuts {
    display: grid;
    gap: .2rem;
}

.site-chrome__mobile-panel nav a,
.site-chrome__mobile-shortcuts a {
    align-items: center;
    border-radius: .45rem;
    color: var(--site-chrome-ink);
    display: flex;
    font-size: .925rem;
    font-weight: 650;
    gap: .65rem;
    justify-content: space-between;
    padding: .7rem;
}

.site-chrome__mobile-panel nav a:hover,
.site-chrome__mobile-shortcuts a:hover {
    background: var(--site-chrome-soft);
    color: var(--site-chrome-teal-dark);
}

.site-chrome__mobile-shortcuts {
    border-top: 1px solid var(--site-chrome-line);
    padding-top: .75rem;
}

.site-chrome__mobile-shortcuts a {
    justify-content: flex-start;
}

.site-chrome__mobile-shortcuts a > .site-icon {
    flex: 0 0 auto;
    height: 1.1rem;
    width: 1.1rem;
}

.site-chrome__mobile-label {
    flex: 1 1 auto;
}

.site-chrome__mobile-count {
    background: #eaf6f7;
    border-radius: 999px;
    color: var(--site-chrome-teal-dark);
    flex: 0 0 auto;
    font-size: .7rem;
    margin-left: auto;
    min-width: 1.35rem;
    padding: .1rem .35rem;
    text-align: center;
}

.site-chrome__sr-only {
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.site-chrome :focus-visible,
.site-chrome-footer :focus-visible,
#conteudo-principal :focus-visible {
    outline: 3px solid var(--site-chrome-teal);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .site-skip-link {
        transition: none;
    }
}

[data-whatsapp-discount-bar] {
    background: rgb(255 255 255 / 96%);
    border-top: 1px solid var(--site-chrome-line);
    bottom: 0;
    box-shadow: 0 -.5rem 1.5rem rgb(3 32 57 / 10%);
    color: var(--site-chrome-ink);
    left: 0;
    padding: 0;
    position: fixed;
    right: 0;
    z-index: 50;
}

[data-whatsapp-discount-bar] > div > div {
    padding: .75rem 1rem;
}

.whatsapp-discount-bar__inner {
    align-items: center;
    display: flex;
    gap: .75rem;
    justify-content: center;
    margin: 0 auto;
    max-width: 72rem;
    position: relative;
}

.whatsapp-discount-bar__message {
    align-items: center;
    display: flex;
    gap: .55rem;
}

.whatsapp-discount-bar__message svg {
    color: var(--site-chrome-teal-dark);
    flex: 0 0 auto;
    height: 1.25rem;
    width: 1.25rem;
}

.whatsapp-discount-bar__action {
    background: var(--site-chrome-teal-dark);
    border-radius: .5rem;
    color: #fff !important;
    font-weight: 700;
    padding: .6rem 1rem;
}

[data-whatsapp-discount-close] {
    background: #fff;
    border: 1px solid var(--site-chrome-line);
    border-radius: 50%;
    display: grid;
    flex: 0 0 auto;
    height: 2.5rem;
    place-items: center;
    width: 2.5rem;
}

@media (max-width: 42rem) {
    .whatsapp-discount-bar__inner {
        align-items: stretch;
        flex-direction: column;
        padding-right: 2.75rem;
        text-align: center;
    }

    .whatsapp-discount-bar__message {
        justify-content: center;
    }

    [data-whatsapp-discount-close] {
        position: absolute;
        right: 0;
        top: 0;
    }
}

.site-chrome-footer {
    background: #fff;
    border-top: 1px solid var(--site-chrome-line);
    margin-top: auto;
    padding: 1.5rem clamp(1.25rem, 4vw, 4rem);
}

.site-chrome-footer__grid,
.site-chrome-footer__bottom {
    margin: 0 auto;
    max-width: 90rem;
}

.site-chrome-footer__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(13rem, 1.35fr) repeat(4, minmax(8rem, 1fr));
}

.site-chrome-footer__brand img {
    height: auto;
    max-height: 2.8rem;
    max-width: 11.5rem;
}

.site-chrome-footer__brand p {
    color: var(--site-chrome-muted);
    font-size: .9rem;
    line-height: 1.55;
    margin: 1rem 0 0;
    max-width: 17rem;
}

.site-chrome-footer nav h2 {
    color: var(--site-chrome-navy);
    font-size: .9rem;
    line-height: 1.2;
    margin: .25rem 0 1rem;
}

.site-chrome-footer nav a {
    color: var(--site-chrome-muted);
    display: block;
    font-size: .84rem;
    line-height: 1.4;
    margin: 0 0 .65rem;
}

.site-chrome-footer nav a:hover {
    color: var(--site-chrome-teal-dark);
    text-decoration: underline;
    text-underline-offset: .2em;
}

.site-chrome-footer__bottom {
    align-items: center;
    color: var(--site-chrome-muted);
    display: flex;
    flex-wrap: nowrap;
    font-size: .78rem;
    gap: 1rem 2rem;
    justify-content: space-between;
}

.site-chrome-footer__bottom .site-chrome-footer__brand {
    flex-shrink: 0;
    margin-left: auto;
}

.site-chrome-footer__bottom .site-chrome-footer__brand img {
    display: block;
    width: clamp(6rem, 20vw, 11.5rem);
}

.site-chrome-footer__bottom p {
    margin: 0;
}

@media (max-width: 72rem) {
    .site-chrome__bar {
        gap: .8rem;
        grid-template-columns: auto minmax(10rem, 1fr) auto auto;
    }

    .site-chrome__nav {
        display: none;
    }

    .site-chrome__mobile-menu {
        display: block;
    }

    .site-chrome-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-chrome-footer__brand {
        grid-column: span 3;
    }
}

@media (max-width: 42rem) {
    .site-chrome__notice {
        font-size: .69rem;
        padding-block: .4rem;
    }

    .site-chrome__bar {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0;
        min-height: 6rem;
        padding: 0 1rem;
    }

    .site-chrome__brand {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 3rem;
        border-bottom: 1px solid var(--site-chrome-line);
        margin-inline: -1rem;
    }

    .site-chrome__brand img {
        max-height: 2rem;
    }

    .site-chrome__search {
        display: none;
    }

    .site-chrome__search--mobile {
        display: flex;
    }

    .site-chrome__actions {
        min-height: 3rem;
        gap: .25rem;
    }

    .site-chrome__action,
    .site-chrome__mobile-menu > summary {
        height: 2.4rem;
        width: 2.4rem;
    }

    .site-chrome__mobile-menu {
        justify-self: end;
    }

    .site-chrome-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-chrome-footer__brand {
        grid-column: span 2;
    }

    .site-chrome-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

.benefit-totals { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .65rem 1rem; margin-block: 1rem; }
.benefit-totals dd { margin: 0; text-align: right; }

/* Editable content pages inherit the public type and color palette. */
.managed-page { width: min(100% - 2.5rem, 72rem); margin: 0 auto; padding: clamp(2rem, 5vw, 4rem) 0; }
.managed-page h1 { max-width: 24ch; overflow-wrap: anywhere; margin: 0 0 1.75rem; }
.managed-page__body { max-width: 70ch; font-size: 1rem; line-height: 1.75; overflow-wrap: anywhere; }
.managed-page__body p { white-space: pre-line; margin: 0 0 1.25rem; }
.managed-page__image { display: block; max-width: 100%; max-height: 32rem; object-fit: contain; border-radius: 1rem; margin: 0 0 2rem; }
.managed-page-links { display: flex; flex-wrap: wrap; gap: 1rem 2rem; max-width: 82rem; margin: 0 auto; padding: 1.5rem; }
.managed-page-links a { color: #176a76; text-underline-offset: .2em; overflow-wrap: anywhere; }
