@font-face {
    font-family: 'Muli';
    src: url('../font/muli/Muli-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Muli';
    src: url('../font/muli/Muli-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Muli';
    src: url('../font/muli/Muli-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: 'DK Crayon Crumble';
    src: url('../font/DK Crayon Crumble.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

:root {
    /* ── Fontes ── */
    --font-primary: 'Muli', sans-serif;
    --font-display: 'DK Crayon Crumble', sans-serif;

    /* ── Cores Neutras ── */
    --color-black:      #000000;
    --color-gray-dark:  #222222;
    --color-gray-mid:   #dadada;
    --color-gray-light: #e6e6e6;
    --color-gray-soft:  #f0f0f0;
    --color-white:      #ffffff;

    /* ── Cores de Marca ── */
    --color-navy-dark:   #003083;
    --color-navy-deep:   #171d36;
    --color-blue-deep:   #1a4592;
    --color-blue-main:   #288ecd;
    --color-blue-bright: #62b7f4;
    --color-blue-light:  #a5d4ff;
    --color-blue-sky:    #cce6ff;
    --color-blue-pale:   #dff0ff;
    --color-green:       #6ee67b;

    /* ── Gradientes ── */
    --gradient-primary:      linear-gradient(90deg, #1a4592, #288ecd);
    --gradient-secondary:    linear-gradient(90deg, #2bb0c1, #194188);
    --gradient-light:        linear-gradient(90deg, #f0f0f0, #288ecd);
    --gradient-vertical:     linear-gradient(180deg, #1a4592, #288ecd);
    --gradient-inverse:      linear-gradient(90deg, #288ecd, #1a4592);
    --gradient-accent:       linear-gradient(90deg, #a5d4ff, #288ecd);
    --gradient-vibrant:      linear-gradient(90deg, #001aad, #cb6ce6);

    /* ── Aliases de Compatibilidade ── */
    --bg-page:               var(--color-white);
    --bg-section-light:      var(--color-gray-soft);
    --bg-section-dark:       var(--color-navy-deep);
    --text-white:            var(--color-white);
    --text-dark:             var(--color-black);
    --text-mid:              var(--color-gray-dark);
    --text-blue:             var(--color-blue-deep);
    --text-muted:            var(--color-gray-mid);
    --color-brand-blue:      var(--color-blue-main);
    --color-info-bg:         var(--color-blue-pale);
    --color-navy:            var(--color-navy-dark);
    --color-success:         var(--color-blue-main);
    
    /* ── Gradientes Herdados ── */
    --gradient-cta:          var(--gradient-primary);
    --gradient-blue:         var(--gradient-primary);
    --gradient-blue-v:        var(--gradient-vertical);
    --gradient-blue-v-inv:    linear-gradient(180deg, #288ecd, #1a4592);
    --gradient-problema:     var(--gradient-vibrant);
    --gradient-purple:       var(--gradient-vibrant);
    --gradient-text:         var(--gradient-primary);

    /* ── Bordas e sombras ── */
    --border-subtle:      rgba(255, 255, 255, 0.10);
    --shadow-card:        0 10px 28px rgba(15, 23, 42, .06);
    --shadow-card-hover:  0 18px 42px rgba(15, 23, 42, .10);

    /* ── Transição padrão ── */
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}


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

/* ─── Lenis smooth scroll boilerplate ─── */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}
/* ─────────────────────────────────────── */

html {
    /* scroll-behavior: smooth removido — o Lenis gerencia o scroll suave */
    background: var(--color-navy-deep);
}

body {
    font-family: var(--font-primary) !important;
    background: var(--color-navy-deep);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased
}

.site-wrapper {
    position: relative;
    z-index: 1;
    padding-top: 107px
}

/* fullPage.js: remove padding do wrapper — cada section recebe paddingTop via JS */
html.fp-enabled .site-wrapper {
    padding-top: 0;
}

/* fullPage.js: seções ocupam 100vh com scroll interno quando o conteúdo excede */
.fp-overflow {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container {
    width: min(100vw, 1140px);
    margin: 0 auto;
    padding: 0px
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 40px 0 22px;
    background: transparent;
    transition: background .35s cubic-bezier(.4, 0, .2, 1), padding .35s cubic-bezier(.4, 0, .2, 1), box-shadow .35s cubic-bezier(.4, 0, .2, 1)
}

.navbar.scrolled {
    padding: 10px 0;
    background: var(--color-navy-deep);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px
}

.navbar__logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
    flex-shrink: 0
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -.3px;
    color: var(--text-white)
}

.logo-main strong {
    font-weight: 900
}

.logo-sub {
    font-size: .55rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 3px
}

.navbar__flex {
    display: flex;
    gap: 10px
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none
}

.navbar__nav a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-white);
    text-decoration: none;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 1)
}

.navbar__nav a:hover {
    color: var(--text-muted)
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
    background: var(--gradient-primary);
    border: none;
    border-radius: 6px;
    padding: 9px 31px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: .01em
}

.btn-primary:hover {
    opacity: .88;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(80, 98, 200, 0.35)
}

.navbar__mobile-actions {
    display: none;
    align-items: center;
    gap: 10px
}

.navbar__cta--mobile-bar {
    display: inline-flex
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px
}

.navbar__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px
}

.navbar__offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: 300px;
    max-width: 85vw;
    background: var(--bg-section-dark);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 30px 24px;
    gap: 24px;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto
}

.navbar.scrolled .navbar__offcanvas {
    top: 0
}

.navbar__overlay, .navbar__cta-mobile {
    display: none
}

.footer {
    background: #1a4592;
    padding: 60px 0 70px;
    color: var(--text-white)
}

.footer__top {
    display: grid;
    grid-template-columns: 1.35fr .9fr .8fr 1.1fr;
    gap: 50px;
    align-items: start;
    padding: 0 70px
}

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

.footer__logo {
    display: inline-flex;
    margin-bottom: 18px;
    text-decoration: none
}

.footer__logo img {
    height: 33px;
    width: auto;
    display: block
}

.footer__brand-text {
    font-size: 1rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 22px
}

.footer__produto {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px
}

.footer__produto-label {
    font-size: .95rem;
    line-height: 1;
    color: rgba(255, 255, 255, .96);
    font-weight: 600
}

.footer__produto img {
    height: 32px;
    width: auto;
    display: block
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 14px
}

.footer__social-link {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition)
}

.footer__social-link:hover {
    opacity: .8;
    transform: translateY(-1px)
}

.footer__social-link svg {
    width: 100%;
    height: 100%;
    display: block
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.footer__title {
    font-size: .98rem;
    line-height: 1;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 8px
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.footer__list li,
.footer__list a {
    font-size: 1rem;
    line-height: 1.15;
    color: rgba(255, 255, 255, .95);
    text-decoration: none;
    transition: var(--transition)
}

.footer__list a:hover {
    opacity: .82
}

.footer__support {
    margin-top: 12px
}

.footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, .12);
    margin: 42px 0
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.footer__copy,
.footer__dev {
    font-size: .98rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, .96)
}

.footer__dev strong {
    font-weight: 700
}

@media (prefers-reduced-motion:no-preference) {
    [data-reveal] {
        opacity: 0;
        transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1);
        will-change: opacity, transform
    }

    [data-reveal="fade-up"] {
        transform: translateY(52px)
    }

    [data-reveal="fade-left"] {
        transform: translateX(-52px)
    }

    [data-reveal="fade-right"] {
        transform: translateX(52px)
    }

    [data-reveal="fade-in"] {
        transform: none
    }

    [data-reveal="scale-up"] {
        transform: scale(.90) translateY(20px)
    }

    /* Delays aplicados no estado base para garantir que o browser
       os respeite no momento exato que is-revealed é adicionado */
    [data-reveal][data-delay="100"]  { transition-delay: .10s }
    [data-reveal][data-delay="150"]  { transition-delay: .15s }
    [data-reveal][data-delay="200"]  { transition-delay: .20s }
    [data-reveal][data-delay="250"]  { transition-delay: .25s }
    [data-reveal][data-delay="300"]  { transition-delay: .30s }
    [data-reveal][data-delay="350"]  { transition-delay: .35s }
    [data-reveal][data-delay="400"]  { transition-delay: .40s }
    [data-reveal][data-delay="500"]  { transition-delay: .50s }
    [data-reveal][data-delay="600"]  { transition-delay: .60s }
    [data-reveal][data-delay="700"]  { transition-delay: .70s }

    [data-reveal].is-revealed {
        opacity: 1;
        transform: none !important
    }
}

/* No mobile, desativa fade-in/transform do data-reveal para evitar conteúdo invisível em carrosseis */
@media (max-width: 1140px) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width:1400px) {
    .container {
        padding: 0 40px
    }

    .footer__top {
        padding: 0 30px
    }
}

@media (max-width:1199px) {
    .container {
        padding: 0 32px
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding: 0 20px
    }
}

@media (max-width:1024px) {
    .container {
        padding: 0 30px
    }

    .navbar__nav a {
        font-size: .65rem
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 0 16px
    }
}

@media (max-width:991px) {
    .container {
        padding: 0 30px
    }

    .navbar__flex {
        display: none
    }

    .navbar__flex--mobile {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 16px
    }

    .navbar__cta-mobile {
        display: block;
    }

    .navbar__overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        z-index: 998
    }

    .navbar__overlay.is-open {
        opacity: 1;
        visibility: visible
    }

    .navbar__offcanvas {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 300px;
        max-width: 85vw;
        background: var(--bg-section-dark);
        flex-direction: column;
        align-items: stretch;
        padding: 30px 24px;
        gap: 24px;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        overflow-y: auto
    }

    .navbar__offcanvas.is-open {
        transform: translateX(0)
    }

    .navbar__offcanvas-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border-subtle)
    }

    .navbar__offcanvas-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-white);
        text-transform: uppercase;
        letter-spacing: 0.05em
    }

    .navbar__close {
        background: none;
        border: none;
        color: var(--text-white);
        font-size: 2.2rem;
        line-height: 1;
        cursor: pointer;
        padding: 0;
        transition: var(--transition)
    }

    .navbar__close:hover {
        color: var(--color-brand-blue)
    }

    .navbar__nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%
    }

    .navbar__nav a {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
        width: 100%;
        text-shadow: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05)
    }

    .navbar__cta {
        width: 100%;
        justify-content: center
    }

    .navbar__mobile-actions {
        display: flex
    }

    .navbar__cta--mobile-bar {
        padding: 8px 16px;
        font-size: .75rem
    }

    .navbar__toggle {
        display: flex
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding: 0
    }
}

