:root {
    --azul: #0865bd;
    --azul-claro: #56b2f7;
    --navy: #020b16;
    --ink: #07111d;
    --gelo: #f5faff;
    --texto: #526575
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--navy);
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden
}

a {
    text-decoration: none
}

.nav-premium {
    padding: 17px 0;
    background: linear-gradient(180deg, rgba(2, 11, 22, .96), rgba(2, 11, 22, .54), transparent)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff !important;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .18em
}

.brand-mark {
    width: 48px;
    height: 48px;
    border: 3px solid var(--azul);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--azul-claro);
    font-size: 1.55rem;
    font-weight: 900
}

.brand b {
    color: var(--azul-claro)
}

.nav-link {
    color: rgba(255, 255, 255, .8) !important;
    font-size: .76rem;
    letter-spacing: .1em;
    text-transform: uppercase
}

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

.btn-premium,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 15px 22px;
    border: 1px solid var(--azul);
    background: var(--azul);
    color: #fff;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .09em;
    transition: .3s
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .65)
}

.btn-premium:hover,
.btn-ghost:hover {
    background: #fff;
    border-color: #fff;
    color: var(--navy);
    transform: translateY(-2px)
}

.stage {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: radial-gradient(circle at 78% 42%, #0b6dbd 0, #073e70 19%, #020b16 64%)
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(2, 11, 22, .98), rgba(2, 11, 22, .7) 50%, rgba(2, 11, 22, .14)), linear-gradient(0deg, rgba(2, 11, 22, .72), transparent 55%)
}

.glow {
    position: absolute;
    z-index: 0;
    right: -4%;
    top: 20%;
    width: 42vw;
    height: 42vw;
    border-radius: 50%;
    background: rgba(35, 145, 230, .24);
    filter: blur(70px);
    animation: drift 8s ease-in-out infinite alternate
}

@keyframes drift {
    to {
        transform: translate(-6%, 5%) scale(1.12)
    }
}

.stage-content {
    position: relative;
    z-index: 2;
    padding-bottom: 10vh
}

.eyebrow {
    display: block;
    margin-bottom: 18px;
    color: var(--azul-claro);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .28em
}

.eyebrow.azul {
    color: var(--azul)
}

h1 {
    font-size: clamp(3rem, 6.2vw, 6.5rem);
    font-weight: 900;
    line-height: .94;
    letter-spacing: -.055em;
    text-transform: uppercase
}

h1 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .72)
}

.hero-copy {
    max-width: 680px;
    margin: 26px 0 34px;
    color: rgba(255, 255, 255, .8);
    font-size: 1.12rem;
    line-height: 1.72
}

.scroll {
    position: absolute;
    z-index: 3;
    right: 4vw;
    bottom: 28px;
    color: #fff;
    font-size: 1.25rem;
    animation: bounce 1.6s infinite
}

@keyframes bounce {
    50% {
        transform: translateY(8px)
    }
}

.light-section {
    padding: 125px 0;
    background: var(--gelo);
    color: var(--ink)
}

