/* ========================================
   FONTES
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Sora:wght@400;500;600;700&display=swap');


/* ========================================
   VARIÁVEIS GLOBAIS
======================================== */

:root {

    /* CORES DA MARCA */

    --color-primary: #102A43;
    --color-primary-dark: #081B2C;

    --color-secondary: #16B8A6;
    --color-secondary-dark: #109688;


    /* CORES NEUTRAS */

    --color-white: #FFFFFF;

    --color-background: #F7F9FC;
    --color-background-soft: #EEF4F7;

    --color-text: #102A43;
    --color-text-secondary: #5F6B7A;

    --color-border: #DCE4EA;


    /* FONTES */

    --font-primary: 'Sora', sans-serif;
    --font-secondary: 'Inter', sans-serif;


    /* LAYOUT */

    --container-width: 1280px;


    /* BORDAS */

    --border-radius-sm: 8px;
    --border-radius-md: 14px;
    --border-radius-lg: 24px;


    /* EFEITOS */

    --transition: 0.3s ease;

    --shadow-sm:
        0 4px 14px rgba(16, 42, 67, 0.08);

    --shadow-md:
        0 12px 32px rgba(16, 42, 67, 0.12);
}


/* ========================================
   RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    background-color: var(--color-white);
    color: var(--color-text);

    font-family: var(--font-secondary);

    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


ul,
ol {
    list-style: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    border: none;
}


img {
    display: block;

    max-width: 100%;
}


/* ========================================
   HEADER
======================================== */

.header {
    position: relative;

    width: 100%;

    background-color: var(--color-primary-dark);

    z-index: 1000;
}


.header__nav {
    position: relative;

    width: 100%;
    max-width: 1480px;

    min-height: 96px;

    margin: 0 auto;
    padding: 16px 32px;

    display: flex;
    align-items: center;
}


/* ========================================
   LOGO
======================================== */

.header__logo {
    display: flex;
    align-items: center;

    margin-right: 48px;

    flex-shrink: 0;
}


.header__logo img {
    width: 180px;
    height: auto;
}


/* ========================================
   MENU PRINCIPAL
======================================== */

.header__menu {
    display: flex;
    align-items: center;

    gap: 2rem;
}


.header__menu > li {
    position: relative;
}


.header__menu a,
.header__link {
    color: var(--color-white);

    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 500;

    transition: var(--transition);
}


.header__menu > li > a:hover,
.header__link:hover {
    color: var(--color-secondary);
}


/* ========================================
   LINKS COM DROPDOWN
======================================== */

.header__link {
    display: flex;
    align-items: center;

    gap: 8px;
}


/* SETA */

.header__arrow {
    width: 7px;
    height: 7px;

    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;

    transform:
        rotate(45deg)
        translateY(-2px);

    transition: transform 0.25s ease;
}


.header__item--dropdown:hover
.header__arrow {
    transform:
        rotate(225deg)
        translate(-2px, -2px);
}


/* ========================================
   AÇÕES DO HEADER
======================================== */

.header__actions {
    margin-left: auto;

    margin-right: 0;

    display: flex;
    align-items: center;

    gap: 24px;

    flex-shrink: 0;
}


.header__login {
    color: var(--color-white);

    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 500;

    transition: var(--transition);
}


.header__login:hover {
    color: var(--color-secondary);
}


.header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 12px 22px;

    border-radius: 999px;

    background-color: var(--color-white);
    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    transition: var(--transition);
}


.header__cta:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);

    transform: translateY(-2px);
}


.header__cta span {
    font-size: 18px;

    transition: transform 0.3s ease;
}


.header__cta:hover span {
    transform: translateX(4px);
}


/* ========================================
   MEGA MENU - SOLUÇÕES
======================================== */