@media (max-width:768px) {
    .container {
        padding: 0 30px
    }

    .navbar {
        padding: 30px 0px 10px;
    }

    .navbar.scrolled {
        padding: 10px 0
    }

    .navbar__logo img {
        height: 28px;
        width: auto
    }

    .site-wrapper {
        padding-top: 70px
    }

    .footer {
        padding: 40px 0 28px
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0
    }

    .footer__brand-text {
        margin-bottom: 18px
    }

    .footer__produto {
        margin-bottom: 18px
    }

    .footer__divider {
        margin: 30px 0 20px
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }

    .footer__copy,
    .footer__dev,
    .footer__list li,
    .footer__list a {
        font-size: .92rem
    }
}

@media (max-width:560px) {
    .container {
        padding: 0 30px
    }

    .navbar {
        padding: 30px 0px 10px;
    }

    .footer {
        padding: 36px 0 24px
    }

    .footer__brand-text {
        font-size: .92rem
    }

    .footer__title {
        font-size: .9rem
    }

    .footer__list li,
    .footer__list a {
        font-size: .88rem
    }

    .footer__copy,
    .footer__dev {
        font-size: .88rem
    }
}

@media (max-width:440px) {
    .container {
        padding: 0 30px
    }

    .navbar {
        padding: 30px 0px 10px;
    }

    .navbar__inner {
        gap: 16px
    }

    .logo-main {
        font-size: 1.25rem
    }

    .footer {
        padding: 30px 0 20px
    }

    .footer__top {
        gap: 22px
    }

    .footer__logo img {
        height: 28px
    }

    .footer__brand-text {
        font-size: .88rem
    }

    .footer__title {
        font-size: .85rem
    }

    .footer__list {
        gap: 10px
    }

    .footer__list li,
    .footer__list a {
        font-size: .85rem
    }

    .footer__divider {
        margin: 22px 0 16px
    }

    .footer__copy,
    .footer__dev {
        font-size: .8rem
    }

    .footer__social {
        gap: 10px
    }

    .footer__social-link {
        width: 22px;
        height: 22px
    }
}

