/* ============================================ */
/* VARIÁVEIS CSS */
/* ============================================ */
:root {
    /* CORES */
    --color-primary: #36040A;
    --color-secondary: #57121B;
    --color-accent: #87434D;
    --color-dark: #240207;
    --color-text: #f1f1f1;
    --color-light: #420910;
    --color-white: #f1f1f1;
    --color-background: #36040A;
    --color-surface: #4B1019;
    color-scheme: dark;
    --color-primary-ink: #f1f1f1;
    --color-muted: #f1f1f1;
    --color-border: #71303B;
    --color-soft: #571722;
    /* TIPOGRAFIA */
    --font-body: 'Inter', sans-serif;
    /* LAYOUT */
    --container-width: 1160px;
    /* BORDAS */
    --radius: 20px;
    /* SOMBRAS */
    --shadow: 0 12px 38px rgb(0 0 0 / 20%);
    --button-shadow: 0 8px 22px rgb(54 4 10 / 24%);
}

/* ============================================ */
/* RESET */
/* ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ============================================ */
/* ESTILOS BASE / TIPOGRAFIA */
/* ============================================ */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 24px;
}

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-background);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font: inherit;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--color-primary-ink);
    outline-offset: 5px;
}

h1, h2, h3, p {
    margin: 0;
}

h1, h2, h3 {
    color: var(--color-text);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.8rem, 3.1vw, 2.65rem);
    font-weight: 750;
    letter-spacing: -.045em;
}

h3 {
    font-size: 1.125rem;
    letter-spacing: -.025em;
}

svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ============================================ */
/* UTILITÁRIOS / CONTAINER / ACESSIBILIDADE */
/* ============================================ */
.container {
    width: min(var(--container-width), calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding-block: 64px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
    padding: 12px 20px;
    background: var(--color-surface);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

/* ============================================ */
/* HEADER / NAVEGAÇÃO */
/* ============================================ */
.site-header {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--color-border);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--color-text);
    font-size: .8rem;
    line-height: 1.15;
    letter-spacing: -.025em;
    flex-shrink: 0;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: .875rem;
    font-weight: 600;
}

.nav-link {
    display: none;
    padding-block: 12px;
}

.nav-link:hover, .legal-links a:hover {
    color: var(--color-primary-ink);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 14px;
    gap: 16px;
    border: 1px solid var(--color-accent);
    border-radius: 30px;
    font-size: .75rem;
}

.header-cta:hover {
    background: var(--color-light);
}

/* ============================================ */
/* HERO / TEXTO */
/* ============================================ */
.hero {
    padding-block: 36px 45px;
    display: grid;
    gap: 40px;
}

.badge {
    display: inline-block;
    color: var(--color-primary-ink);
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    padding: 7px 12px;
    font-size: .6875rem;
    font-weight: 750;
    letter-spacing: .07em;
}

h1 {
    margin-top: 20px;
    max-width: 630px;
    font-size: clamp(2rem, 3.5vw, 3.18rem);
    font-weight: 750;
    line-height: 1.11;
    letter-spacing: -.048em;
}

h1 > span, .section-heading h2 > span {
    color: var(--color-primary-ink);
}

.hero-description {
    max-width: 560px;
    margin-top: 22px;
    line-height: 1.75;
}

.hero-proof {
    margin-block: 21px;
    max-width: 470px;
    font-size: .8125rem;
}

/* ============================================ */
/* BOTÕES / CTAs */
/* ============================================ */
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 62px;
    padding: 17px 16px;
    background: var(--color-primary);
    color: var(--color-white);
    border: 0;
    border-radius: 12px;
    box-shadow: var(--button-shadow);
    font-size: .8125rem;
    line-height: 1.45;
    font-weight: 800;
    text-align: center;
    transition: transform .22s, box-shadow .22s, background .22s;
}

.button > img {
    flex: 0 0 23px;
}

.button-arrow {
    margin-left: auto;
    font-size: 21px;
    font-weight: 400;
}

.button:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgb(54 4 10 / 30%);
}

.button:active {
    transform: translateY(0);
}

.button.whatsapp-link {
    background: #25D366;
    color: #f1f1f1;
    box-shadow: 0 8px 22px rgb(37 211 102 / 24%);
    animation: whatsapp-pulse 2s ease-out infinite;
}

.button.whatsapp-link > img {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
}

.button.whatsapp-link:hover {
    background: #20BD5A;
}

.button.whatsapp-link:hover, .button.whatsapp-link:focus-visible {
    animation: none;
    box-shadow: 0 10px 26px rgb(37 211 102 / 35%);
}

