:root {
    --bg: #07111f;
    --bg-2: #091827;

    --surface: #ffffff;
    --surface-soft: #f5f8fb;

    --text: #0b1726;
    --muted: #5e6d7e;

    --line: #dbe4ec;

    --blue: #246bfe;
    --cyan: #28d7e3;
    --cyan-soft: #dffcff;

    --white: #ffffff;

    --shadow:
        0 24px 80px
        rgba(4, 22, 40, .12);

    --radius: 24px;

    --container: 1180px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);

    background: #ffffff;

    line-height: 1.6;

    -webkit-font-smoothing:
        antialiased;
}


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


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


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


.container {
    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin:
        0 auto;
}


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

.header {
    position: fixed;

    inset:
        0 0 auto;

    z-index: 50;

    border-bottom:
        1px solid transparent;

    transition:
        .3s ease;
}


.header.scrolled {
    background:
        rgba(7, 17, 31, .88);

    backdrop-filter:
        blur(18px);

    border-color:
        rgba(255, 255, 255, .08);
}


.header-inner {
    height: 82px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 28px;
}


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

.brand {
    display:
        inline-flex;

    align-items:
        center;

    gap: 12px;

    color: #ffffff;

    min-width:
        max-content;
}


.brand-mark {
    width: 42px;
    height: 42px;

    border:
        1px solid
        rgba(255, 255, 255, .22);

    border-radius:
        13px;

    display: grid;

    place-items:
        center;

    position:
        relative;

    overflow:
        hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .13),
            rgba(255, 255, 255, .03)
        );
}


.brand-seven {
    font-weight:
        900;

    font-size:
        25px;

    line-height:
        1;

    transform:
        translateX(-4px);
}


.brand-bridge {
    position:
        absolute;

    width:
        23px;

    height:
        11px;

    border:
        2px solid
        var(--cyan);

    border-bottom:
        0;

    border-radius:
        15px 15px 0 0;

    right:
        2px;

    bottom:
        8px;

    transform:
        rotate(-8deg);
}


.brand-bridge::before,
.brand-bridge::after {
    content: "";

    position:
        absolute;

    width:
        2px;

    height:
        8px;

    background:
        var(--cyan);

    bottom:
        -7px;
}


.brand-bridge::before {
    left:
        4px;
}


.brand-bridge::after {
    right:
        4px;
}


.brand-copy {
    display:
        flex;

    flex-direction:
        column;

    line-height:
        1;
}


.brand-copy strong {
    font-size:
        22px;

    letter-spacing:
        -.05em;
}


.brand-copy small {
    font-size:
        8px;

    letter-spacing:
        .35em;

    margin-top:
        6px;

    color:
        #9bb0c5;
}


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

.nav {
    display:
        flex;

    align-items:
        center;

    gap:
        28px;

    color:
        #bed0df;

    font-size:
        14px;

    font-weight:
        600;
}


.nav > a:not(.nav-cta) {
    position:
        relative;
}


.nav > a:not(.nav-cta)::after {
    content:
        "";

    position:
        absolute;

    left:
        0;

    right:
        100%;

    bottom:
        -8px;

    height:
        2px;

    background:
        var(--cyan);

    transition:
        .25s;
}


.nav > a:hover {
    color:
        #ffffff;
}


.nav > a:hover::after {
    right:
        0;
}


.nav-cta {
    padding:
        11px 17px;

    border:
        1px solid
        rgba(255, 255, 255, .18);

    border-radius:
        999px;

    color:
        #ffffff;

    background:
        rgba(255, 255, 255, .06);
}


.menu-toggle {
    display:
        none;

    width:
        44px;

    height:
        44px;

    border:
        1px solid
        rgba(255, 255, 255, .16);

    border-radius:
        12px;

    background:
        rgba(255, 255, 255, .06);

    padding:
        10px;

    cursor:
        pointer;
}


.menu-toggle span {
    display:
        block;

    height:
        2px;

    background:
        #ffffff;

    margin:
        5px 0;

    border-radius:
        10px;
}


/* ==========================================================
   HERO
========================================================== */

.hero {
    min-height:
        760px;

    padding:
        150px 0 90px;

    display:
        flex;

    align-items:
        center;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(36, 107, 254, .18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #06101d 0%,
            #081a2b 55%,
            #06101d 100%
        );

    position:
        relative;

    overflow:
        hidden;

    color:
        #ffffff;
}