@media (max-width:400px) {
    .container {
        padding: 0 30px
    }

    .navbar {
        padding: 30px 0px 10px;
    }

    .logo-main {
        font-size: 1.15rem
    }

    .logo-sub {
        font-size: .48rem
    }

    .footer {
        padding: 26px 0 18px
    }

    .footer__top {
        gap: 18px
    }

    .footer__logo img {
        height: 26px
    }

    .footer__brand-text {
        font-size: .82rem
    }

    .footer__title {
        font-size: .8rem;
        margin-bottom: 5px
    }

    .footer__col {
        gap: 10px
    }

    .footer__list {
        gap: 8px
    }

    .footer__list li,
    .footer__list a {
        font-size: .8rem
    }

    .footer__divider {
        margin: 18px 0 14px
    }

    .footer__bottom {
        gap: 8px
    }

    .footer__copy,
    .footer__dev {
        font-size: .75rem
    }

    .footer__social-link {
        width: 20px;
        height: 20px
    }

    .footer__produto img {
        height: 26px
    }

    .footer__produto-label {
        font-size: .82rem
    }
}

#fp-nav ul li a span, .fp-slidesNav ul li a span {
    background: var(--gradient-primary) !important;
}

/* ═══════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s cubic-bezier(.4, 0, .2, 1), visibility .6s;
    overflow: hidden;
}

body:has(#preloader:not(.is-hidden)) {
    overflow: hidden;
}

#preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.preloader__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: preloaderOrb 4s ease-in-out infinite alternate;
}

.preloader__orb--1 {
    width: 500px;
    height: 500px;
    top: -220px;
    left: -260px;
    background: radial-gradient(circle at 40% 40%, rgba(40, 142, 205, .32), transparent 70%);
    filter: blur(60px);
    animation-delay: 0s;
}

.preloader__orb--2 {
    width: 400px;
    height: 400px;
    bottom: -180px;
    right: -200px;
    background: radial-gradient(circle at 60% 60%, rgba(26, 69, 146, .28), transparent 70%);
    filter: blur(50px);
    animation-delay: -2s;
}

@keyframes preloaderOrb {
    from { transform: scale(1) translate(0, 0); }
    to   { transform: scale(1.15) translate(10px, -10px); }
}

.preloader__logo-wrap {
    animation: preloaderFadeIn .7s ease-out both;
}

.preloader__logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 24px rgba(40, 142, 205, .5));
}

@keyframes preloaderFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.preloader__bar-wrap {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, .1);
    border-radius: 99px;
    overflow: hidden;
    animation: preloaderFadeIn .7s .15s ease-out both;
}

.preloader__bar {
    height: 100%;
    width: 0%;
    border-radius: 99px;
    background: linear-gradient(90deg, #288ecd, #62b7f4, #288ecd);
    background-size: 200% 100%;
    animation: preloaderBar 1.8s cubic-bezier(.4, 0, .2, 1) forwards,
               preloaderShimmer 1.2s .2s linear infinite;
}

@keyframes preloaderBar {
    0%   { width: 0%; }
    60%  { width: 75%; }
    100% { width: 100%; }
}

@keyframes preloaderShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.preloader__tagline {
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin: 0;
    animation: preloaderFadeIn .7s .25s ease-out both;
}

/* ════════════════════════════════════════════════
   LOGO — RESPONSIVIDADE POR ALTURA DE VIEWPORT
   Cobre notebooks com zoom 125 % / 150 % e telas
   com resolução vertical reduzida (≤ 900 px CSS).
   Só ativa em larguras > 768 px (acima do mobile).
════════════════════════════════════════════════ */
@media (max-height: 900px) and (min-width: 769px) {
    .navbar__logo img {
        height: 30px;
        width: auto
    }

    .logo-main { font-size: 1.3rem }
    .logo-sub  { font-size: .5rem }
}