/* ============================================ */
/* ANIMAÇÃO / PULSAÇÃO DO WHATSAPP */
/* ============================================ */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 8px 22px rgb(37 211 102 / 24%), 0 0 0 0 rgb(37 211 102 / 40%);
    }
    70% {
        box-shadow: 0 8px 22px rgb(37 211 102 / 24%), 0 0 0 12px rgb(37 211 102 / 0%);
    }
    100% {
        box-shadow: 0 8px 22px rgb(37 211 102 / 24%), 0 0 0 0 rgb(37 211 102 / 0%);
    }
}

/* ============================================ */
/* HERO / IMAGEM E ELEMENTOS DE APOIO */
/* ============================================ */
.cta-note {
    font-size: .6875rem;
    margin-top: 13px;
    text-align: center;
    color: var(--color-muted);
}

.cta-note > span {
    margin-inline: 3px;
}

.hero-visual {
    position: relative;
    margin: 15px 9px 0;
    padding-bottom: 30px;
    min-width: 0;
}

.portrait-frame {
    border-radius: 150px 150px 28px 28px;
    background: var(--color-soft);
    overflow: hidden;
    border: 7px solid var(--color-light);
    transform: rotate(2deg);
}

.portrait {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.visual-sticker {
    position: absolute;
    background: var(--color-surface);
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border);
    font-size: .75rem;
    line-height: 1.6;
    border-radius: 14px;
    padding: 12px 16px;
    transform: rotate(-7deg);
    top: 3%;
    left: -12px;
}

.visual-sticker > span {
    color: var(--color-primary-ink);
    float: left;
    font-size: 30px;
    margin-right: 10px;
}

.creator-label {
    position: absolute;
    left: -9px;
    right: 9px;
    bottom: 45px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px;
    border: 1px solid var(--color-border);
    border-radius: 15px;
    background: var(--color-surface);
    box-shadow: var(--shadow);
    transform: rotate(-3deg);
}

.creator-heart {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-soft);
    color: var(--color-primary-ink);
    font-size: 29px;
}

.creator-label strong {
    display: block;
    color: var(--color-text);
    font-size: 1rem;
}

.visual-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: var(--color-muted);
    font-size: .6875rem;
}

/* ============================================ */
/* PROVA SOCIAL */
/* ============================================ */
.community {
    background: var(--color-light);
    border-block: 1px solid var(--color-border);
}

.community-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    padding-block: 28px;
}

.avatar-stack {
    display: flex;
    padding-left: 10px;
}

.avatar-stack > span {
    display: grid;
    place-items: center;
    margin-left: -10px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--color-light);
    background: var(--color-accent);
    color: var(--color-text);
    font-size: .65rem;
    font-weight: 700;
}

.avatar-stack > span:nth-child(2n) {
    background: var(--color-soft);
}

.avatar-stack > span:last-child {
    background: var(--color-dark);
    color: var(--color-white);
}

.community p {
    font-size: .875rem;
}

.community-rating {
    display: flex;
    flex-direction: column;
    font-size: .75rem;
    color: var(--color-muted);
    text-align: center;
}

/* ============================================ */
/* OPORTUNIDADE SEKEY / DESTAQUE */
/* ============================================ */
.occupancy-section {
    padding-top: 45px;
}

.occupancy {
    max-width: 740px;
    margin-inline: auto;
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.occupancy-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.eyebrow {
    display: block;
    color: var(--color-primary-ink);
    font-size: .6875rem;
    font-weight: 750;
    letter-spacing: .15em;
    margin-bottom: 12px;
}

.occupancy .eyebrow {
    font-size: .6rem;
    margin-bottom: 6px;
}

.occupancy h2 {
    font-size: 1rem;
    letter-spacing: -.025em;
}

.occupancy > p {
    font-size: .8125rem;
}

/* ============================================ */
/* TÍTULOS DE SEÇÃO / BENEFÍCIOS */
/* ============================================ */
.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 35px;
}

.section-heading p {
    margin-top: 14px;
    color: var(--color-muted);
}

.benefit-grid, .testimonial-grid {
    display: grid;
    gap: 18px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 27px 23px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform .25s, border-color .25s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.icon-box {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--color-soft);
    color: var(--color-primary-ink);
    margin-bottom: 23px;
}

.benefit-card h3 {
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: .875rem;
    line-height: 1.75;
    margin-bottom: 25px;
}

.card-caption {
    margin-top: auto;
    padding-top: 17px;
    border-top: 1px solid var(--color-border);
    color: var(--color-muted);
    font-size: .6875rem;
    width: 100%;
}

/* ============================================ */
/* LINKS VERIFICADOS / SEGURANÇA */
/* ============================================ */
.trust {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 24px;
    margin-top: 27px;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: 16px;
}

.trust-icon {
    color: var(--color-primary-ink);
    flex-shrink: 0;
}

.trust h3 {
    font-size: .9375rem;
    margin-bottom: 7px;
}

.trust p {
    font-size: .8125rem;
    color: var(--color-muted);
    max-width: 820px;
}