.hero-grid {
    position:
        absolute;

    inset:
        0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, .035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .035) 1px,
            transparent 1px
        );

    background-size:
        64px 64px;

    mask-image:
        linear-gradient(
            to bottom,
            black 10%,
            transparent 94%
        );
}


.hero-orb {
    position:
        absolute;

    border-radius:
        50%;

    filter:
        blur(2px);

    opacity:
        .5;
}


.hero-orb-a {
    width:
        360px;

    height:
        360px;

    background:
        radial-gradient(
            circle,
            rgba(40, 215, 227, .2),
            transparent 67%
        );

    left:
        -120px;

    bottom:
        -50px;
}


.hero-orb-b {
    width:
        420px;

    height:
        420px;

    border:
        1px solid
        rgba(40, 215, 227, .11);

    right:
        -180px;

    top:
        40px;
}


.hero-layout {
    position:
        relative;

    z-index:
        2;

    display:
        grid;

    grid-template-columns:
        minmax(0, 1.06fr)
        minmax(390px, .94fr);

    gap:
        70px;

    align-items:
        center;
}


.eyebrow,
.section-kicker {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    text-transform:
        uppercase;

    letter-spacing:
        .14em;

    font-size:
        11px;

    font-weight:
        800;

    color:
        #46dfe8;
}


.eyebrow span {
    width:
        28px;

    height:
        1px;

    background:
        #46dfe8;
}


.hero h1 {
    font-size:
        clamp(
            48px,
            5.6vw,
            78px
        );

    line-height:
        1.02;

    letter-spacing:
        -.055em;

    margin:
        20px 0 25px;

    max-width:
        770px;
}


.hero h1 em {
    font-style:
        normal;

    background:
        linear-gradient(
            100deg,
            #ffffff,
            #4fe0e8 82%
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;
}


.hero-copy > p {
    font-size:
        18px;

    color:
        #aebfd0;

    max-width:
        680px;

    margin:
        0;
}


.hero-actions {
    display:
        flex;

    gap:
        14px;

    align-items:
        center;

    margin-top:
        34px;

    flex-wrap:
        wrap;
}


.btn {
    display:
        inline-flex;

    justify-content:
        center;

    align-items:
        center;

    gap:
        10px;

    min-height:
        52px;

    padding:
        0 23px;

    border-radius:
        12px;

    font-weight:
        800;

    font-size:
        14px;

    border:
        0;

    cursor:
        pointer;

    transition:
        transform .2s,
        box-shadow .2s,
        background .2s;
}


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


.btn-primary {
    background:
        linear-gradient(
            110deg,
            #2a78ff,
            #17cad6
        );

    color:
        #ffffff;

    box-shadow:
        0 16px 36px
        rgba(25, 142, 237, .22);
}


.btn-primary:hover {
    box-shadow:
        0 20px 44px
        rgba(25, 142, 237, .32);
}


.btn-ghost {
    color:
        #e9f3fb;

    border:
        1px solid
        rgba(255, 255, 255, .14);

    background:
        rgba(255, 255, 255, .05);
}


.hero-trust {
    display:
        flex;

    gap:
        18px;

    flex-wrap:
        wrap;

    margin-top:
        37px;

    color:
        #718ba2;

    font-size:
        11px;

    text-transform:
        uppercase;

    letter-spacing:
        .1em;
}


.hero-trust span {
    position:
        relative;

    padding-left:
        12px;
}


.hero-trust span::before {
    content:
        "";

    position:
        absolute;

    left:
        0;

    top:
        50%;

    width:
        4px;

    height:
        4px;

    border-radius:
        50%;

    background:
        #28d7e3;

    transform:
        translateY(-50%);
}


/* ==========================================================
   HERO PAINEL
========================================================== */

.hero-panel {
    border:
        1px solid
        rgba(255, 255, 255, .12);

    border-radius:
        28px;

    background:
        linear-gradient(
            145deg,
            rgba(17, 39, 60, .9),
            rgba(6, 17, 31, .72)
        );

    box-shadow:
        0 40px 120px
        rgba(0, 0, 0, .28);

    backdrop-filter:
        blur(14px);

    overflow:
        hidden;

    position:
        relative;
}


.hero-panel::after {
    content:
        "";

    position:
        absolute;

    inset:
        auto -50px -90px auto;

    width:
        200px;

    height:
        200px;

    background:
        rgba(40, 215, 227, .12);

    filter:
        blur(40px);

    border-radius:
        50%;
}


.panel-top {
    height:
        54px;

    padding:
        0 18px;

    display:
        flex;

    align-items:
        center;

    gap:
        9px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .08);

    color:
        #a7bdcf;

    font-size:
        12px;
}