.header__mega-menu {
    position: absolute;

    top: calc(100% + 24px);
    left: 50%;

    width: 700px;

    padding: 28px;

    background-color: var(--color-white);

    border: 1px solid var(--color-border);
    border-radius: 0 0 22px 22px;

    box-shadow:
        0 24px 60px rgba(8, 27, 44, 0.18);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform:
        translate(-32%, 12px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 1000;
}


/* PONTE INVISÍVEL ENTRE O LINK E O MENU */

.header__mega-menu::before {
    content: "";

    position: absolute;

    top: -26px;
    left: 0;

    width: 100%;
    height: 26px;
}


.header__item--dropdown:hover
.header__mega-menu {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transform:
        translate(-32%, 0);
}


/* ========================================
   LINKS DO MEGA MENU
======================================== */

.header__mega-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 8px;
}


.header__mega-item {
    display: flex;
    align-items: center;

    gap: 16px;

    min-height: 92px;

    padding: 16px;

    border-radius: 14px;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}


.header__mega-item:hover {
    background-color: var(--color-background-soft);

    transform: translateY(-2px);
}


/* ========================================
   ÍCONE DO MEGA MENU
======================================== */

.header__mega-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

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


.header__mega-icon img {
    width: 32px;
    height: auto;
}


/* ========================================
   TEXTO DO MEGA MENU
======================================== */

.header__mega-content {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.header__mega-content strong {
    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
}


.header__mega-content small {
    color: var(--color-text-secondary);

    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;
}


/* ========================================
   MENU - SEGMENTOS
======================================== */

.header__mega-menu--segments {
    width: 680px;

    padding: 28px;
}


.header__segments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 8px;
}


.header__segment-item {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    min-height: 92px;

    padding: 17px;

    border-radius: 14px;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}


.header__segment-item:hover {
    background-color: var(--color-background-soft);

    transform: translateY(-2px);
}


.header__segment-marker {
    width: 9px;
    height: 9px;

    margin-top: 6px;

    flex-shrink: 0;

    border-radius: 50%;

    background-color: var(--color-secondary);
}


.header__segment-content {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.header__segment-content strong {
    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
}


.header__segment-content small {
    color: var(--color-text-secondary);

    font-size: 12px;

    line-height: 1.5;
}


/* ========================================
   ITEM DROPDOWN
======================================== */

.header__item--dropdown {
    position: relative;
}


/* ========================================
   MENU - MAIS
======================================== */

.header__more-menu {
    position: absolute;

    top: calc(100% + 14px);
    left: 50%;

    width: 480px;

    /* Não usar overflow hidden aqui */
    overflow: visible;

    background-color: var(--color-white);

    border: 1px solid var(--color-border);
    border-radius: 0 0 22px 22px;

    box-shadow:
        0 24px 60px rgba(8, 27, 44, 0.18);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translate(-45%, 12px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 1000;
}


/* ========================================
   PONTE INVISÍVEL
======================================== */

.header__more-menu::before {
    content: "";

    position: absolute;

    top: -18px;
    left: 0;

    width: 100%;
    height: 18px;

    background-color: transparent;
}


/* ========================================
   ABERTURA DO MENU
======================================== */

.header__item--dropdown:hover > .header__more-menu,
.header__item--dropdown:focus-within > .header__more-menu,
.header__more-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translate(-45%, 0);
}


/* ========================================
   CONTEÚDO INTERNO DO MENU
======================================== */

.header__more-header {
    padding: 24px 26px;

    background-color: var(--color-background-soft);

    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
}


.header__more-badge {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--color-secondary-dark);

    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}


.header__more-header strong {
    display: block;

    margin-bottom: 7px;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
}


.header__more-header p {
    color: var(--color-text-secondary);

    font-size: 12px;
    line-height: 1.6;
}


/* ========================================
   ITENS DO MENU MAIS
======================================== */

.header__more-grid {
    padding: 12px;

    background-color: var(--color-white);

    border-radius: 0 0 22px 22px;
}


.header__more-item {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding: 15px;

    border-radius: 12px;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}


.header__more-item:hover {
    background-color: var(--color-background-soft);

    transform: translateX(3px);
}


.header__more-marker {
    width: 8px;
    height: 8px;

    margin-top: 6px;

    flex-shrink: 0;

    border-radius: 50%;

    background-color: var(--color-secondary);
}