/* ============================================ */
/* COMO FUNCIONA */
/* ============================================ */
.how-section {
    background: var(--color-light);
    border-block: 1px solid var(--color-border);
}

.steps {
    list-style: none;
    padding: 0;
    margin: 40px 0 30px;
    display: grid;
    gap: 32px;
}

.steps li {
    position: relative;
    padding-left: 76px;
    min-height: 100px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--color-surface);
    border: 1px solid var(--color-accent);
    color: var(--color-primary-ink);
    font-size: 1.125rem;
    font-weight: 650;
    z-index: 1;
}

.steps li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 54px;
    height: calc(100% - 22px);
    border-left: 1px dashed var(--color-accent);
}

.steps h3 {
    margin-block: 2px 10px;
}

.steps p {
    font-size: .875rem;
    color: var(--color-muted);
}

.how-note {
    text-align: center;
    color: var(--color-muted);
    font-size: .8125rem;
}

.how-note strong {
    color: var(--color-primary-ink);
}

/* ============================================ */
/* OPORTUNIDADES */
/* ============================================ */
.review {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.opportunity-description {
    margin: 16px 0 25px;
    font-size: .9375rem;
    line-height: 1.9;
}

/* ============================================ */
/* CTA FINAL */
/* ============================================ */
.final-section {
    padding-bottom: 55px;
}

.final-cta {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 28px;
    background: var(--color-soft);
    padding: 45px 22px;
    border: 1px solid var(--color-accent);
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.final-cta h2 span {
    color: var(--color-primary-ink);
}

.final-cta > p {
    max-width: 490px;
    margin: 20px auto 25px;
}

.final-cta .button {
    max-width: 370px;
    margin-inline: auto;
}

.final-cta small {
    display: block;
    margin-top: 17px;
    font-size: .75rem;
}

.final-sparkle {
    display: block;
    font-size: 34px;
    color: var(--color-primary-ink);
    line-height: 1;
    margin-bottom: 20px;
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
.site-footer {
    padding-bottom: 30px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 15px 30px;
}

.footer-top > p {
    font-size: .8125rem;
    color: var(--color-muted);
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.legal-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: .75rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 23px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    font-size: .6875rem;
    color: var(--color-muted);
}

/* ============================================ */
/* CTA FLUTUANTE MOBILE */
/* ============================================ */
.mobile-bar {
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: 0 -5px 24px rgb(37 37 37 / 8%);
}

.mobile-bar[hidden] {
    display: none;
}

.mobile-bar .button {
    min-height: 52px;
    padding: 12px 16px;
    font-size: .875rem;
}

body.has-mobile-bar {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
}

/* ============================================ */
/* DIÁLOGOS / PRIVACIDADE E TERMOS */
/* ============================================ */
dialog {
    width: min(580px, calc(100% - 32px));
    max-height: 85dvh;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    color: var(--color-text);
    background: var(--color-surface);
    box-shadow: var(--shadow);
}

dialog::backdrop {
    background: rgb(37 37 37 / 55%);
}

.dialog-inner {
    position: relative;
    padding: 64px 26px 30px;
}

.dialog-inner h2 {
    font-size: 1.7rem;
}

.dialog-inner p {
    margin-top: 18px;
    font-size: .9375rem;
}

.dialog-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 0;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    background: var(--color-soft);
    color: var(--color-text);
    font-size: 26px;
}

.noscript-note {
    padding: 20px;
    background: var(--color-light);
}

/* ============================================ */
/* ANIMAÇÕES / ENTRADA DAS SEÇÕES */
/* ============================================ */
.reveal.is-pending {
    opacity: 0;
    transform: translateY(20px);
}

.reveal {
    transition: opacity .6s ease, transform .6s ease;
}

/* ============================================ */
/* RESPONSIVIDADE / A PARTIR DE 600 PX */
/* ============================================ */
@media (min-width: 600px) {
    .container {
        width: min(var(--container-width), calc(100% - 64px));
    }
    .hero-visual {
        max-width: 440px;
        width: calc(100% - 20px);
        margin-inline: auto;
    }
    .hero-copy .button {
        max-width: 420px;
    }
    .hero-copy .cta-note {
        max-width: 420px;
    }
    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .community-rating {
        border-left: 1px solid var(--color-border);
        padding-left: 28px;
        margin-left: 10px;
    }
    .occupancy {
        padding: 25px 32px;
    }
    .occupancy h2 {
        font-size: 1.2rem;
    }
    .occupancy .eyebrow {
        font-size: .6875rem;
    }
    .final-cta {
        padding: 60px 30px;
    }
}

/* ============================================ */
/* RESPONSIVIDADE / A PARTIR DE 900 PX */
/* ============================================ */
@media (min-width: 900px) {
    .nav-link {
        display: inline-block;
    }
    .header-cta {
        padding-inline: 22px;
        font-size: .8125rem;
    }
    .hero {
        grid-template-columns: 1.15fr .85fr;
        align-items: center;
        gap: 60px;
        padding-block: 60px 70px;
    }
    .hero-visual {
        margin: 0;
        width: 100%;
    }
    .creator-label {
        left: -28px;
        right: 14px;
        padding: 19px;
    }
    .creator-label strong {
        font-size: 1.0625rem;
    }
    .visual-sticker {
        left: -28px;
        top: 6%;
    }
    .button {
        font-size: .875rem;
    }
    .cta-note {
        font-size: .6875rem;
    }
    .section {
        padding-block: 85px;
    }
    .benefit-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .trust {
        justify-content: center;
        padding: 24px 32px;
    }
    .steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 65px;
        margin-top: 45px;
    }
    .steps li {
        text-align: center;
        padding: 0;
    }
    .step-number {
        position: relative;
        margin: 0 auto 24px;
        width: 60px;
        height: 60px;
    }
    .steps li:not(:last-child)::after {
        height: 0;
        top: 30px;
        left: calc(50% + 30px);
        width: calc(100% + 5px);
        border: 0;
        border-top: 1px dashed var(--color-accent);
    }
    .testimonial-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .final-section {
        padding-bottom: 65px;
    }
    .final-sparkle {
        position: absolute;
        left: 14%;
        top: 35%;
        font-size: 65px;
        transform: rotate(15deg);
    }
    .mobile-bar {
        display: none;
    }
    body.has-mobile-bar {
        padding-bottom: 0;
    }
}

/* ============================================ */
/* ACESSIBILIDADE / MOVIMENTO REDUZIDO */
/* ============================================ */
@media (prefers-reduced-motion: reduce) {
    .button.whatsapp-link {
        animation: none;
    }
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0s;
        transition-duration: 0s;
    }
    .reveal.is-pending {
        opacity: 1;
        transform: none;
    }
    .button:hover, .benefit-card:hover {
        transform: none;
    }
}