.panel-top small {
    margin-left:
        auto;

    font-size:
        9px;

    letter-spacing:
        .16em;

    color:
        #53e2c4;
}


.status-dot {
    width:
        8px;

    height:
        8px;

    background:
        #53e2c4;

    border-radius:
        50%;

    box-shadow:
        0 0 0 5px
        rgba(83, 226, 196, .08);
}


.panel-core {
    height:
        330px;

    position:
        relative;

    display:
        grid;

    place-items:
        center;
}


.core-ring {
    position:
        absolute;

    border:
        1px solid
        rgba(79, 224, 232, .16);

    border-radius:
        50%;
}


.ring-one {
    width:
        110px;

    height:
        110px;
}


.ring-two {
    width:
        190px;

    height:
        190px;

    border-style:
        dashed;

    animation:
        spin 18s linear infinite;
}


.ring-three {
    width:
        270px;

    height:
        270px;

    border-color:
        rgba(36, 107, 254, .18);
}


@keyframes spin {

    to {
        transform:
            rotate(360deg);
    }

}


.core-center {
    width:
        78px;

    height:
        78px;

    border-radius:
        22px;

    background:
        linear-gradient(
            145deg,
            #203d59,
            #0a1c2e
        );

    border:
        1px solid
        rgba(79, 224, 232, .34);

    display:
        grid;

    place-items:
        center;

    align-content:
        center;

    box-shadow:
        0 0 45px
        rgba(40, 215, 227, .1);

    z-index:
        2;
}


.core-center span {
    font-size:
        28px;

    font-weight:
        900;

    letter-spacing:
        -.08em;
}


.core-center small {
    font-size:
        8px;

    letter-spacing:
        .2em;

    color:
        #5ddfe7;

    margin-top:
        2px;
}


.node {
    position:
        absolute;

    font-size:
        9px;

    letter-spacing:
        .12em;

    color:
        #8ba6bb;

    padding:
        6px 9px;

    background:
        #0b1d2f;

    border:
        1px solid
        rgba(255, 255, 255, .09);

    border-radius:
        999px;
}


.node-a {
    top:
        40px;

    left:
        47px;
}


.node-b {
    right:
        34px;

    top:
        96px;
}


.node-c {
    left:
        50px;

    bottom:
        52px;
}


.node-d {
    right:
        50px;

    bottom:
        50px;
}


.panel-stats {
    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

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

    position:
        relative;

    z-index:
        2;
}


.panel-stats div {
    padding:
        20px 14px;

    border-right:
        1px solid
        rgba(255, 255, 255, .08);
}


.panel-stats div:last-child {
    border-right:
        0;
}


.panel-stats strong {
    display:
        block;

    font-size:
        17px;
}


.panel-stats span {
    display:
        block;

    color:
        #758da2;

    font-size:
        10px;

    margin-top:
        2px;
}


/* ==========================================================
   PROOF
========================================================== */

.proof-strip {
    border-bottom:
        1px solid #e8eef4;

    background:
        #ffffff;
}


.proof-grid {
    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);
}


.proof-grid div {
    padding:
        28px 22px;

    border-right:
        1px solid #e8eef4;
}


.proof-grid div:first-child {
    padding-left:
        0;
}


.proof-grid div:last-child {
    border-right:
        0;
}


.proof-grid strong,
.proof-grid span {
    display:
        block;
}


.proof-grid strong {
    font-size:
        14px;
}


.proof-grid span {
    font-size:
        12px;

    color:
        #778697;

    margin-top:
        3px;
}


/* ==========================================================
   SEÇÕES
========================================================== */

.section {
    padding:
        110px 0;
}


.section-heading {
    display:
        grid;

    grid-template-columns:
        1.3fr .7fr;

    gap:
        80px;

    align-items:
        end;

    margin-bottom:
        52px;
}