.header__more-content {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.header__more-content strong {
    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
}


.header__more-content small {
    color: var(--color-text-secondary);

    font-size: 12px;
    line-height: 1.5;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    width: 100%;

    padding: 90px 0 34px;

    background-color: #061522;

    color: var(--color-white);
}


/* ========================================
   CONTAINER DO FOOTER
======================================== */

.footer__container {
    width: 100%;
    max-width: var(--container-width);

    margin: 0 auto;
    padding: 0 32px;
}


/* ========================================
   PARTE PRINCIPAL DO FOOTER
======================================== */

.footer__main {
    display: grid;

    grid-template-columns:
        minmax(280px, 1.45fr)
        repeat(3, minmax(150px, 0.65fr));

    gap: 70px;
}


/* ========================================
   MARCA
======================================== */

.footer__brand {
    max-width: 360px;
}


.footer__logo {
    display: inline-flex;

    margin-bottom: 24px;
}


.footer__logo img {
    width: 180px;
    height: auto;
}


.footer__description {
    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.58);

    font-family: var(--font-secondary);
    font-size: 14px;

    line-height: 1.75;
}


/* CTA DO FOOTER */

.footer__cta {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: var(--color-secondary);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);
}


.footer__cta:hover {
    color: var(--color-white);
}


.footer__cta span {
    font-size: 18px;

    transition: transform 0.3s ease;
}


.footer__cta:hover span {
    transform: translateX(4px);
}


/* ========================================
   COLUNAS DO FOOTER
======================================== */

.footer__column h3 {
    margin-bottom: 22px;

    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.2px;
}


.footer__column ul {
    display: flex;
    flex-direction: column;

    gap: 13px;
}


.footer__column a {
    color: rgba(255, 255, 255, 0.54);

    font-family: var(--font-secondary);
    font-size: 13px;

    transition: var(--transition);
}


.footer__column a:hover {
    color: var(--color-secondary);
}


/* ========================================
   CONTATO DO FOOTER
======================================== */

.footer__column--contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.footer__contact-link {
    margin-bottom: 14px;
}


.footer__contact-text {
    margin-top: 8px;

    color: rgba(255, 255, 255, 0.38);

    font-size: 12px;
    line-height: 1.6;
}


/* ========================================
   DIVISOR
======================================== */

.footer__divider {
    width: 100%;
    height: 1px;

    margin: 70px 0 28px;

    background-color: rgba(255, 255, 255, 0.10);
}


/* ========================================
   PARTE INFERIOR DO FOOTER
======================================== */

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.footer__bottom p {
    color: rgba(255, 255, 255, 0.36);

    font-size: 12px;
}


/* LINKS LEGAIS */

.footer__legal {
    display: flex;
    align-items: center;

    gap: 26px;
}


.footer__legal a {
    color: rgba(255, 255, 255, 0.42);

    font-size: 12px;

    transition: var(--transition);
}


.footer__legal a:hover {
    color: var(--color-secondary);
}

/* ========================================
   BOTÃO DO MENU MOBILE
======================================== */

.header__toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 0;

    flex-shrink: 0;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;

    background-color: transparent;

    cursor: pointer;

    z-index: 1101;
}


.header__toggle span {
    display: block;

    width: 20px;
    height: 2px;

    border-radius: 999px;

    background-color: var(--color-white);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* BOTÃO ABERTO */

.header--open .header__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}


.header--open .header__toggle span:nth-child(2) {
    opacity: 0;
}


.header--open .header__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ========================================
   RESPONSIVIDADE GLOBAL
======================================== */


/* ========================================
   ATÉ 1200PX
======================================== */

@media (max-width: 1200px) {

    :root {
        --container-width: 1120px;
    }


    .header__nav {
        padding-left: 24px;
        padding-right: 24px;
    }


    .header__logo {
        margin-right: 34px;
    }


    .header__logo img {
        width: 165px;
    }


    .header__menu {
        gap: 22px;
    }


    .header__actions {
        gap: 16px;
    }


    .header__cta {
        padding-left: 18px;
        padding-right: 18px;

        font-size: 13px;
    }


    .footer__container {
        padding-left: 24px;
        padding-right: 24px;
    }


    .footer__main {
        gap: 45px;
    }

}


