/* ============================================================
   Landing RBX - LOOT (template "Pagina inicial RBX")

   Estilo dark da landing do app, portado do layout original.
   Tudo fica escopado sob .rbx-landing porque o style-common.css
   define regras globais para body, h1-h6, p, a e .button que
   sobrescreveriam o visual da landing.
   ============================================================ */

/* Sora (titulos, logo e botoes da landing). Hospedada localmente, como
   ja e feito com a Inter, para nao depender do Google Fonts. Arquivo
   variavel: um so recorte cobre os pesos 600-800 usados aqui. */
@font-face {
    font-family: 'Sora';
    src: url('../fonts/Sora-latin.woff2') format('woff2');
    font-weight: 600 800;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Sora';
    src: url('../fonts/Sora-latin-ext.woff2') format('woff2');
    font-weight: 600 800;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

.rbx-landing {
    --rbx-bg: #09090c;
    --rbx-card: rgba(255, 255, 255, 0.03);
    --rbx-line: rgba(255, 255, 255, 0.09);
    --rbx-orange: #ff8a2a;
    --rbx-gold: #ffc93c;
    --rbx-green: #56e07a;
    --rbx-blue: #3b82f6;
    --rbx-mid: #a09a8e;

    color: #fff;
    font-family: Inter, system-ui, sans-serif;
    line-height: 1.5;
}

/* O tema aplica padding em <main>; a landing controla o proprio espacamento. */
main.rbx-landing {
    padding: 0;
}

/* A landing traz o proprio menu, entao o cabecalho do tema sai de cena.
   O argumento ocultar_menu do get_header() so remove os links de navegacao
   — a barra com o logo continua sendo impressa, e e ela que aparecia como
   uma faixa clara acima do hero. */
body.rbx-body #site-header {
    display: none;
}

/* O style-common.css estiliza a tag <header> de forma generica (altura fixa
   de 80px, display:flex, fundo claro) pensando na barra do topo do site, e
   "header div{height:100%}" achatava o que estivesse dentro. A landing usa
   <header> nos proprios blocos (o hero da home, o cabecalho das paginas
   internas), entao essas regras precisam ser desfeitas aqui — sem isso o
   bloco colapsa, ganha fundo branco e o conteudo seguinte sobe por cima.
   O .stage fica de fora porque tem altura propria, que sustenta as telas
   posicionadas de forma absoluta. */
.rbx-landing header,
.rbx-landing header div:not(.stage) {
    height: auto;
}

.rbx-landing header {
    display: block;
    background-color: transparent;
    transition: none;
    align-items: initial;
}

/* O fundo escuro fica so no <body>, e nao no <main> nem no <html>: as
   camadas .bgfx/.grain usam z-index negativo (como no layout original) e
   so aparecem se nao houver plano opaco na frente delas — pintar o <html>
   apagava o brilho alaranjado do topo. O fundo do <body> e propagado para
   o canvas, entao a area de overscroll (bounce do iOS) segue escura. */
body.rbx-body {
    background: #09090c;
}

/* O overflow-x: clip que o style-common.css aplica em html/body precisa
   virar "visible": qualquer valor de overflow diferente disso em um
   ancestral desativa o position: sticky do menu da landing. Nada aqui
   estoura a largura da tela — a vitrine deslizante, unico bloco mais largo
   que a viewport, ja tem o proprio overflow: hidden. */
html[data-rbx="landing"],
body.rbx-body {
    overflow-x: visible;
}

/* Rolagem suave nas ancoras do menu da landing. */
html[data-rbx="landing"] {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html[data-rbx="landing"] {
        scroll-behavior: auto;
    }
}

.rbx-landing *,
.rbx-landing *::before,
.rbx-landing *::after {
    box-sizing: border-box;
}

.rbx-landing a {
    color: inherit;
    text-decoration: none;
}

.rbx-landing img {
    max-width: 100%;
    display: block;
    height: auto;
}

.rbx-landing p {
    color: inherit;
    line-height: inherit;
}