.section-heading h2,
.method-copy h2,
.contact-copy h2,
.tech-heading h2 {
    font-size:
        clamp(
            36px,
            4vw,
            54px
        );

    line-height:
        1.08;

    letter-spacing:
        -.045em;

    margin:
        14px 0 0;
}


.section-heading > p {
    margin:
        0;

    color:
        var(--muted);

    font-size:
        16px;
}


/* ==========================================================
   SERVIÇOS
========================================================== */

.cards-grid {
    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        18px;
}


.service-card {
    background:
        var(--surface-soft);

    border:
        1px solid #e5ecf2;

    border-radius:
        var(--radius);

    padding:
        30px;

    transition:
        .25s ease;

    position:
        relative;

    overflow:
        hidden;
}


.service-card::before {
    content:
        "";

    position:
        absolute;

    inset:
        0 auto auto 0;

    height:
        3px;

    width:
        0;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );

    transition:
        .3s;
}


.service-card:hover {
    transform:
        translateY(-5px);

    background:
        #ffffff;

    box-shadow:
        var(--shadow);
}


.service-card:hover::before {
    width:
        100%;
}


.service-icon {
    width:
        45px;

    height:
        45px;

    border-radius:
        13px;

    background:
        #0c1b2b;

    color:
        #64e4eb;

    display:
        grid;

    place-items:
        center;

    font-size:
        11px;

    font-weight:
        900;

    letter-spacing:
        .08em;

    margin-bottom:
        28px;
}


.service-card h3 {
    font-size:
        21px;

    line-height:
        1.2;

    letter-spacing:
        -.025em;

    margin:
        0 0 13px;
}


.service-card p {
    color:
        var(--muted);

    font-size:
        14px;

    margin:
        0 0 20px;
}


.service-card ul {
    list-style:
        none;

    margin:
        0;

    padding:
        17px 0 0;

    border-top:
        1px solid #dfe7ee;
}


.service-card li {
    font-size:
        12px;

    color:
        #3f5061;

    padding:
        5px 0 5px 15px;

    position:
        relative;
}


.service-card li::before {
    content:
        "";

    width:
        5px;

    height:
        5px;

    border-radius:
        50%;

    background:
        var(--blue);

    position:
        absolute;

    left:
        0;

    top:
        13px;
}


/* ==========================================================
   PROJETOS
========================================================== */

.section-dark {
    background:
        #07111f;

    color:
        #ffffff;

    position:
        relative;

    overflow:
        hidden;
}


.section-dark::before {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            110deg,
            transparent,
            rgba(36, 107, 254, .05)
        );

    pointer-events:
        none;
}


.section-heading.light > p {
    color:
        #91a5b6;
}


.project-grid {
    display:
        grid;

    grid-template-columns:
        1.25fr .75fr .75fr;

    gap:
        18px;

    position:
        relative;
}


.project-card {
    min-height:
        410px;

    padding:
        30px;

    border:
        1px solid
        rgba(255, 255, 255, .1);

    border-radius:
        26px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .06),
            rgba(255, 255, 255, .02)
        );

    position:
        relative;

    overflow:
        hidden;

    display:
        flex;

    flex-direction:
        column;
}


.project-featured {
    background:
        linear-gradient(
            145deg,
            rgba(36, 107, 254, .18),
            rgba(17, 44, 64, .34)
        );
}


.project-card::after {
    content:
        "";

    position:
        absolute;

    right:
        -80px;

    bottom:
        -80px;

    width:
        190px;

    height:
        190px;

    border:
        1px solid
        rgba(40, 215, 227, .15);

    border-radius:
        50%;
}


.project-label {
    text-transform:
        uppercase;

    letter-spacing:
        .12em;

    font-size:
        10px;

    color:
        #50dce5;

    font-weight:
        800;
}


.project-card h3 {
    font-size:
        26px;

    line-height:
        1.18;

    letter-spacing:
        -.035em;

    margin:
        30px 0 15px;

    max-width:
        510px;
}


.project-card p {
    color:
        #9fb1c1;

    font-size:
        14px;

    max-width:
        520px;
}


.tag-list {
    display:
        flex;

    gap:
        7px;

    flex-wrap:
        wrap;

    margin-top:
        auto;

    padding-top:
        30px;
}


