/* ==========================================================
   WASEL CAPITAL
   Landing page principal
========================================================== */

:root {
    --color-black: #020303;
    --color-black-soft: #070909;
    --color-panel: #090b0b;

    --color-white: #f4f5f2;
    --color-text: #d0d3cf;
    --color-muted: #898d88;

    --color-border: rgba(255, 255, 255, 0.08);

    --color-green: #65c536;
    --color-green-dark: #449a25;
    --color-green-soft: rgba(101, 197, 54, 0.13);

    --container-width: 1460px;
    --page-padding: clamp(24px, 4vw, 64px);

    --hero-image: url("../assets/imagens/background.jpg");
}


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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    min-width: 320px;

    overflow-x: hidden;

    background:
        linear-gradient(
            180deg,
            #020303 0%,
            #050707 45%,
            #020303 100%
        );

    color: var(--color-white);

    font-family:
        "Inter",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;
    line-height: 1.5;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    color: inherit;
}

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


/* ==========================================================
   SITE
========================================================== */

.site-shell {
    position: relative;

    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;

    overflow: hidden;
}


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

.header {
    position: absolute;
    z-index: 100;

    top: 0;
    left: 0;

    width: 100%;
    height: 116px;
}

.header__container {
    width: min(
        calc(100% - (var(--page-padding) * 2)),
        var(--container-width)
    );

    height: 100%;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 245px 1fr auto;
    align-items: center;
    gap: 28px;
}


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

.header__actions {
    justify-self: end;

    display: flex;
    align-items: center;
    gap: 16px;
}


/* ==========================================================
   SELETOR DE IDIOMA
========================================================== */

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

    padding: 2px;

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

    background: rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(10px);
}

.language__option {
    padding: 6px 10px;

    border: 0;
    border-radius: 3px;

    background: transparent;

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

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;

    cursor: pointer;

    transition:
        background-color 180ms ease,
        color 180ms ease;
}

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

.language__option.is-active {
    background: var(--color-white);
    color: var(--color-black);
}


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

.brand {
    position: relative;
    z-index: 3;

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

    width: 180px;
    height: 74px;

    overflow: hidden;
}

.brand__logo {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: left center;

    background: transparent;

    filter: none;
}


/* ==========================================================
   NAVEGAÇÃO
========================================================== */

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

    gap: clamp(25px, 2.6vw, 52px);
}

.navigation__link {
    position: relative;

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

    font-size: 14px;
    font-weight: 400;

    white-space: nowrap;

    transition:
        color 180ms ease,
        opacity 180ms ease;
}

.navigation__link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 100%;
    height: 1px;

    background: var(--color-green);

    transform: scaleX(0);
    transform-origin: right;

    transition: transform 220ms ease;
}

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

.navigation__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* ==========================================================
   BOTÃO DO HEADER
========================================================== */

.header__access {
    justify-self: end;

    width: 200px;
    min-height: 48px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    border: 1px solid rgba(101, 197, 54, 0.65);
    border-radius: 5px;

    background: rgba(4, 8, 5, 0.34);

    color: var(--color-white);

    font-size: 13px;
    font-weight: 400;

    backdrop-filter: blur(10px);

    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.header__access svg {
    width: 16px;
    height: 16px;

    color: var(--color-green);

    stroke-width: 1.7;
}

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

    border-color: var(--color-green);

    background: rgba(101, 197, 54, 0.08);

    box-shadow:
        0 0 0 1px rgba(101, 197, 54, 0.08),
        0 12px 30px rgba(31, 107, 13, 0.15);
}


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

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

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

    background: rgba(255, 255, 255, 0.03);

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 19px;
    height: 1px;

    margin: 5px auto;

    background: var(--color-white);

    transition:
        transform 180ms ease,
        opacity 180ms ease;
}


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

.hero {
    position: relative;

    min-height: 830px;
    height: clamp(830px, 86vh, 970px);

    overflow: hidden;

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

.hero__background {
    position: absolute;
    z-index: 0;

    inset: 0;

    background-image: var(--hero-image);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    transform: scale(1.012);
}

.hero__shade {
    position: absolute;
    z-index: 1;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(1, 2, 2, 0.96) 0%,
            rgba(1, 2, 2, 0.86) 19%,
            rgba(1, 2, 2, 0.56) 37%,
            rgba(1, 2, 2, 0.08) 62%,
            rgba(1, 2, 2, 0.12) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.18) 0%,
            rgba(0, 0, 0, 0.02) 52%,
            rgba(0, 0, 0, 0.72) 100%
        );
}