.rbx-landing h1,
.rbx-landing h2,
.rbx-landing h3,
.rbx-landing h4 {
    font-family: Sora, Inter, sans-serif;
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #fff;
}

.rbx-landing .wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.rbx-landing .grad {
    background: linear-gradient(100deg, #ffb65c, #ff8a2a 55%, #ff5e3a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---------- Efeitos de fundo ---------- */

.rbx-landing .bgfx {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(60% 45% at 20% 0%, rgba(255, 138, 42, 0.18), transparent 60%),
        radial-gradient(50% 40% at 90% 10%, rgba(86, 224, 122, 0.1), transparent 60%),
        radial-gradient(60% 50% at 50% 120%, rgba(59, 130, 246, 0.1), transparent);
}

.rbx-landing .grain {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Navegacao ---------- */

.rbx-landing .nav {
    position: sticky;
    top: 0;
    z-index: 30;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.rbx-landing .nav.scr {
    background: rgba(9, 9, 12, 0.8);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-color: var(--rbx-line);
}

.rbx-landing .nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
}

.rbx-landing .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Sora, Inter, sans-serif;
    font-weight: 800;
    font-size: 18px;
}

.rbx-landing .lm {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(150deg, var(--rbx-orange), #b84a00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 0 18px rgba(255, 138, 42, 0.55);
    flex: none;
}

.rbx-landing .navlinks {
    display: flex;
    gap: 26px;
    font-size: 14px;
    color: var(--rbx-mid);
}

.rbx-landing .navlinks a:hover {
    color: #fff;
}

.rbx-landing .btnp {
    background: linear-gradient(95deg, var(--rbx-orange), #e06d00);
    color: #1a0f00;
    font-family: Sora, Inter, sans-serif;
    font-weight: 800;
    padding: 11px 20px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(255, 138, 42, 0.3);
    transition: 0.2s;
    white-space: nowrap;
}

.rbx-landing .btnp:hover {
    color: #1a0f00;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 138, 42, 0.45);
}

/* ---------- Hero ---------- */

.rbx-landing .hero {
    position: relative;
    padding: 80px 0 60px;
}

.rbx-landing .hero .wrap {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 30px;
    align-items: center;
}

.rbx-landing .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--rbx-line);
    border-radius: 99px;
    padding: 8px 14px;
    font-size: 12.5px;
    color: #e6ddcd;
    margin-bottom: 22px;
}

.rbx-landing .pill svg {
    width: 16px;
    height: 16px;
    display: block;
    color: var(--rbx-orange);
    flex: none;
}

.rbx-landing .pill b {
    color: var(--rbx-gold);
}

.rbx-landing .hero h1 {
    font-size: 56px;
    font-weight: 800;
}

.rbx-landing .lead {
    color: var(--rbx-mid);
    font-size: 18px;
    margin: 20px 0 30px;
    max-width: 480px;
}

.rbx-landing .cta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.rbx-landing .gplay {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0f0f0f;
    border: 1px solid #34342b;
    border-radius: 14px;
    padding: 12px 20px;
    transition: 0.2s;
}

.rbx-landing .gplay:hover {
    border-color: #55554688;
    transform: translateY(-2px);
}

/* O rotulo do botao usa <span> (inline) para nao aninhar <div> dentro do
   link, entao as duas linhas precisam ser declaradas como bloco. */
.rbx-landing .gplay .gplay-txt,
.rbx-landing .gplay .pt,
.rbx-landing .gplay .pb {
    display: block;
}

.rbx-landing .gplay .pt {
    font-size: 10px;
    color: #b9b3a6;
    line-height: 1;
}

.rbx-landing .gplay .pb {
    font-family: Sora, Inter, sans-serif;
    font-weight: 800;
    font-size: 17px;
}

.rbx-landing .rate .s {
    color: var(--rbx-gold);
    display: flex;
    gap: 3px;
}

.rbx-landing .rate .s svg {
    width: 14px;
    height: 14px;
    display: block;
}

.rbx-landing .rate small {
    color: var(--rbx-mid);
    font-size: 11px;
    display: block;
    margin-top: 2px;
}

.rbx-landing .stage {
    position: relative;
    height: 520px;
}

.rbx-landing .ph {
    position: absolute;
    width: 230px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--rbx-line);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.rbx-landing .ph.a {
    left: 40px;
    top: 20px;
    transform: rotate(-7deg);
    animation: rbx-floatY 6s ease-in-out infinite;
}

.rbx-landing .ph.b {
    right: 20px;
    top: 70px;
    transform: rotate(6deg);
    width: 240px;
    animation: rbx-floatY 6s ease-in-out infinite 1.5s;
    z-index: 2;
}

.rbx-landing .halo {
    position: absolute;
    width: 340px;
    height: 340px;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(255, 138, 42, 0.35), transparent);
    filter: blur(10px);
    animation: rbx-pulse 5s ease-in-out infinite;
}

@keyframes rbx-floatY {
    0%,
    100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -16px;
    }
}

