    :root {
        --bg-900: #071a35;
        --bg-850: #0a2146;
        --bg-800: #0b2a55;
        --line: rgba(255, 255, 255, .10);

        --text-100: rgba(255, 255, 255, .92);
        --text-200: rgba(255, 255, 255, .78);
        --text-300: rgba(255, 255, 255, .62);

        --gold-500: #f4b233;
        --gold-600: #eaa11b;

        --radius-xl: 22px;
        --radius-2xl: 28px;

        --shadow-lg: 0 18px 50px rgba(0, 0, 0, .35);
        --shadow-md: 0 12px 34px rgba(0, 0, 0, .28);

        --container: 1120px;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    /*instagram*/
.ig-reel{
  padding: 72px 0;
  background: #fff;
  text-align: center;
}

.ig-reel__title span{
  color: var(--gold-500, #f4b233);
}

.ig-reel__actions{
  margin-top: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.ig-reel__handle{
  color: rgba(8,23,46,.75);
  text-decoration: none;
  font-weight: 700;
}

.ig-reel__handle:hover{
  text-decoration: underline;
}

.ig-reel__wrap{
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

/* Card Reels 9:16 */
.reel-card{
  position: relative;
  width: 290px;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  background: #f7f8fb;
  display: block;
  text-decoration: none;
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease;
}

.reel-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0,0,0,.14);
}

.reel-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-card__badge{
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(244,178,51,.20);
  border: 1px solid rgba(244,178,51,.35);
  color: rgba(8, 23, 46, .88);
  backdrop-filter: blur(8px);
}

.reel-card__overlay{
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  background: radial-gradient(circle at 50% 45%, rgba(0,0,0,.18), rgba(0,0,0,.55));
  opacity: .98;
  transition: opacity .18s ease;
}

.reel-card:hover .reel-card__overlay{
  opacity: 1;
}

.reel-card__play{
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #0b1b34;
  margin: 0 auto;
}

.reel-card__cta{
  font-weight: 800;
  color: rgba(255,255,255,.95);
}

/* Mobile */
@media (max-width: 520px){
  .reel-card{ width: 250px; }
}
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
        color: var(--text-100);
        background: radial-gradient(1200px 600px at 10% 20%, rgba(255, 255, 255, .06), transparent 60%),
            radial-gradient(900px 520px at 90% 20%, rgba(255, 255, 255, .05), transparent 55%),
            linear-gradient(180deg, var(--bg-900) 0%, var(--bg-850) 55%, var(--bg-800) 100%);
        min-height: 100vh;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    button {
        font-family: inherit;
    }

    /* =========================
       TOPBAR (fixo)
       ========================= */
    .topbar {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 50;
        background: rgba(7, 26, 53, .72);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        transition: box-shadow .25s ease, background .25s ease;
    }

    .topbar.is-scrolled {
        box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
        background: rgba(7, 26, 53, .86);
    }

    .topbar__container {
        max-width: var(--container);
        margin: 0 auto;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .brand {
        display: flex;
        align-items: baseline;
        gap: 10px;
        font-weight: 700;
        letter-spacing: .2px;
        user-select: none;
        white-space: nowrap;
    }

    .brand__name {
        font-family: ui-serif, Georgia, "Times New Roman", serif;
        font-size: 18px;
        color: var(--gold-500);
    }

    .brand__sub {
        font-weight: 500;
        color: var(--text-300);
        font-size: 14px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 999px;
        border: 1px solid rgba(244, 178, 51, .35);
        background: rgba(0, 0, 0, .10);
        color: var(--gold-500);
        font-weight: 700;
        font-size: 14px;
        transition: transform .12s ease, background .2s ease, border-color .2s ease;
    }

    .btn:hover {
        background: rgba(244, 178, 51, .10);
    }

    .btn:active {
        transform: scale(.98);
    }

    .btn svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }

    .brand {
        display: flex;
        align-items: center;
    }

    .brand__logo {
        height: 50px;
        /* controla tamanho */
        width: auto;
        display: block;
        object-fit: contain;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .brand__logo {
        height: 36px;
        width: auto;
        object-fit: contain;
        display: block;
    }

    .brand__divider {
        color: var(--gold-500);
        font-weight: 700;
        font-size: 16px;
    }

    .brand__tag {
        font-size: 14px;
        color: var(--text-200);
        font-weight: 600;
        white-space: nowrap;
    }

    /* =========================
   MOBILE: centraliza marca
========================= */
    @media (max-width: 899px) {

        .topbar__container {
            justify-content: center;
        }

        .brand {
            justify-content: center;
            text-align: center;
        }

    }

    @media (max-width: 899px) {
        .topbar__container {
            padding: 14px 20px;
        }
    }

    /* =========================
       HERO
       ========================= */
    .hero {
        padding-top: 70px;
        /* espaço do header fixo */
        padding-bottom: 40px;
        position: relative;
        overflow: hidden;
    }

    .container {
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 16px;
    }

    /* círculos/ornamentos sutis */
    .hero::before,
    .hero::after {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, .06);
        opacity: .8;
        pointer-events: none;
    }

    .hero::before {
        top: -240px;
        right: -220px;
    }

    .hero::after {
        top: -110px;
        right: 40px;
        width: 360px;
        height: 360px;
        opacity: .55;
    }

    .hero__grid {
        display: grid;
        gap: 22px;
        align-items: center;
        padding-top: 18px;
    }

    .badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 999px;
        border: 1px solid rgba(244, 178, 51, .25);
        background: rgba(0, 0, 0, .12);
        color: var(--gold-500);
        font-weight: 700;
        font-size: 14px;
        width: fit-content;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
    }

    .badge__dot {
        width: 18px;
        height: 18px;
        border-radius: 6px;
        display: grid;
        place-items: center;
        background: rgba(244, 178, 51, .18);
        border: 1px solid rgba(244, 178, 51, .28);
    }

    .badge__dot svg {
        width: 12px;
        height: 12px;
    }

    .hero__title {
        margin-top: 14px;
        line-height: 1.02;
        font-family: ui-serif, Georgia, "Times New Roman", serif;
        font-weight: 800;
        font-size: clamp(40px, 10vw, 64px);
        letter-spacing: -0.5px;
    }

    .hero__title .accent {
        color: var(--gold-500);
    }

    .hero__desc {
        text-align: center;
        margin-top: 12px;
        color: var(--text-200);
        line-height: 1.65;
        font-size: 16px;
        max-width: 52ch;
    }

    .hero__actions {

        margin-top: 18px;
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .btn-primary {
        padding: 14px 18px;
        background: linear-gradient(180deg, var(--gold-500), var(--gold-600));
        color: #1a1206;
        border: none;
        box-shadow: 0 18px 45px rgba(244, 178, 51, .22);
    }

    .btn-primary:hover {
        filter: brightness(1.03);
    }

    .btn-primary svg {
        width: 18px;
        height: 18px;
    }

    .link-soft {
        color: var(--text-200);
        font-weight: 700;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        opacity: .95;
        padding: 10px 6px;
    }

    .link-soft:hover {
        opacity: 1;
        text-decoration: underline;
        text-underline-offset: 4px;
    }

    /* card da imagem (direita) */
    .media {
        margin-top: 10px;
        width: 100%;
        border-radius: var(--radius-2xl);
        background: rgba(255, 255, 255, .05);
        border: 1px solid rgba(255, 255, 255, .10);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .media__inner {
        padding: 14px;
    }

    .media__frame {
        border-radius: 22px;
        overflow: hidden;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .10);
    }

    .media img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* stats */
    .stats {
        margin-top: 18px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, .10);
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stat {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 0;
    }

    .stat__value {
        font-family: ui-serif, Georgia, "Times New Roman", serif;
        color: var(--gold-500);
        font-weight: 800;
        font-size: 30px;
        letter-spacing: .2px;
    }

    .stat__label {
        color: var(--text-300);
        font-size: 13px;
        line-height: 1.3;
        text-align: right;
    }

    /* =========================
       RESPONSIVO (desktop)
       ========================= */
    @media (min-width: 800px) {
        .hero {
            padding-top: 88px;
            padding-bottom: 64px;
        }

        .hero__desc {
            text-align: left;
        }

        .topbar__container {
            padding: 16px 20px;
        }

        .hero__grid {
            grid-template-columns: 1.05fr .95fr;
            gap: 34px;
            padding-top: 34px;
        }

        .media {
            margin-top: 0;
        }

        .stats {
            margin-top: 26px;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border-top: none;
        }

        .stat {
            padding: 10px 18px;
            border-left: 1px solid rgba(255, 255, 255, .10);
        }

        .stat:first-child {
            border-left: none;
            padding-left: 0;
        }

        .stat__label {
            text-align: left;
        }

        .stat {
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
        }
    }

    /* =========================
   PROBLEMAS
========================= */
    .problems {
        background: #f4f5f7;
        padding: 50px 0;
        text-align: center;
    }

    .section-label {
        font-size: 13px;
        letter-spacing: 2px;
        font-weight: 600;
        color: #5b6b80;
        margin-bottom: 20px;
    }

    .problems__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .tag {
        padding: 10px 16px;
        border-radius: 999px;
        border: 1px solid #d6dae1;
        background: white;
        font-size: 14px;
        cursor: pointer;
        transition: all .2s ease;
    }

    .tag:hover {
        background: #0b2a55;
        color: white;
        border-color: #0b2a55;
    }

    /* =========================
   WHY SECTION
========================= */
    .why {
        background: white;
        padding: 70px 0;
        text-align: center;
    }

    .section-label.gold {
        color: var(--gold-500);
    }

    .section-title {
        font-family: ui-serif, Georgia, serif;
        font-size: clamp(28px, 5vw, 48px);
        margin-bottom: 16px;
        color: #0b1d35;
    }

    .section-title span {
        color: var(--gold-500);
    }

    .section-desc {
        max-width: 600px;
        margin: 0 auto 50px;
        color: #5b6b80;
        font-size: 16px;
        line-height: 1.6;
    }

    .why__grid {
        display: grid;
        gap: 20px;
    }

    .card {
        background: #f9fafc;
        padding: 30px 22px;
        border-radius: 18px;
        border: 1px solid #e3e6ed;
        text-align: left;
        transition: all .3s ease;
    }

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    }

    .card-icon {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .card h3 {
        font-family: ui-serif, Georgia, serif;
        margin-bottom: 10px;
        color: #0b1d35;
    }

    .card p {
        color: #5b6b80;
        line-height: 1.6;
        font-size: 15px;
    }

    /* Desktop */
    @media (min-width:900px) {
        .why__grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    /* =========================
   PROCESS / COMO FUNCIONA
========================= */
    .process {
        background: #fbfbfc;
        padding: 70px 0;
        text-align: center;
    }

    .process__container {
        position: relative;
    }

    .steps {
        margin-top: 34px;
        display: grid;
        gap: 18px;

        /* mobile-first: carrossel horizontal */
        grid-auto-flow: column;
        grid-auto-columns: 85%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 8px 2px 18px;
        -webkit-overflow-scrolling: touch;
    }

    .steps::-webkit-scrollbar {
        height: 10px;
    }

    .steps::-webkit-scrollbar-thumb {
        background: rgba(11, 29, 53, .12);
        border-radius: 999px;
    }

    .step-card {
        scroll-snap-align: center;
        background: #ffffff;
        border: 1px solid #e3e6ed;
        border-radius: 18px;
        padding: 26px 22px;
        text-align: left;
        min-height: 210px;
        position: relative;
        box-shadow: 0 10px 26px rgba(0, 0, 0, .05);
        transition: transform .25s ease, box-shadow .25s ease;
    }

    .step-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 42px rgba(0, 0, 0, .08);
    }

    .step-num {
        font-family: ui-serif, Georgia, serif;
        font-weight: 800;
        font-size: 34px;
        letter-spacing: 1px;
        color: rgba(244, 178, 51, .28);
        /* dourado bem clarinho */
        margin-bottom: 14px;
    }

    .step-card h3 {
        font-family: ui-serif, Georgia, serif;
        font-size: 18px;
        color: #0b1d35;
        margin-bottom: 10px;
    }

    .step-card p {
        color: #5b6b80;
        line-height: 1.7;
        font-size: 15px;
    }

    /* CTA central */
    .process__cta {
        margin-top: 26px;
        display: flex;
        justify-content: center;
    }

    /* Desktop: vira grid e aparece linha conectando */
    @media (min-width: 900px) {
        .steps {
            grid-auto-flow: unset;
            grid-auto-columns: unset;
            overflow: visible;
            scroll-snap-type: none;
            padding: 0;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            position: relative;
        }

        /* linha fina conectando os cards */
        .steps::before {
            content: "";
            position: absolute;
            left: 6%;
            right: 6%;
            top: 62px;
            /* altura alinhada com o "01 02 03 04" */
            height: 1px;
            background: rgba(244, 178, 51, .20);
            pointer-events: none;
        }

        /* pequeno traço dourado lateral (como na imagem) */
        .step-card::after {
            content: "";
            position: absolute;
            top: 58px;
            right: -9px;
            width: 18px;
            height: 1px;
            background: rgba(244, 178, 51, .25);
        }

        .step-card:last-child::after {
            display: none;
        }
    }

    /* =========================
   TESTIMONIALS
========================= */
    .testimonials {
        background: #fbfbfc;
        padding: 70px 0;
        text-align: center;
    }

    .t-grid {
        margin-top: 34px;

        /* mobile-first: carrossel horizontal */
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 88%;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 8px 2px 18px;
        -webkit-overflow-scrolling: touch;
    }

    .t-grid::-webkit-scrollbar {
        height: 10px;
    }

    .t-grid::-webkit-scrollbar-thumb {
        background: rgba(11, 29, 53, .12);
        border-radius: 999px;
    }

    .t-card {
        scroll-snap-align: center;
        background: #fff;
        border: 1px solid #e3e6ed;
        border-radius: 18px;
        padding: 26px 24px;
        text-align: left;
        box-shadow: 0 10px 26px rgba(0, 0, 0, .05);
        transition: transform .25s ease, box-shadow .25s ease;
        min-height: 220px;
    }

    .t-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 42px rgba(0, 0, 0, .08);
    }

    .t-stars {
        color: var(--gold-500);
        letter-spacing: 2px;
        font-size: 14px;
        margin-bottom: 14px;
    }

    .t-quote {
        color: #0b1d35;
        line-height: 1.7;
        font-size: 15px;
        margin-bottom: 22px;
    }

    .t-person {
        margin-top: auto;
    }

    .t-name {
        font-weight: 800;
        color: #0b1d35;
        font-size: 16px;
        margin-bottom: 4px;
    }

    .t-role {
        color: #5b6b80;
        font-size: 14px;
    }

    /* pontinhos (só mobile) */
    .t-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 14px;
    }

    .t-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: rgba(11, 29, 53, .18);
    }

    .t-dot.is-active {
        background: rgba(244, 178, 51, .85);
    }

    /* Desktop: 3 colunas */
    @media (min-width: 900px) {
        .t-grid {
            grid-auto-flow: unset;
            grid-auto-columns: unset;
            overflow: visible;
            scroll-snap-type: none;
            padding: 0;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .t-dots {
            display: none;
        }
    }

    /* =========================
   FAQ
========================= */
    .faq {
        background: #fbfbfc;
        padding: 80px 0;
        text-align: center;
    }

    .faq-list {
        margin-top: 40px;
        max-width: 780px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .faq-item {
        background: #fff;
        border: 1px solid #e3e6ed;
        border-radius: 18px;
        overflow: hidden;
        transition: box-shadow .3s ease;
    }

    .faq-item.active {
        box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
    }

    .faq-question {
        width: 100%;
        background: none;
        border: none;
        padding: 22px 24px;
        font-size: 16px;
        font-weight: 700;
        color: #0b1d35;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        text-align: left;
    }

    .faq-icon {
        color: var(--gold-500);
        font-size: 22px;
        font-weight: 700;
        transition: transform .3s ease;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease, padding .3s ease;
        text-align: left;
        padding: 0 24px;
        color: #5b6b80;
        font-size: 15px;
        line-height: 1.7;
    }

    /* Quando ativo */
    .faq-item.active .faq-answer {
        max-height: 200px;
        padding: 0 24px 22px;
    }

    .faq-item.active .faq-icon {
        transform: rotate(180deg);
    }

    /* =========================
   FINAL CTA
========================= */
    .final-cta {
        background: radial-gradient(1200px 600px at 50% 0%, rgba(255, 255, 255, .10), transparent 60%),
            radial-gradient(900px 520px at 20% 40%, rgba(255, 255, 255, .06), transparent 58%),
            linear-gradient(180deg, var(--bg-900) 0%, var(--bg-850) 55%, var(--bg-800) 100%);
        padding: 86px 0 0;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .final-cta__container {
        padding-bottom: 64px;
    }

    .final-cta__badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 999px;
        border: 1px solid rgba(244, 178, 51, .22);
        background: rgba(0, 0, 0, .12);
        color: var(--gold-500);
        font-weight: 800;
        font-size: 14px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
    }

    .final-cta__spark {
        display: inline-grid;
        place-items: center;
        width: 22px;
        height: 22px;
        border-radius: 8px;
        background: rgba(244, 178, 51, .16);
        border: 1px solid rgba(244, 178, 51, .26);
    }

    .final-cta__title {
        margin-top: 18px;
        font-family: ui-serif, Georgia, "Times New Roman", serif;
        font-weight: 900;
        letter-spacing: -0.5px;
        line-height: 1.02;
        font-size: clamp(34px, 8vw, 64px);
        color: rgba(255, 255, 255, .95);
    }

    .final-cta__title span {
        color: var(--gold-500);
    }

    .final-cta__desc {
        margin: 14px auto 26px;
        max-width: 720px;
        color: var(--text-200);
        font-size: 16px;
        line-height: 1.75;
    }

    .final-cta__actions {
        display: flex;
        justify-content: center;
    }

    .final-cta__btn {
        padding: 16px 22px;
        border-radius: 999px;
        font-weight: 900;
        font-size: 15px;
        box-shadow: 0 22px 60px rgba(244, 178, 51, .22);
    }

    .final-cta__micro {
        margin-top: 18px;
        color: rgba(255, 255, 255, .45);
        font-size: 14px;
    }

    /* =========================
   FOOTER
========================= */
    .site-footer {
        border-top: 1px solid rgba(255, 255, 255, .08);
        padding: 18px 0 22px;
    }

    .site-footer__row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: center;
        text-align: center;
    }

    .site-footer__brand {
        color: var(--gold-500);
        font-family: ui-serif, Georgia, serif;
        font-weight: 800;
        font-size: 16px;
    }

    .site-footer__copy {
        color: rgba(255, 255, 255, .40);
        font-size: 14px;
    }

    .site-footer__phone {
        color: var(--gold-500);
        font-weight: 800;
        font-size: 14px;
    }

    .site-footer__phone:hover {
        text-decoration: underline;
        text-underline-offset: 4px;
    }

    @media (min-width: 900px) {
        .site-footer__row {
            grid-template-columns: 1fr 1fr 1fr;
            text-align: left;
        }

        .site-footer__copy {
            text-align: center;
        }

        .site-footer__phone {
            text-align: right;
        }
    }

    /* 1) Esconde CTA da topbar no mobile */
    .topbar .btn {
        display: none;
    }

    /* 2) CTA fixo mobile */
    .mobile-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        z-index: 9999;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        padding: 14px 16px;
        border-radius: 999px;

        background: linear-gradient(180deg, var(--gold-500), var(--gold-600));
        color: #1a1206;
        font-weight: 900;
        font-size: 15px;

        box-shadow: 0 20px 60px rgba(244, 178, 51, .22);
        border: 1px solid rgba(0, 0, 0, .08);

        transform: translateY(0);
        transition: transform .2s ease, filter .2s ease;
    }

    .mobile-cta:hover {
        filter: brightness(1.03);
    }

    .mobile-cta:active {
        transform: translateY(1px) scale(.99);
    }

    .mobile-cta__icon {
        width: 22px;
        height: 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-cta__icon svg {
        width: 22px;
        height: 22px;
        color: #1a1206;
    }

    .mobile-cta__text {
        line-height: 1;
    }

    /* 3) Evita o CTA cobrir conteúdo no mobile (dá espaço no fim da página) */
    body {
        padding-bottom: 78px;
        /* altura do CTA + respiro */
    }

    /* Desktop: volta CTA da topbar e some CTA fixo */
    @media (min-width: 900px) {
        .topbar .btn {
            display: inline-flex;
        }

        .mobile-cta {
            display: none;
        }

        body {
            padding-bottom: 0;
        }
    }

    /* =========================================
   HERO - CENTRALIZAR CTA + STATS NO MOBILE
   ========================================= */
@media (max-width: 799px) {

  /* Centraliza tudo no bloco de texto do hero */
  .hero__grid > div:first-child {
    text-align: center;
  }

  /* Badge centralizado */
  .badge {
    margin-left: auto;
    margin-right: auto;
  }

  /* Botão centralizado */
  .hero__actions {
    justify-content: center;
  }

  .hero__actions .btn-primary {
    margin-left: auto;
    margin-right: auto;
  }

  /* Centraliza as estatísticas */
  .stats {
    text-align: center;
  }

  .stat {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .stat__label {
    text-align: center;
  }
}