.hero__glow {
    position: absolute;
    z-index: 2;

    right: 8%;
    bottom: 8%;

    width: 520px;
    height: 170px;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse at center,
            rgba(71, 186, 32, 0.13) 0%,
            rgba(47, 128, 18, 0.05) 44%,
            transparent 72%
        );

    filter: blur(18px);

    pointer-events: none;

    animation: floorGlow 4.5s ease-in-out infinite;
}

.hero__container {
    position: relative;
    z-index: 5;

    width: min(
        calc(100% - (var(--page-padding) * 2)),
        var(--container-width)
    );

    height: 100%;
    margin: 0 auto;
}


/* ==========================================================
   CONTEÚDO DO HERO
========================================================== */

.hero__content {
    position: absolute;

    top: 50%;

    width: min(100%, 570px);

    transform: translateY(-46%);

    animation: heroReveal 800ms ease both;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 25px;

    color: var(--color-green);

    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.hero__eyebrow-line {
    display: inline-block;

    width: 20px;
    height: 1px;

    background: rgba(101, 197, 54, 0.54);
}

.hero__title {
    max-width: 570px;

    color: var(--color-white);

    font-size: clamp(48px, 4vw, 68px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.046em;
}

.hero__title span {
    display: block;

    color: var(--color-green-dark);
    font-weight: 400;
}

/* A primeira linha herda o branco do titulo; so o trecho de destaque fica verde. */

.hero__title .hero__title-lead {
    color: var(--color-white);
    font-weight: 300;
}

.hero__description {
    max-width: 510px;

    margin-top: 30px;

    color: rgba(224, 226, 222, 0.72);

    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
}

.hero__actions {
    margin-top: 38px;

    display: flex;
    align-items: center;
    gap: 34px;
}


/* ==========================================================
   BOTÕES
========================================================== */

.button {
    min-height: 50px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 500;

    transition:
        background-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.button svg {
    width: 16px;
    height: 16px;

    stroke-width: 1.8;
}

.button--primary {
    min-width: 239px;

    background:
        linear-gradient(
            135deg,
            #59b82d 0%,
            #459d26 100%
        );

    color: #ffffff;

    box-shadow:
        0 12px 30px rgba(48, 130, 22, 0.18);
}

.button--primary:hover {
    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            #68c938 0%,
            #4da92a 100%
        );

    box-shadow:
        0 16px 38px rgba(49, 145, 20, 0.28);
}


/* ==========================================================
   BOTÃO DE VÍDEO
========================================================== */

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;

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

    font-size: 13px;
    font-weight: 400;

    transition: color 180ms ease;
}

.video-link__icon {
    position: relative;

    width: 35px;
    height: 35px;

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

    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.025);

    backdrop-filter: blur(8px);

    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.video-link__icon svg {
    width: 13px;
    height: 13px;

    margin-left: 2px;

    fill: transparent;
    stroke-width: 1.4;
}

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

.video-link:hover .video-link__icon {
    transform: scale(1.05);

    border-color: var(--color-green);

    background: rgba(101, 197, 54, 0.08);

    box-shadow:
        0 0 28px rgba(101, 197, 54, 0.18);
}


/* ==========================================================
   BENEFÍCIOS
========================================================== */

.benefits {
    position: absolute;

    right: 1.5%;
    bottom: 52px;

    width: min(760px, 58%);

    display: grid;

    grid-template-columns:
        1.05fr
        0.92fr
        1fr
        1.02fr
        1.35fr;

    align-items: center;

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

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

    background:
        linear-gradient(
            90deg,
            rgba(3, 5, 4, 0.02) 0%,
            rgba(3, 5, 4, 0.18) 15%,
            rgba(3, 5, 4, 0.34) 50%,
            rgba(3, 5, 4, 0.2) 100%
        );

    backdrop-filter: blur(2px);

    animation:
        benefitsReveal 900ms 250ms ease both;
}

.benefit {
    position: relative;

    min-width: 0;
    height: 78px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    transition:
        background-color 180ms ease,
        color 180ms ease;
}

.benefit:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 50%;
    right: 0;

    width: 1px;
    height: 36px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 255, 255, 0.09),
            transparent
        );

    transform: translateY(-50%);
}

.benefit__icon {
    flex: 0 0 auto;

    width: 32px;
    height: 32px;

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

    color: rgba(244, 245, 242, 0.85);

    transition: color 180ms ease;
}