/* ========================================
   ATÉ 1050PX
======================================== */

@media (max-width: 1050px) {

    .header__logo {
        margin-right: 25px;
    }


    .header__menu {
        gap: 16px;
    }


    .header__menu a,
    .header__link,
    .header__login {
        font-size: 14px;
    }


    .header__actions {
        gap: 12px;
    }


    .header__cta {
        padding: 11px 16px;
    }

}


/* ========================================
   MENU MOBILE — ATÉ 992PX
======================================== */

@media (max-width: 992px) {

    body.menu-open {
        overflow: hidden;
    }


    .header {
        position: relative;
    }


    .header__nav {
        min-height: 78px;

        padding: 14px 24px;

        justify-content: space-between;
    }


    .header__logo {
        margin-right: 0;

        z-index: 1101;
    }


    .header__logo img {
        width: 160px;
    }


    .header__toggle {
        display: flex;

        margin-left: auto;
    }


    /* PAINEL PRINCIPAL */

    .header__menu {
        position: fixed;

        top: 0;
        right: 0;

        width: min(430px, 88vw);
        height: 100vh;

        padding:
            105px
            28px
            150px;

        display: flex;
        align-items: stretch;
        flex-direction: column;

        gap: 0;

        overflow-y: auto;

        background-color: var(--color-primary-dark);

        border-left: 1px solid rgba(255, 255, 255, 0.10);

        box-shadow:
            -24px 0 65px rgba(0, 0, 0, 0.30);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateX(100%);

        transition:
            transform 0.35s ease,
            opacity 0.35s ease,
            visibility 0.35s ease;

        z-index: 1100;
    }


    .header--open .header__menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateX(0);
    }


    .header__menu > li {
        width: 100%;

        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }


    .header__menu > li > a,
    .header__link {
        width: 100%;
        min-height: 58px;

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

        color: var(--color-white);

        font-family: var(--font-primary);
        font-size: 15px;
        font-weight: 500;
    }


    /* SETA MOBILE */

    .header__arrow {
        width: 8px;
        height: 8px;

        transform: rotate(45deg);
    }


    .header__item--dropdown:hover
    .header__arrow {
        transform: rotate(45deg);
    }


    .header__item--dropdown.is-open
    > .header__link
    .header__arrow {
        transform: rotate(225deg);
    }


    /* DROPDOWNS MOBILE */

    .header__mega-menu,
    .header__more-menu {
        position: static;

        width: 100%;

        max-height: 0;

        padding: 0;

        overflow: hidden;

        border: none;
        border-radius: 0;

        background-color: transparent;

        box-shadow: none;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: none;

        transition:
            max-height 0.4s ease,
            padding 0.4s ease;
    }


    .header__mega-menu::before,
    .header__more-menu::before {
        display: none;
    }


    .header__item--dropdown:hover
    .header__mega-menu,
    .header__item--dropdown:hover
    .header__more-menu,
    .header__item--dropdown:focus-within
    .header__more-menu {
        transform: none;
    }


    .header__item--dropdown.is-open
    > .header__mega-menu,
    .header__item--dropdown.is-open
    > .header__more-menu {
        max-height: 900px;

        padding-bottom: 18px;
    }


    /* SOLUÇÕES E SEGMENTOS */

    .header__mega-links,
    .header__segments-grid {
        grid-template-columns: 1fr;

        gap: 6px;
    }


    .header__mega-item,
    .header__segment-item {
        min-height: auto;

        padding: 14px;

        border-radius: 10px;

        background-color: rgba(255, 255, 255, 0.045);
    }


    .header__mega-item:hover,
    .header__segment-item:hover {
        background-color: rgba(22, 184, 166, 0.10);

        transform: none;
    }


    .header__mega-content strong,
    .header__segment-content strong {
        color: var(--color-white);

        font-size: 13px;
    }


    .header__mega-content small,
    .header__segment-content small {
        color: rgba(255, 255, 255, 0.52);
    }


    .header__mega-icon {
        width: 38px;
        height: 38px;
    }


    .header__mega-icon img {
        width: 27px;
    }


    /* MENU MAIS */

    .header__more-header {
        margin-bottom: 8px;

        padding: 18px;

        border: none;
        border-radius: 10px;

        background-color: rgba(255, 255, 255, 0.06);
    }


    .header__more-header strong {
        color: var(--color-white);

        font-size: 16px;
    }


    .header__more-header p {
        color: rgba(255, 255, 255, 0.52);
    }


    .header__more-grid {
        padding: 0;

        background-color: transparent;
    }


    .header__more-item {
        padding: 14px;

        border-radius: 10px;

        background-color: rgba(255, 255, 255, 0.04);
    }


    .header__more-item + .header__more-item {
        margin-top: 6px;
    }


    .header__more-item:hover {
        background-color: rgba(22, 184, 166, 0.10);

        transform: none;
    }


    .header__more-content strong {
        color: var(--color-white);

        font-size: 13px;
    }


    .header__more-content small {
        color: rgba(255, 255, 255, 0.52);
    }


    .header__more-footer {
        margin-top: 12px;
        padding: 14px 4px 0;

        display: flex;
        align-items: center;
        flex-wrap: wrap;

        gap: 10px;

        border-top: 1px solid rgba(255, 255, 255, 0.10);
    }


    .header__more-footer a {
        color: rgba(255, 255, 255, 0.55);

        font-size: 11px;
    }


    .header__more-footer > span {
        width: 4px;
        height: 4px;

        border-radius: 50%;

        background-color: var(--color-secondary);
    }


    /* AÇÕES DO MENU */

    .header__actions {
        position: fixed;

        right: 0;
        bottom: 0;

        width: min(430px, 88vw);

        padding:
            20px
            28px
            24px;

        display: flex;
        align-items: stretch;
        flex-direction: column;

        gap: 10px;

        border-top: 1px solid rgba(255, 255, 255, 0.10);

        background-color: var(--color-primary-dark);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateX(100%);

        transition:
            transform 0.35s ease,
            opacity 0.35s ease,
            visibility 0.35s ease;

        z-index: 1101;
    }


    .header--open .header__actions {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateX(0);
    }


    .header__login {
        width: 100%;
        min-height: 46px;

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

        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 999px;
    }


    .header__cta {
        width: 100%;
        min-height: 48px;

        padding: 0 20px;

        background-color: var(--color-secondary);
        color: var(--color-primary-dark);
    }


    /* FUNDO ESCURECIDO */

    .header::after {
        content: "";

        position: fixed;
        inset: 0;

        background-color: rgba(2, 12, 20, 0.68);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition:
            opacity 0.35s ease,
            visibility 0.35s ease;

        z-index: 1090;
    }


    .header--open::after {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }


    /* FOOTER */

    .footer__main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 55px 45px;
    }


    .footer__brand {
        max-width: 440px;
    }

}