@media (max-height: 768px) and (min-width: 769px) {
    .navbar__logo img {
        height: 26px;
        width: auto
    }

    .logo-main { font-size: 1.15rem }
    .logo-sub  { font-size: .46rem }

    /* Navbar mais compacto em telas muito curtas */
    .navbar       { padding: 10px 0 }
    .navbar.scrolled { padding: 6px 0 }
}

@media (max-height: 650px) and (min-width: 769px) {
    .navbar__logo img {
        height: 22px;
        width: auto
    }

    .logo-main { font-size: 1rem }
}

/* ── Login dropdown ── */
.navbar__login-wrap {
    position: relative
}

.navbar__login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.35);
    color: var(--text-white);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color .2s, background .2s
}

.navbar__login-btn:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.07)
}

.navbar__login-chevron {
    transition: transform .25s
}

.navbar__login-btn[aria-expanded="true"] .navbar__login-chevron {
    transform: rotate(180deg)
}

.navbar__login-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #1a1f3a;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 6px 0;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 9000;
    list-style: none;
    margin: 0
}

.navbar__login-dropdown.is-open {
    display: block
}

.navbar__login-dropdown li a {
    display: block;
    padding: 10px 18px;
    color: var(--text-white);
    font-size: .88rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s
}

.navbar__login-dropdown li a:hover {
    background: rgba(255,255,255,0.08)
}