.benefit__icon svg {
    width: 28px;
    height: 28px;

    stroke-width: 1.35;
}

.benefit__icon--globe img {
    width: 29px;
    height: 29px;

    object-fit: contain;

    opacity: 0.88;
}

.benefit__content {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 2px;

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

    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;

    white-space: nowrap;
}

.benefit:last-child .benefit__content {
    white-space: normal;
}

.benefit:hover {
    background: rgba(101, 197, 54, 0.035);
}

.benefit:hover .benefit__icon {
    color: var(--color-green);
}


/* ==========================================================
   ECOSSISTEMA
========================================================== */

.ecosystem {
    position: relative;
    z-index: 10;

    padding: 0 var(--page-padding);

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

.ecosystem__container {
    width: min(100%, var(--container-width));
    min-height: 92px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 340px 1fr;

    align-items: stretch;

    border: 1px solid rgba(255, 255, 255, 0.035);
    border-radius: 3px;

    background:
        linear-gradient(
            180deg,
            rgba(12, 14, 14, 0.98),
            rgba(7, 9, 9, 0.98)
        );

    box-shadow:
        0 14px 50px rgba(0, 0, 0, 0.25);
}

.ecosystem__intro {
    padding: 0 31px;

    display: flex;
    align-items: center;
    gap: 16px;

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

    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.035em;

    text-transform: uppercase;
    white-space: nowrap;
}

.ecosystem__line {
    width: 24px;
    height: 1px;

    background: rgba(101, 197, 54, 0.65);
}

.ecosystem__items {
    min-width: 0;

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

.ecosystem-item {
    position: relative;

    min-width: 0;

    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.ecosystem-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 50%;
    right: 0;

    width: 1px;
    height: 46px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 255, 255, 0.075),
            transparent
        );

    transform: translateY(-50%);
}


/* ==========================================================
   ÍCONES DO ECOSSISTEMA
========================================================== */

.ecosystem-item__icon {
    flex: 0 0 auto;

    width: 38px;
    height: 38px;

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

    color: rgba(255, 255, 255, 0.72);
}

.ecosystem-item__icon svg {
    width: 31px;
    height: 31px;

    stroke-width: 1.45;
}


/* Logo oficial do PIX */

.ecosystem-item__icon--pix svg {
    width: 34px;
    height: 34px;

    overflow: visible;

    fill: none;

    stroke: rgba(255, 255, 255, 0.72);
    stroke-width: 30;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Moedas */

.ecosystem-item__coin {
    flex: 0 0 auto;

    width: 36px;
    height: 36px;

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

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.72);
    color: #111111;

    font-size: 21px;
    font-weight: 600;
}


/* Texto dos itens */

.ecosystem-item__text {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.ecosystem-item strong {
    color: rgba(255, 255, 255, 0.88);

    font-size: 17px;
    font-weight: 400;
    line-height: 1.15;
}

.ecosystem-item span {
    margin-top: 4px;

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

    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.035em;

    text-transform: uppercase;
    white-space: nowrap;
}


/* ==========================================================
   ESTATÍSTICAS
========================================================== */

.statistics {
    padding:
        14px
        var(--page-padding)
        48px;

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

.statistics__container {
    width: min(100%, var(--container-width));
    min-height: 92px;

    margin: 0 auto;

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

    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 3px;

    background:
        linear-gradient(
            180deg,
            rgba(10, 12, 12, 0.96),
            rgba(6, 8, 8, 0.98)
        );
}

.statistic {
    position: relative;

    min-width: 0;

    padding: 18px 66px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.statistic:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 50%;
    right: 0;

    width: 1px;
    height: 50px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 255, 255, 0.065),
            transparent
        );

    transform: translateY(-50%);
}

.statistic__value {
    color: rgba(255, 255, 255, 0.9);

    font-size: 27px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.035em;
}

.statistic__value--word {
    text-transform: uppercase;
}

.statistic span {
    margin-top: 10px;

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

    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.04em;

    text-transform: uppercase;
}


/* ==========================================================
   CONTATO / CHAMADA FINAL
========================================================== */

.contact {
    position: relative;

    padding:
        96px
        var(--page-padding)
        104px;

    overflow: hidden;

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

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

.contact__glow {
    position: absolute;
    z-index: 0;

    top: 50%;
    left: 50%;

    width: min(760px, 90%);
    height: 320px;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse at center,
            rgba(71, 186, 32, 0.1) 0%,
            rgba(47, 128, 18, 0.04) 45%,
            transparent 72%
        );

    filter: blur(26px);

    transform: translate(-50%, -50%);

    pointer-events: none;
}