@keyframes rbx-pulse {
    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

/* ---------- Faixa de numeros ---------- */

.rbx-landing .trust {
    border-top: 1px solid var(--rbx-line);
    border-bottom: 1px solid var(--rbx-line);
}

.rbx-landing .trust .wrap {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 18px;
    padding: 26px 24px;
}

.rbx-landing .stat {
    text-align: center;
}

.rbx-landing .stat .n {
    font-family: Sora, Inter, sans-serif;
    font-size: 26px;
    font-weight: 800;
}

.rbx-landing .stat .n.o {
    color: var(--rbx-gold);
}

.rbx-landing .stat .l {
    font-size: 12px;
    color: var(--rbx-mid);
    margin-top: 2px;
}

/* ---------- Secoes ---------- */

.rbx-landing section {
    padding: 80px 0;
}

.rbx-landing .eyebrow {
    font-family: Sora, Inter, sans-serif;
    font-size: 11px;
    letter-spacing: 0.24em;
    color: var(--rbx-orange);
    text-align: center;
    font-weight: 700;
}

.rbx-landing .h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin: 12px 0 10px;
}

.rbx-landing .sub {
    color: var(--rbx-mid);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 46px;
    font-size: 16px;
}

/* ---------- Cards de recursos ---------- */

.rbx-landing .fgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.rbx-landing .fc {
    background: var(--rbx-card);
    border: 1px solid var(--rbx-line);
    border-radius: 20px;
    padding: 26px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: 0.25s;
}

.rbx-landing .fc:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 138, 42, 0.45);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.rbx-landing .fi {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    /* O quadrado recebe a cor do tema do card por style inline; o icone
       herda essa cor pelo stroke="currentColor". */
    border: 1px solid currentColor;
    box-shadow: 0 0 18px -6px currentColor;
}

.rbx-landing .fi svg {
    width: 26px;
    height: 26px;
    display: block;
}

.rbx-landing .fc h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 7px;
}

.rbx-landing .fc p {
    color: var(--rbx-mid);
    font-size: 14px;
}

/* ---------- Vitrine (carrossel infinito) ---------- */

.rbx-landing .showcase {
    overflow: hidden;
    padding: 80px 0;
}