.tag-list span {
    font-size:
        9px;

    text-transform:
        uppercase;

    letter-spacing:
        .11em;

    color:
        #b7c6d3;

    border:
        1px solid
        rgba(255, 255, 255, .1);

    border-radius:
        999px;

    padding:
        6px 9px;
}


.project-number {
    position:
        absolute;

    right:
        24px;

    top:
        22px;

    font-size:
        70px;

    font-weight:
        900;

    letter-spacing:
        -.08em;

    color:
        rgba(255, 255, 255, .025);
}


/* ==========================================================
   MÉTODO
========================================================== */

.method-layout {
    display:
        grid;

    grid-template-columns:
        .78fr 1.22fr;

    gap:
        100px;
}


.method-copy {
    position:
        sticky;

    top:
        130px;

    align-self:
        start;
}


.method-copy p {
    color:
        var(--muted);

    max-width:
        460px;
}


.text-link {
    display:
        inline-flex;

    gap:
        8px;

    align-items:
        center;

    margin-top:
        18px;

    color:
        #1264ec;

    font-weight:
        800;

    font-size:
        14px;
}


.steps {
    border-top:
        1px solid
        var(--line);
}


.step {
    display:
        grid;

    grid-template-columns:
        72px 1fr;

    gap:
        22px;

    padding:
        28px 0;

    border-bottom:
        1px solid
        var(--line);
}


.step > span {
    font-size:
        11px;

    color:
        #1970f3;

    font-weight:
        900;
}


.step h3 {
    font-size:
        20px;

    margin:
        0 0 6px;
}


.step p {
    margin:
        0;

    color:
        var(--muted);

    font-size:
        14px;
}


/* ==========================================================
   TECNOLOGIAS
========================================================== */

.tech-section {
    padding:
        85px 0;

    background:
        #f5f8fb;

    border-top:
        1px solid #e7edf3;

    border-bottom:
        1px solid #e7edf3;
}


.tech-heading {
    display:
        grid;

    grid-template-columns:
        .55fr 1.45fr;

    gap:
        60px;

    align-items:
        end;
}


.tech-heading h2 {
    font-size:
        40px;

    margin:
        0;
}


.tech-cloud {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        10px;

    margin-top:
        38px;
}


.tech-cloud span {
    padding:
        10px 14px;

    border:
        1px solid #d9e3eb;

    border-radius:
        10px;

    background:
        #ffffff;

    font-size:
        12px;

    font-weight:
        700;

    color:
        #314354;

    box-shadow:
        0 7px 22px
        rgba(9, 36, 58, .04);
}


/* ==========================================================
   CONTATO
========================================================== */

.contact-section {
    background:
        #ffffff;
}


.contact-layout {
    display:
        grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap:
        95px;

    align-items:
        start;
}


.contact-copy {
    padding-top:
        28px;
}


.contact-copy > p {
    color:
        var(--muted);

    font-size:
        16px;
}


.contact-points {
    margin-top:
        30px;

    display:
        grid;

    gap:
        10px;
}


.contact-points div {
    font-size:
        13px;

    color:
        #334658;
}


.contact-points span {
    display:
        inline-grid;

    place-items:
        center;

    width:
        22px;

    height:
        22px;

    border-radius:
        50%;

    background:
        #e9fbfd;

    color:
        #08a9b4;

    font-weight:
        900;

    margin-right:
        8px;
}


.contact-card {
    background:
        #07111f;

    border-radius:
        28px;

    padding:
        34px;

    color:
        #ffffff;

    box-shadow:
        0 34px 90px
        rgba(4, 24, 40, .16);
}


.contact-form {
    display:
        grid;

    gap:
        16px;
}


.field-row {
    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        14px;
}


.contact-form label {
    display:
        grid;

    gap:
        7px;
}


.contact-form label > span {
    font-size:
        11px;

    font-weight:
        800;

    color:
        #9eb2c3;
}


.contact-form input,
.contact-form select,
.contact-form textarea {
    width:
        100%;

    border:
        1px solid
        rgba(255, 255, 255, .11);

    background:
        #0d1c2a;

    color:
        #ffffff;

    border-radius:
        11px;

    padding:
        13px 14px;

    outline:
        none;

    transition:
        .2s;
}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color:
        #38dce5;

    box-shadow:
        0 0 0 3px
        rgba(56, 220, 229, .08);
}