.contact__container {
    position: relative;
    z-index: 1;

    width: min(100%, 720px);

    margin: 0 auto;

    text-align: center;
}

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

    font-size: clamp(28px, 3vw, 40px);
    font-weight: 300;
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.contact__description {
    max-width: 560px;

    margin: 20px auto 0;

    color: rgba(224, 226, 222, 0.66);

    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}

.contact__actions {
    margin-top: 38px;

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

    gap: 16px;
}


/* Botão secundário, contornado — mesmo tom do botão do header. */

.button--ghost {
    min-width: 200px;

    border: 1px solid var(--color-border);

    background: rgba(4, 8, 5, 0.34);

    color: var(--color-white);

    backdrop-filter: blur(10px);

    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.button--ghost:hover {
    transform: translateY(-2px);

    border-color: var(--color-green);

    background: rgba(101, 197, 54, 0.08);
}


/* ==========================================================
   RODAPÉ
========================================================== */

.footer {
    padding: 0 var(--page-padding);

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

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

.footer__container {
    width: min(100%, var(--container-width));
    min-height: 92px;

    margin: 0 auto;
    padding: 26px 0;

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

    gap: 20px;
}

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

    width: 132px;
    height: 54px;

    overflow: hidden;

    opacity: 0.75;

    transition: opacity 180ms ease;
}

.footer__brand:hover {
    opacity: 1;
}

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

    object-fit: contain;
    object-position: left center;
}

.footer__note {
    color: rgba(255, 255, 255, 0.35);

    font-size: 12px;
    font-weight: 400;

    text-align: right;
}


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

@keyframes heroReveal {

    from {
        opacity: 0;
        transform: translateY(-41%);
    }

    to {
        opacity: 1;
        transform: translateY(-46%);
    }

}

@keyframes benefitsReveal {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes floorGlow {

    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.96);
    }

    50% {
        opacity: 0.92;
        transform: scale(1.05);
    }

}


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

@media (max-width: 1250px) {

    .header__container {
        grid-template-columns: 190px 1fr 190px;
    }

    .brand {
        width: 160px;
        height: 66px;
    }

    .navigation {
        gap: 24px;
    }

    .header__access {
        width: 184px;

        padding: 0 17px;
    }

    .hero__content {
        width: 500px;
    }

    .benefits {
        right: 0;

        width: 64%;
    }

    .benefit {
        padding: 0 12px;

        gap: 9px;
    }

    .benefit__icon svg {
        width: 25px;
        height: 25px;
    }

    .benefit__content {
        font-size: 11px;
    }

    .ecosystem__container {
        grid-template-columns: 280px 1fr;
    }

    .ecosystem-item {
        padding: 0 14px;
    }

    .statistic {
        padding-right: 40px;
        padding-left: 40px;
    }

}