/* login button — mobile bar (icon only) */
.navbar__login-btn--mobile {
    padding: 7px 10px;
    gap: 3px
}

.navbar__login-dropdown--mobile {
    right: 0;
    left: auto
}

/* offcanvas login section */
.navbar__offcanvas-login {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px
}

.navbar__offcanvas-login-title {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,0.45);
    margin: 0 0 2px
}

.navbar__offcanvas-login-link {
    display: block;
    padding: 10px 0;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: opacity .15s
}

.navbar__offcanvas-login-link:hover {
    opacity: .7
}
    .logo-sub  { display: none }
}

/* ── Banner LGPD ─────────────────────────────────────────────────────────── */
.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #111827;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 24px;
    transform: translateY(0);
    transition: transform .4s ease, opacity .4s ease;
    opacity: 1
}

.lgpd-banner--hidden {
    transform: translateY(100%);
    opacity: 0
}

.lgpd-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.lgpd-banner__text {
    flex: 1;
    min-width: 200px;
    font-size: .875rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.5
}

.lgpd-banner__link {
    color: #818cf8;
    text-decoration: underline
}

.lgpd-banner__link:hover {
    color: #a5b4fc
}

.lgpd-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0
}

.lgpd-banner__btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .15s, background .15s;
    border: none
}

.lgpd-banner__btn--accept {
    background: #4F46E5;
    color: #fff
}

.lgpd-banner__btn--accept:hover {
    background: #4338ca
}

.lgpd-banner__btn--more {
    background: transparent;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.2)
}

.lgpd-banner__btn--more:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.5)
}

/* ── Footer Legal ─────────────────────────────────────────────────────────── */
.footer__legal {
    font-size: .8rem;
    color: rgba(255,255,255,0.45);
    margin: 0
}

.footer__legal a {
    color: rgba(255,255,255,0.45);
    text-decoration: underline;
    transition: color .15s
}

.footer__legal a:hover {
    color: rgba(255,255,255,0.8)
}


.ecossistema__flow-login {
    display: grid;
    grid-template-columns: repeat(2, 300px);
    gap: 42px;
    align-items: start;
    position: relative;
    padding-top: 56px;
    padding-bottom: 80px;
    justify-content: center
}