:root {
    --navy: #00132E;
    --navym: #002E61;
    --blue: #015B97;
    --bluel: #1A7AC0;
    --orange: #F57B00;
    --oranged: #E76A0E;
    --gray: #F1F1F1;
    --text: #5B6472;
    --ease: cubic-bezier(.16, 1, .3, 1)
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: var(--navy);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: none
}

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

ul {
    list-style: none
}

img {
    max-width: 100%;
    display: block
}

#cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s
}

#cursor-ring {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(245, 123, 0, .45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .25s var(--ease), height .25s var(--ease), background .2s
}

body.link-hover #cursor-dot {
    width: 12px;
    height: 12px
}

body.link-hover #cursor-ring {
    width: 52px;
    height: 52px;
    background: rgba(245, 123, 0, .08);
    border-color: var(--orange)
}

#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background .4s, padding .4s, box-shadow .4s
}

#nav.scrolled {
    padding: 12px 0;
    background: #155287;
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .07)
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: .03em
}

.logo-text em {
    color: var(--orange);
    font-style: normal
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px
}

.nav-link {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    transition: color .15s, background .15s;
    position: relative
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1.5px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s var(--ease)
}

.nav-link:hover {
    color: #fff
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1)
}

.nav-link.active {
    color: #fff
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    padding: 11px 22px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 600;
    transition: transform .2s var(--ease), box-shadow .2s, background .18s
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 123, 0, .35);
    background: var(--oranged)
}

.nav-mob {
    display: none;
    padding: 8px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .85);
    cursor: pointer;
    flex-shrink: 0
}

.nav-mob .hline {
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), opacity .25s;
    transform-box: fill-box;
    transform-origin: center
}

.nav-mob.open .hline-1 {
    transform: rotate(45deg) translate(4.5px, 5px)
}

.nav-mob.open .hline-2 {
    opacity: 0
}

.nav-mob.open .hline-3 {
    transform: rotate(-45deg) translate(4.5px, -5px)
}

.mob-drawer {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(0, 19, 46, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 32px 48px;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease)
}

.mob-drawer.open {
    opacity: 1;
    pointer-events: all
}

.mob-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 36px
}

.mob-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(34px, 8vw, 52px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .45);
    padding: 6px 24px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(28px);
    transition: color .15s, opacity .45s var(--ease), transform .45s var(--ease)
}

.mob-drawer.open .mob-link {
    opacity: 1;
    transform: translateY(0)
}

.mob-drawer.open .mob-link:nth-child(1) {
    transition-delay: .06s
}

.mob-drawer.open .mob-link:nth-child(2) {
    transition-delay: .11s
}

.mob-drawer.open .mob-link:nth-child(3) {
    transition-delay: .16s
}

.mob-drawer.open .mob-link:nth-child(4) {
    transition-delay: .21s
}

.mob-drawer.open .mob-link:nth-child(5) {
    transition-delay: .26s
}

.mob-link:hover {
    color: #fff
}

.mob-link.active {
    color: var(--orange)
}

.mob-cta-wrap {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .4s .3s var(--ease), transform .4s .3s var(--ease)
}

.mob-drawer.open .mob-cta-wrap {
    opacity: 1;
    transform: translateY(0)
}

.mob-close {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: none;
    color: rgba(255, 255, 255, .7);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .18s
}

.mob-close:hover {
    background: rgba(255, 255, 255, .16)
}

@media(max-width:768px) {

    .nav-links,
    .nav-cta {
        display: none !important
    }

    .nav-mob {
        display: flex;
        align-items: center;
        justify-content: center
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: none;
    transition: transform .22s var(--ease), box-shadow .22s, background .18s
}

.btn:hover {
    transform: translateY(-2px)
}

.btn:active {
    transform: scale(.97)
}

.btn svg {
    transition: transform .2s var(--ease)
}

.btn:hover svg {
    transform: translateX(3px)
}

.btn-orange {
    background: var(--orange);
    color: #fff
}

.btn-orange:hover {
    background: var(--oranged);
    box-shadow: 0 10px 32px rgba(245, 123, 0, .32)
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .4)
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .7)
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px
}

.eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--orange);
    flex-shrink: 0
}

.eyebrow-light {
    color: #F8A855
}

.eyebrow-light::before {
    background: #F8A855
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--blue);
    line-height: .95;
    font-size: clamp(35px, 5.5vw, 80px)
}

.section-title-white {
    color: #fff
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px
}

.section {
    padding: 96px 0
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal.on {
    opacity: 1;
    transform: translateY(0)
}

.reveal-l {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal-l.on {
    opacity: 1;
    transform: translateX(0)
}

.reveal-r {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal-r.on {
    opacity: 1;
    transform: translateX(0)
}

.footer {
    background: var(--navy);
    padding: 40px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, .05)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, .25)
}

.footer-grupo {
    font-size: 12px;
    color: rgba(255, 255, 255, .25)
}

.footer-grupo span {
    color: rgba(255, 255, 255, .45)
}

.footer-lnk {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .48);
    transition: color .15s
}

.footer-lnk:hover {
    color: var(--orange)
}

#back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(245, 123, 0, .35);
    opacity: 0;
    transform: translateY(12px) scale(.88);
    transition: opacity .35s var(--ease), transform .35s var(--ease), background .18s, box-shadow .18s;
    pointer-events: none
}

#back-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all
}

#back-top:hover {
    background: var(--oranged);
    box-shadow: 0 8px 28px rgba(245, 123, 0, .48);
    transform: translateY(-3px) scale(1.07)
}

#back-top:active {
    transform: scale(.95)
}

#back-top svg {
    transition: transform .2s var(--ease)
}

#back-top:hover svg {
    transform: translateY(-2px)
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }

    .reveal,
    .reveal-l,
    .reveal-r {
        opacity: 1 !important;
        transform: none !important
    }
}