.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color:
        #60778b;
}


.contact-form select {
    color:
        #c7d3dc;
}


.consent {
    display:
        flex !important;

    grid-template-columns:
        18px 1fr !important;

    align-items:
        start;

    gap:
        9px !important;

    margin-top:
        2px;
}


.consent input {
    width:
        16px;

    height:
        16px;

    margin-top:
        3px;

    accent-color:
        #26cbd7;
}


.consent span {
    font-weight:
        500 !important;

    line-height:
        1.5;

    color:
        #8096a9 !important;
}


.btn-full {
    width:
        100%;

    margin-top:
        2px;
}


.form-note {
    color:
        #647b8e;

    font-size:
        10px;

    text-align:
        center;
}


.hp-field {
    position:
        absolute !important;

    width:
        1px !important;

    height:
        1px !important;

    overflow:
        hidden !important;

    clip:
        rect(0, 0, 0, 0) !important;

    white-space:
        nowrap !important;
}


.form-alert {
    padding:
        12px 14px;

    border-radius:
        10px;

    margin-bottom:
        18px;

    font-size:
        12px;

    font-weight:
        700;
}


.form-alert.success {
    background:
        rgba(52, 211, 153, .12);

    border:
        1px solid
        rgba(52, 211, 153, .25);

    color:
        #86efc0;
}


.form-alert.error {
    background:
        rgba(248, 113, 113, .12);

    border:
        1px solid
        rgba(248, 113, 113, .24);

    color:
        #fca5a5;
}


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

.footer {
    background:
        #04101b;

    color:
        #ffffff;

    padding:
        60px 0 24px;
}


.footer-main {
    display:
        grid;

    grid-template-columns:
        .65fr 1.2fr .65fr;

    gap:
        50px;

    align-items:
        center;

    padding-bottom:
        42px;
}


.brand-footer .brand-mark {
    width:
        38px;

    height:
        38px;
}


.footer-main p {
    color:
        #7890a3;

    font-size:
        13px;

    max-width:
        500px;

    margin:
        0;
}


.footer-domain {
    justify-self:
        end;

    color:
        #53dce5;

    font-weight:
        800;

    font-size:
        13px;
}


.footer-bottom {
    border-top:
        1px solid
        rgba(255, 255, 255, .08);

    padding-top:
        20px;

    display:
        flex;

    justify-content:
        space-between;

    color:
        #52697c;

    font-size:
        10px;

    text-transform:
        uppercase;

    letter-spacing:
        .08em;
}


/* ==========================================================
   ANIMAÇÕES
========================================================== */

.reveal {
    opacity:
        0;

    transform:
        translateY(18px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}


.reveal.visible {
    opacity:
        1;

    transform:
        none;
}


.reveal-delay-1 {
    transition-delay:
        .1s;
}


.reveal-delay-2 {
    transition-delay:
        .2s;
}


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

    html {
        scroll-behavior:
            auto;
    }


    .reveal {
        opacity:
            1;

        transform:
            none;

        transition:
            none;
    }


    .ring-two {
        animation:
            none;
    }

}


/* ==========================================================
   RESPONSIVO - TABLET
========================================================== */

@media (max-width: 1050px) {

    .hero-layout {
        grid-template-columns:
            1fr;

        gap:
            55px;
    }


    .hero-copy {
        max-width:
            820px;
    }


    .hero-panel {
        max-width:
            650px;

        width:
            100%;
    }


    .cards-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .project-grid {
        grid-template-columns:
            1fr 1fr;
    }


    .project-featured {
        grid-column:
            1 / -1;

        min-height:
            360px;
    }


    .section-heading {
        gap:
            45px;
    }


    .method-layout,
    .contact-layout {
        gap:
            55px;
    }


    .tech-heading {
        grid-template-columns:
            1fr;
    }


    .tech-heading h2 {
        max-width:
            700px;
    }

}


/* ==========================================================
   RESPONSIVO - MENU / TABLET
========================================================== */