/* ========================================
   ATÉ 768PX
======================================== */

@media (max-width: 768px) {

    .header__nav {
        min-height: 72px;

        padding-left: 20px;
        padding-right: 20px;
    }


    .header__logo img {
        width: 145px;
    }


    .header__toggle {
        width: 42px;
        height: 42px;
    }


    .footer {
        padding-top: 70px;
    }


    .footer__container {
        padding-left: 20px;
        padding-right: 20px;
    }


    .footer__main {
        grid-template-columns: 1fr;

        gap: 46px;
    }


    .footer__brand {
        max-width: 520px;
    }


    .footer__divider {
        margin-top: 50px;
    }


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

        gap: 18px;
    }


    .footer__legal {
        flex-wrap: wrap;

        gap: 14px 22px;
    }

}


/* ========================================
   ATÉ 576PX
======================================== */

@media (max-width: 576px) {

    .header__nav {
        min-height: 68px;

        padding: 12px 16px;
    }


    .header__logo img {
        width: 135px;
    }


    .header__toggle {
        width: 40px;
        height: 40px;

        border-radius: 8px;
    }


    .header__menu {
        width: 100%;

        padding:
            90px
            20px
            145px;
    }


    .header__actions {
        width: 100%;

        padding:
            16px
            20px
            20px;
    }


    .header__menu > li > a,
    .header__link {
        min-height: 54px;

        font-size: 14px;
    }


    .header__mega-item,
    .header__segment-item,
    .header__more-item {
        padding: 12px;
    }


    .header__mega-icon {
        display: none;
    }


    .footer {
        padding:
            62px
            0
            26px;
    }


    .footer__logo img {
        width: 155px;
    }


    .footer__description {
        font-size: 13px;
    }


    .footer__column h3 {
        margin-bottom: 18px;
    }


    .footer__bottom p,
    .footer__legal a {
        font-size: 11px;
    }

}