/* ============================================ */
/* COMPLEMENTOS / LOGO E SUPERFÍCIES */
/* ============================================ */
.brand-logo {
    width: clamp(130px, 20vw, 190px);
    height: auto;
    max-height: 76px;
    object-fit: contain;
}

.benefit-card, .review, .occupancy {
    background: var(--color-surface);
}

/* Ajustes de conteúdo para o grupo de embaixadoras, preservando os breakpoints existentes. */
/* ============================================ */
/* COMPLEMENTOS / CONTEÚDO DO GRUPO */
/* ============================================ */
.occupancy > p {
    margin-top: 16px;
}

.occupancy .button {
    max-width: 300px;
    margin-top: 20px;
    min-height: 52px;
}

.community-inner > p {
    max-width: 560px;
}

.final-cta h2 {
    max-width: 680px;
    margin-inline: auto;
}

/* ============================================ */
/* ROLAGEM SUAVE / GSAP SCROLLSMOOTHER */
/* ============================================ */
/* CARROSSEL DE COMISSÕES */
.comissoes__carousel {
    max-width: 380px;
    margin-inline: auto;
    min-width: 0;
    border-radius: var(--radius);
}

.comissoes__viewport {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    box-shadow: var(--shadow);
    touch-action: pan-y pinch-zoom;
}

.comissoes__track {
    display: flex;
    align-items: center;
    transition: transform .4s ease;
}

.comissoes__slide {
    flex: 0 0 100%;
    min-width: 0;
    padding: 12px;
}

.comissoes__slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
}

.comissoes__dots {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.comissoes__dots button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.comissoes__dots button::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary-ink);
    opacity: .3;
    transition: opacity .25s ease, transform .25s ease;
}

.comissoes__dots button[hidden] {
    display: none;
}

@media (min-width: 768px) {
    .comissoes__carousel {
        max-width: 960px;
    }

    .comissoes__slide {
        flex-basis: calc(100% / 3);
    }
}

.comissoes__dots button[aria-current="true"]::before {
    opacity: 1;
    transform: scale(1.2);
}

.comissoes__disclaimer {
    max-width: 560px;
    margin: 12px auto 0;
    text-align: center;
    color: var(--color-muted);
    font-size: .75rem;
    line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
    .comissoes__track, .comissoes__dots button::before {
        transition: none;
    }
}

html.has-smooth-scroll {
    scroll-behavior: auto;
}

/* Reserva espaço no conteúdo transformado para o CTA fixo mobile. */
@media (max-width: 899px) {
    html.has-smooth-scroll body.has-mobile-bar {
        padding-bottom: 0;
    }

    html.has-smooth-scroll body.has-mobile-bar #smooth-content {
        padding-bottom: calc(84px + env(safe-area-inset-bottom));
    }
}