.light-section h2,
.dark-section h2,
.method h2,
.cta h2 {
    font-size: clamp(2.7rem, 5vw, 5.1rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.055em
}

.light-section h2 em {
    color: var(--azul);
    font-style: normal
}

.lead-copy {
    color: var(--texto);
    font-size: 1.07rem;
    line-height: 1.85
}

.pillars {
    margin-top: 55px;
    border-top: 1px solid #cbdbe8
}

.pillar {
    padding: 32px;
    border-right: 1px solid #cbdbe8
}

.pillar:last-child {
    border: 0
}

.pillar strong {
    display: block;
    color: var(--azul);
    font-size: 1.4rem
}

.pillar span {
    display: block;
    margin-top: 8px;
    color: #657787
}

.dark-section {
    padding: 125px 0;
    background: var(--ink)
}

.service {
    position: relative;
    height: 100%;
    min-height: 300px;
    padding: 34px;
    background: linear-gradient(145deg, #0b1d2e, #07111d);
    border: 1px solid rgba(86, 178, 247, .14);
    overflow: hidden;
    transition: .35s
}

.service:hover {
    transform: translateY(-7px);
    border-color: var(--azul);
    background: linear-gradient(145deg, #0d2a45, #07111d)
}

.service .number {
    position: absolute;
    right: 25px;
    top: 22px;
    color: rgba(255, 255, 255, .18);
    font-size: .78rem
}

.service>i {
    margin: 26px 0 48px;
    color: var(--azul-claro);
    font-size: 1.7rem
}

.service h3 {
    font-size: 1.35rem
}

.service p {
    color: #9fb0bf;
    line-height: 1.7
}

.service:after {
    content: "";
    position: absolute;
    left: 34px;
    bottom: 0;
    width: 43px;
    height: 3px;
    background: var(--azul);
    transition: .35s
}

.service:hover:after {
    width: calc(100% - 68px)
}

.method {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 80% 50%, #0b5b99, #03162b 50%, #020b16 75%)
}

.method .container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 70px
}

.steps {
    margin-top: 38px;
    border-top: 1px solid rgba(255, 255, 255, .18)
}

.step {
    display: flex;
    gap: 25px;
    padding: 19px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18)
}

.step b {
    color: var(--azul-claro)
}

.step span {
    display: flex;
    gap: 16px;
    color: #aab9c6
}

.step strong {
    color: #fff;
    min-width: 120px
}

.premium-list {
    list-style: none;
    padding: 0;
    margin-top: 28px
}

.premium-list li {
    padding: 14px 0;
    border-bottom: 1px solid #d8e4ec
}

.premium-list i {
    color: var(--azul);
    margin-right: 12px
}

.visual {
    position: relative;
    min-height: 460px;
    display: grid;
    place-items: center
}

.orbit {
    position: relative;

    width: 320px;
    height: 320px;

    border-radius: 50%;
    overflow: visible;

    display: grid;
    place-items: center;

    border: 1px solid rgba(8, 101, 189, 0.26);
    box-shadow: 0 0 80px rgba(8, 101, 189, 0.12);
}

.orbit img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    border-radius: 50%;
    display: block;

    position: relative;
    z-index: 2;
}

.orbit::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 420px;
    height: 420px;

    border: 1px dashed rgba(8, 101, 189, 0.20);
    border-radius: 50%;

    transform: translate(-50%, -50%);
    z-index: 1;
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.big-l {
    font-size: 10rem;
    font-weight: 900;
    color: var(--azul);
    line-height: 1
}

.tag {
    position: absolute;
    padding: 12px 17px;
    background: #fff;
    border: 1px solid #d8e6ef;
    box-shadow: 0 10px 30px rgba(4, 40, 71, .1);
    font-weight: 700
}

.tag i {
    color: var(--azul);
    margin-right: 8px
}

.t1 {
    top: 7%;
    left: 4%
}

.t2 {
    right: -45px;
    top: 43%;
}

.t3 {
    bottom: 5%;
    left: 12%
}

.cta {
    padding: 125px 0;
    background: linear-gradient(135deg, #075aa7, #0a73ca);
    position: relative;
    overflow: hidden
}

.cta:before {
    content: "L";
    position: absolute;
    right: -2vw;
    top: -12vw;
    color: rgba(255, 255, 255, .05);
    font-size: 40vw;
    font-weight: 900
}

.cta>* {
    position: relative
}

.cta p {
    max-width: 650px;
    margin: 24px auto 34px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem
}

footer {
    padding: 44px 0 25px;
    background: #02070d;
    color: #8fa1b1
}

.social a {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-left: 7px;
    border: 1px solid #263949;
    color: #fff
}

.social a:hover {
    background: var(--azul)
}

.legal {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid #22313d;
    font-size: .75rem
}

.whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .35)
}

@media(max-width:991px) {
    .nav-premium {
        background: rgba(2, 11, 22, .96)
    }

    .navbar-collapse {
        padding: 20px 0
    }

    .stage {
        min-height: 850px
    }

    .light-section,
    .dark-section,
    .cta {
        padding: 85px 0
    }

    .pillar {
        border-right: 0;
        border-bottom: 1px solid #cbdbe8
    }

    .method {
        min-height: 950px
    }

    .step span {
        display: block
    }

    .step strong {
        display: block;
        margin-bottom: 5px
    }

    .legal {
        flex-direction: column;
        gap: 8px
    }
}

@media(max-width:575px) {
    .brand span {
        font-size: .73rem
    }

    .brand-mark {
        width: 43px;
        height: 43px
    }

    .btn-premium,
    .btn-ghost {
        width: 100%
    }

    .visual {
        transform: scale(.82);
        margin: -35px
    }

    .t2 {
        right: -12%
    }
}