@media (max-width: 820px) {

    .header-inner {
        height:
            72px;
    }


    .menu-toggle {
        display:
            block;
    }


    .nav {
        position:
            absolute;

        top:
            72px;

        left:
            20px;

        right:
            20px;

        display:
            none;

        flex-direction:
            column;

        align-items:
            stretch;

        gap:
            0;

        background:
            #0a1a2a;

        border:
            1px solid
            rgba(255, 255, 255, .1);

        border-radius:
            18px;

        padding:
            8px;

        box-shadow:
            0 25px 60px
            rgba(0, 0, 0, .3);
    }


    .nav.open {
        display:
            flex;
    }


    .nav a {
        padding:
            13px 14px;

        border-radius:
            10px;
    }


    .nav-cta {
        margin-top:
            4px;
    }


    .hero {
        padding-top:
            126px;

        min-height:
            auto;
    }


    .hero h1 {
        font-size:
            clamp(
                43px,
                11vw,
                66px
            );
    }


    .proof-grid {
        grid-template-columns:
            1fr 1fr;
    }


    .proof-grid div:nth-child(2) {
        border-right:
            0;
    }


    .proof-grid div:nth-child(-n+2) {
        border-bottom:
            1px solid #e8eef4;
    }


    .proof-grid div {
        padding-left:
            18px;
    }


    .section {
        padding:
            82px 0;
    }


    .section-heading {
        grid-template-columns:
            1fr;

        gap:
            20px;
    }


    .project-grid {
        grid-template-columns:
            1fr;
    }


    .project-featured {
        grid-column:
            auto;
    }


    .method-layout,
    .contact-layout {
        grid-template-columns:
            1fr;

        gap:
            48px;
    }


    .method-copy {
        position:
            static;
    }


    .tech-heading {
        gap:
            14px;
    }


    .footer-main {
        grid-template-columns:
            1fr;

        gap:
            20px;
    }


    .footer-domain {
        justify-self:
            start;
    }

}


/* ==========================================================
   RESPONSIVO - CELULAR
========================================================== */

@media (max-width: 560px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }


    .brand-copy strong {
        font-size:
            20px;
    }


    .hero {
        padding:
            118px 0 65px;
    }


    .hero-layout {
        gap:
            42px;
    }


    .eyebrow {
        font-size:
            9px;

        letter-spacing:
            .11em;
    }


    .hero h1 {
        font-size:
            42px;
    }


    .hero-copy > p {
        font-size:
            16px;
    }


    .hero-actions {
        display:
            grid;
    }


    .hero-actions .btn {
        width:
            100%;
    }


    .hero-trust {
        gap:
            11px 14px;
    }


    .hero-panel {
        border-radius:
            21px;
    }


    .panel-core {
        height:
            285px;
    }


    .ring-three {
        width:
            230px;

        height:
            230px;
    }


    .ring-two {
        width:
            165px;

        height:
            165px;
    }


    .node-a {
        left:
            20px;
    }


    .node-b {
        right:
            15px;
    }


    .node-c {
        left:
            22px;
    }


    .node-d {
        right:
            18px;
    }


    .panel-stats {
        grid-template-columns:
            1fr;
    }


    .panel-stats div {
        border-right:
            0;

        border-bottom:
            1px solid
            rgba(255, 255, 255, .08);

        padding:
            13px 16px;
    }


    .panel-stats div:last-child {
        border-bottom:
            0;
    }


    .proof-grid {
        grid-template-columns:
            1fr;
    }


    .proof-grid div {
        border-right:
            0 !important;

        border-bottom:
            1px solid #e8eef4 !important;

        padding:
            18px 0;
    }


    .proof-grid div:last-child {
        border-bottom:
            0 !important;
    }


    .section-heading h2,
    .method-copy h2,
    .contact-copy h2 {
        font-size:
            36px;
    }


    .cards-grid {
        grid-template-columns:
            1fr;
    }


    .service-card {
        padding:
            25px;
    }


    .project-card {
        min-height:
            370px;

        padding:
            25px;
    }


    .project-card h3 {
        font-size:
            24px;
    }


    .step {
        grid-template-columns:
            48px 1fr;
    }


    .tech-section {
        padding:
            65px 0;
    }


    .tech-heading h2 {
        font-size:
            34px;
    }


    .field-row {
        grid-template-columns:
            1fr;
    }


    .contact-card {
        padding:
            23px;

        border-radius:
            22px;
    }


    .footer-bottom {
        flex-direction:
            column;

        gap:
            8px;
    }

}