.rbx-landing .mmask {
    -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.rbx-landing .mtrack {
    display: flex;
    gap: 20px;
    width: -webkit-max-content;
    width: max-content;
    animation: rbx-marq 46s linear infinite;
}

.rbx-landing .showcase:hover .mtrack {
    animation-play-state: paused;
}

@keyframes rbx-marq {
    to {
        transform: translateX(-50%);
    }
}

.rbx-landing .mcard {
    width: 220px;
    flex: none;
    margin: 0;
}

.rbx-landing .mcard img {
    border-radius: 22px;
    border: 1px solid var(--rbx-line);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.rbx-landing .mcard figcaption {
    text-align: center;
    font-family: Sora, Inter, sans-serif;
    font-size: 12.5px;
    color: var(--rbx-mid);
    margin-top: 10px;
}

/* ---------- Passos ---------- */

.rbx-landing .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rbx-landing .step {
    background: var(--rbx-card);
    border: 1px solid var(--rbx-line);
    border-radius: 20px;
    padding: 26px;
    text-align: center;
}

.rbx-landing .snum {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Sora, Inter, sans-serif;
    font-weight: 800;
    font-size: 22px;
    background: linear-gradient(150deg, var(--rbx-orange), #b84a00);
    color: #1a0f00;
    box-shadow: 0 8px 20px rgba(255, 138, 42, 0.3);
}

.rbx-landing .step h3 {
    font-size: 17px;
    margin-bottom: 7px;
}

.rbx-landing .step p {
    color: var(--rbx-mid);
    font-size: 14px;
}

/* ---------- Faixa de aviso ---------- */

.rbx-landing .band {
    background: linear-gradient(120deg, rgba(255, 138, 42, 0.16), rgba(86, 224, 122, 0.08));
    border: 1px solid var(--rbx-line);
    border-radius: 24px;
    padding: 34px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rbx-landing .band h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.rbx-landing .band p {
    color: #cfc9bd;
    font-size: 14px;
    max-width: 660px;
    margin: 0 auto;
}

/* ---------- FAQ ---------- */

.rbx-landing .faq {
    max-width: 780px;
    margin: 0 auto;
}

.rbx-landing details {
    background: var(--rbx-card);
    border: 1px solid var(--rbx-line);
    border-radius: 16px;
    padding: 0 20px;
    margin-bottom: 12px;
    transition: 0.2s;
}

.rbx-landing details[open] {
    border-color: rgba(255, 138, 42, 0.4);
}

.rbx-landing summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 0;
    font-family: Sora, Inter, sans-serif;
    font-weight: 700;
    font-size: 15.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.rbx-landing summary::-webkit-details-marker {
    display: none;
}

.rbx-landing summary::after {
    content: "+";
    color: var(--rbx-orange);
    font-size: 22px;
    font-weight: 700;
}

.rbx-landing details[open] summary::after {
    content: "\2212";
}

.rbx-landing details p {
    color: var(--rbx-mid);
    font-size: 14px;
    padding: 0 0 18px;
}

/* ---------- CTA final ---------- */

.rbx-landing .ctabox {
    text-align: center;
    background: radial-gradient(90% 130% at 50% 0%, rgba(255, 138, 42, 0.28), transparent);
    border: 1px solid var(--rbx-line);
    border-radius: 28px;
    padding: 60px 26px;
}

.rbx-landing .ctabox h2 {
    font-size: 38px;
    margin-bottom: 14px;
}

/* ---------- Rodape da landing ---------- */

.rbx-landing .rbx-footer {
    border-top: 1px solid var(--rbx-line);
    background: #070709;
    padding: 46px 0 28px;
    font-size: 13px;
}

.rbx-landing .fcols {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 26px;
    margin-bottom: 28px;
}

.rbx-landing .fcol h4 {
    font-family: Sora, Inter, sans-serif;
    font-size: 13px;
    margin-bottom: 12px;
}

.rbx-landing .fcol a {
    display: block;
    color: var(--rbx-mid);
    margin-bottom: 9px;
}

.rbx-landing .fcol a:hover {
    color: #fff;
}

.rbx-landing .disc {
    /* O layout original usava #6f6f68, que fica em 3.9:1 sobre o fundo do
       rodape — abaixo do minimo de leitura. Este tom mantem o ar discreto
       e chega a 5:1, o que importa por ser o aviso de nao-afiliacao. */
    color: #807f77;
    font-size: 11.5px;
    border-top: 1px solid var(--rbx-line);
    padding-top: 20px;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ---------- Botao flutuante de ajuda ---------- */

/* O botao e um conjunto: avatar redondo do atendente + balao de fala com
   o convite. O balao tem fundo laranja e o avatar fica escuro, para o
   rosto se destacar contra ele. */
.rbx-landing .rbx-ajuda {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #1a0f00;
    font-family: Sora, Inter, sans-serif;
    font-weight: 800;
    font-size: 14px;
    line-height: 1.2;
    transition: transform 0.2s;
}

.rbx-landing .rbx-ajuda:hover {
    color: #1a0f00;
    transform: translateY(-3px);
}

.rbx-landing .rbx-ajuda:active {
    transform: translateY(-1px);
}

/* ----- Avatar ----- */

.rbx-landing .rbx-ajuda-avatar {
    order: 2;
    flex: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, var(--rbx-orange), #c85400);
    box-shadow: 0 10px 26px rgba(255, 138, 42, 0.4);
}

.rbx-landing .rbx-ajuda-avatar svg {
    width: 34px;
    height: 34px;
    display: block;
    /* O traco do headset e a cabeca usam a cor escura do botao, criando o
       recorte sobre o laranja do avatar. */
    color: #1a0f00;
}

.rbx-landing .rbx-ajuda .rbx-ajuda-vazado {
    fill: var(--rbx-orange);
}

.rbx-landing .rbx-ajuda .rbx-ajuda-vazado-traco {
    stroke: var(--rbx-orange);
}

/* ----- Balao de fala ----- */

.rbx-landing .rbx-ajuda-texto {
    order: 1;
    position: relative;
    background: linear-gradient(95deg, var(--rbx-orange), #e06d00);
    padding: 11px 16px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(255, 138, 42, 0.32);
    white-space: nowrap;
}

/* Rabinho apontando para o avatar. */
.rbx-landing .rbx-ajuda-texto::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: 11px;
    width: 12px;
    height: 12px;
    background: #e8760a;
    border-radius: 2px;
    transform: rotate(45deg);
}

/* Pulso discreto no avatar, so para o botao ser notado ao abrir a pagina. */
@keyframes rbx-ajuda-pulso {
    0%,
    100% {
        box-shadow: 0 10px 26px rgba(255, 138, 42, 0.4), 0 0 0 0 rgba(255, 138, 42, 0.5);
    }
    50% {
        box-shadow: 0 10px 26px rgba(255, 138, 42, 0.4), 0 0 0 12px rgba(255, 138, 42, 0);
    }
}

.rbx-landing .rbx-ajuda-avatar {
    animation: rbx-ajuda-pulso 3.4s ease-out 1.5s 3;
}

.rbx-landing .rbx-ajuda:hover .rbx-ajuda-avatar {
    animation: none;
}

/* No celular o balao ocuparia boa parte da largura, entao fica so o
   avatar — o title segue descrevendo o destino. */
@media (max-width: 600px) {
    .rbx-landing .rbx-ajuda {
        right: 16px;
        bottom: 16px;
        gap: 0;
    }

    .rbx-landing .rbx-ajuda-texto {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rbx-landing .rbx-ajuda-avatar {
        animation: none;
    }

    .rbx-landing .rbx-ajuda {
        transition: none;
    }

    .rbx-landing .rbx-ajuda:hover {
        transform: none;
    }
}

/* ---------- Animacao de entrada ---------- */

.rbx-landing .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.rbx-landing .reveal.in {
    opacity: 1;
    transform: none;
}

/* Sem JS o conteudo nao pode ficar invisivel — o <noscript> impresso no
   <head> (utils/page-home-rbx) neutraliza esta animacao de entrada. */

@media (prefers-reduced-motion: reduce) {
    .rbx-landing .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .rbx-landing .ph.a,
    .rbx-landing .ph.b,
    .rbx-landing .halo,
    .rbx-landing .mtrack {
        animation: none;
    }
}

/* ---------- Responsivo ---------- */

@media (max-width: 900px) {
    .rbx-landing .hero .wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rbx-landing .lead {
        margin: 20px auto 30px;
    }

    .rbx-landing .cta {
        justify-content: center;
    }

    .rbx-landing .stage {
        height: 440px;
        margin-top: 20px;
    }

    .rbx-landing .fgrid,
    .rbx-landing .steps {
        grid-template-columns: 1fr;
    }

    .rbx-landing .hero h1 {
        font-size: 40px;
    }

    .rbx-landing .h2 {
        font-size: 30px;
    }

    .rbx-landing .navlinks {
        display: none;
    }
}