/* ========================================
   PADRONIZAÇÃO DEFINITIVA DO HEADER
======================================== */

/* ========================================
   HEADER — PADRÃO COMPACTO
======================================== */

.header {
    position: relative;

    width: 100%;

    background-color: var(--color-primary-dark);

    z-index: 1000;
}


.header__nav {
    position: relative;

    width: 100%;
    max-width: 1380px;
    min-height: 96px;

    margin: 0 auto;
    padding: 14px 32px;

    display: flex;
    align-items: center;
}


.header__logo {
    display: flex;
    align-items: center;

    margin-right: 46px;

    flex-shrink: 0;
}


.header__logo img {
    display: block;

    width: 190px;
    height: auto;
}


.header__menu {
    display: flex;
    align-items: center;

    gap: 30px;
}


.header__menu > li > a,
.header__link {
    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
}


.header__actions {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 24px;

    flex-shrink: 0;
}


.header__login {
    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
}


.header__cta {
    min-width: 240px;
    min-height: 54px;

    padding: 0 24px;

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

    gap: 15px;

    border: 1px solid var(--color-white);
    border-radius: 999px;

    background-color: var(--color-white);
    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;
}


.header__cta span {
    color: var(--color-primary-dark);

    font-size: 18px;
}


.header__cta:hover {
    border-color: var(--color-secondary);

    background-color: var(--color-secondary);
    color: var(--color-primary-dark);

    transform: translateY(-2px);
}

/* ========================================
   INTERACOES GLOBAIS
======================================== */

.header {
    position: sticky;
    top: 0;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.header--scrolled {
    background-color: rgba(8, 27, 44, 0.96);
    box-shadow: 0 10px 35px rgba(4, 16, 27, 0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.js-enabled .scroll-reveal {
    opacity: 0;
    transition:
        opacity 0.6s ease,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-enabled .scroll-reveal--text {
    transform: translateY(16px);
}

.js-enabled .scroll-reveal--visual {
    transform: translateY(12px) scale(0.985);
}

.js-enabled .scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.js-enabled .scroll-reveal--visual.is-visible {
    transform: translateY(0) scale(1);
}

.back-to-top {
    position: fixed;
    right: clamp(18px, 3vw, 36px);
    bottom: clamp(18px, 3vw, 36px);
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    z-index: 900;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    box-shadow: 0 12px 30px rgba(8, 27, 44, 0.22);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.9);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.back-to-top span {
    font-size: 22px;
    line-height: 1;
}

.back-to-top:hover {
    background: #39cfbe;
    transform: translateY(-3px) scale(1);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .js-enabled .scroll-reveal,
    .back-to-top,
    .header {
        transition: none;
    }

}

@media (max-width: 768px) {
    .js-enabled .scroll-reveal--text {
        transform: translateY(10px);
    }

    .js-enabled .scroll-reveal--visual {
        transform: translateY(8px);
    }

    .js-enabled .scroll-reveal.is-visible {
        transform: translateY(0);
    }
}