@media (max-width: 1050px) {

    .header {
        height: 92px;
    }

    .header__container {
        grid-template-columns: 1fr auto auto;

        gap: 16px;
    }

    .brand {
        width: 154px;
        height: 63px;
    }

    .header__access {
        display: none;
    }

    .menu-button {
        position: relative;
        z-index: 3;

        display: block;
    }

    .navigation {
        position: fixed;
        z-index: 2;

        inset: 0;

        padding:
            120px
            32px
            40px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;

        gap: 0;

        background: rgba(2, 3, 3, 0.98);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-12px);

        transition:
            opacity 200ms ease,
            visibility 200ms ease,
            transform 200ms ease;
    }

    .navigation.is-open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .navigation__link {
        width: 100%;

        padding: 18px 0;

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

        font-size: 18px;
    }

    .menu-button.is-active span:first-child {
        transform:
            translateY(3px)
            rotate(45deg);
    }

    .menu-button.is-active span:last-child {
        transform:
            translateY(-3px)
            rotate(-45deg);
    }

    .hero {
        height: auto;
        min-height: 900px;
    }

    .hero__shade {
        background:
            linear-gradient(
                90deg,
                rgba(1, 2, 2, 0.94) 0%,
                rgba(1, 2, 2, 0.76) 47%,
                rgba(1, 2, 2, 0.18) 100%
            ),
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.18),
                rgba(0, 0, 0, 0.72)
            );
    }

    .hero__content {
        top: 45%;

        width: min(100%, 540px);
    }

    .benefits {
        right: 0;
        bottom: 32px;

        width: 100%;

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

    .benefit {
        height: 72px;

        padding: 0 9px;

        flex-direction: column;

        gap: 5px;

        text-align: center;
    }

    .benefit__icon {
        width: 25px;
        height: 25px;
    }

    .benefit__icon svg {
        width: 23px;
        height: 23px;
    }

    .benefit__content {
        gap: 0;

        font-size: 10px;
        line-height: 1.2;
    }

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

    .ecosystem__intro {
        min-height: 62px;

        justify-content: center;

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

    .ecosystem__items {
        min-height: 88px;
    }

}


@media (max-width: 760px) {

    :root {
        --page-padding: 20px;
    }

    .header {
        padding-top: env(safe-area-inset-top);
    }

    .hero {
        min-height: 970px;
    }

    .hero__background {
        background-position: 61% center;
    }

    .hero__shade {
        background:
            linear-gradient(
                180deg,
                rgba(1, 2, 2, 0.73) 0%,
                rgba(1, 2, 2, 0.8) 45%,
                rgba(1, 2, 2, 0.96) 76%,
                #020303 100%
            ),
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.65),
                rgba(0, 0, 0, 0.08)
            );
    }

    .hero__content {
        top: 148px;

        width: 100%;

        transform: none;

        animation:
            mobileHeroReveal 700ms ease both;
    }

    .hero__eyebrow {
        margin-bottom: 18px;

        font-size: 11px;
    }

    .hero__title {
        max-width: 520px;

        font-size: clamp(40px, 11vw, 56px);
        line-height: 1.08;
    }

    .hero__description {
        max-width: 510px;

        margin-top: 24px;

        font-size: 14px;
        line-height: 1.75;
    }

    .hero__actions {
        margin-top: 29px;

        align-items: flex-start;
        flex-direction: column;

        gap: 18px;
    }

    .button--primary {
        width: 100%;
        max-width: 310px;
    }

    .button,
    .video-link,
    .navigation__link,
    .language__option {
        min-height: 44px;
    }

    .benefits {
        bottom: 22px;

        overflow-x: auto;

        display: flex;
        align-items: stretch;

        scrollbar-width: none;
    }

    .benefits::-webkit-scrollbar {
        display: none;
    }

    .benefit {
        flex: 0 0 135px;

        height: 86px;
    }

    .ecosystem {
        padding-top: 12px;
    }

    .ecosystem__intro {
        padding: 0 20px;

        white-space: normal;
        text-align: center;
    }

    .ecosystem__items {
        overflow-x: auto;

        display: flex;

        scrollbar-width: none;
    }

    .ecosystem__items::-webkit-scrollbar {
        display: none;
    }

    .ecosystem-item {
        flex: 0 0 170px;

        min-height: 88px;
    }

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

    .contact {
        padding-top: 72px;
        padding-bottom: 76px;
    }

    .contact__actions {
        flex-direction: column;
    }

    .contact__actions .button {
        width: 100%;
        max-width: 310px;
    }

    .footer__container {
        flex-direction: column;

        text-align: center;
    }

    .footer__brand {
        width: 118px;
        height: 48px;
    }

    .footer__brand img {
        object-position: center;
    }

    .footer__note {
        text-align: center;
    }

    .statistic {
        min-height: 104px;

        padding: 22px 25px;

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

    .statistic:nth-child(2)::after {
        display: none;
    }

    .statistic:nth-child(3),
    .statistic:nth-child(4) {
        border-bottom: 0;
    }

    .statistic__value {
        font-size: 24px;
    }

    @keyframes mobileHeroReveal {

        from {
            opacity: 0;
            transform: translateY(18px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }

    }

}


@media (max-width: 480px) {

    .header__container {
        width: calc(100% - 32px);
    }

    .brand {
        width: 139px;
        height: 58px;
    }

    .language__option {
        padding: 5px 7px;

        font-size: 10px;
    }

    .hero__title {
        font-size: clamp(34px, 10.5vw, 40px);
    }

    .hero__description {
        font-size: 16px;
    }

    .ecosystem {
        padding-right: 10px;
        padding-left: 10px;
    }

    .statistics {
        padding-right: 10px;
        padding-left: 10px;
    }

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

    .statistic {
        min-height: 90px;

        text-align: center;
    }

    .statistic::after {
        display: none;
    }

    .statistic:nth-child(3) {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.045);
    }

}


/* ==========================================================
   ACESSIBILIDADE
========================================================== */

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
    }

}
