/* (Full stylesheet from the previous step with mobile polish) */

:root {
  --accent: #2563EB;
  --bg: #0B0B0C;
  --card: #111113;
  --muted: #9CA3AF;
  --text: #E5E7EB;
  --white: #fff;
  --shadow: 0 10px 30px rgba(0, 0, 0, .2);
  --radius: 18px
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Arial;
  color: var(--text);
  background: linear-gradient(180deg, #0b0b0c, #0e0f12 30%, #0b0b0c);
  line-height: 1.6
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 .6rem
}

h1 {
  font-size: clamp(1.9rem, 1.2rem+2.5vw, 3rem)
}

h2 {
  font-size: clamp(1.5rem, 1rem+2vw, 2.1rem)
}

h3 {
  font-size: clamp(1.05rem, .9rem+.8vw, 1.2rem)
}

p {
  margin: 0 0 1rem
}

.text-accent {
  color: var(--accent)
}

.text-muted,
.muted {
  color: var(--muted)
}

.tiny {
  font-size: .85rem
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem
}

@media(max-width:980px) {
  .grid-2 {
    grid-template-columns: 1fr
  }

  .grid-3 {
    grid-template-columns: 1fr
  }

}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 12, .6);
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700
}

.brand__dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .18)
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  opacity: .88
}

.nav a:hover {
  opacity: 1
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  width: 42px;
  height: 38px;
  color: var(--text)
}

.btn {
  --_bg: #22c55e;
  background: var(--_bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: 12px;
  padding: .9rem 1.1rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform .08s ease, background .2s ease, opacity .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: .95
}

.btn--ghost {
  --_bg: transparent;
  border: 1px solid rgba(255, 255, 255, .16);
  color: var(--text);
  box-shadow: none
}

.btn--sm {
  padding: .55rem .8rem;
  font-size: .9rem
}

.btn--block {
  display: flex;
  width: 100%
}

.badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .12);
  padding: .35rem .6rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: .9rem
}

.badge .dot {
  opacity: .6;
  margin: 0 .4rem
}

.hero {
  padding: 4.2rem 0 3rem
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.2rem;
  display: grid;
  gap: .5rem
}

.hero__ctas {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin: .6rem 0 1rem
}

.book-card {
  background: linear-gradient(180deg, #0f1116, #0c0d10);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow)
}

.book-card__cover {
  height: 220px;
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(1200px 220px at -200px 0, rgba(37, 99, 235, .32), transparent), linear-gradient(180deg, #0b0b0c, #0f1116);
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.cover__stripe {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 55%, rgba(37, 99, 235, .2) 60%, transparent 65%)
}

.cover__title {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: .04em;
  text-align: center
}

.cover__vol {
  position: absolute;
  bottom: 14px;
  right: 16px;
  background: rgba(37, 99, 235, .18);
  border: 1px solid rgba(37, 99, 235, .35);
  padding: .25rem .4rem;
  border-radius: 10px;
  font-weight: 700
}

.book-card__body {
  padding: 1.1rem 1rem
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 .6rem;
  display: grid;
  gap: .35rem
}

.checklist li {
  position: relative;
  padding-left: 1.4rem
}

.checklist li:before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  opacity: .9
}

.countdown {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: .6rem 0 0
}

.countdown__digits {
  display: flex;
  gap: .5rem;
  font-family: ui-monospace, Menlo, Consolas, monospace
}

.countdown__digits .cd {
  background: #0f1218;
  border: 1px solid rgba(255, 255, 255, .08);
  padding: .4rem .5rem;
  border-radius: 10px;
  min-width: 64px;
  text-align: center
}

.section {
  padding: 3.4rem 0
}

.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 1.1rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden
}

.card--line {
  border-image: linear-gradient(90deg, rgba(37, 99, 235, .5), rgba(255, 255, 255, .08)) 1;
  border-width: 1px;
  border-style: solid;
  border-radius: 16px;
}

.card--glow {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02))
}

.card:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: radial-gradient(600px 80px at -10% -10%, rgba(37, 99, 235, .18), transparent 50%);
  z-index: 0;
  opacity: .6
}

.card * {
  position: relative;
  z-index: 1
}

.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: .5rem;
  background: rgba(37, 99, 235, .12);
  border: 1px solid rgba(37, 99, 235, .35);
  box-shadow: var(--shadow)
}

.card__icon i,
.benefit__icon i {
  font-size: 1.1rem
}

.benefits .benefit {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: var(--shadow)
}

.benefit__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, .12);
  border: 1px solid rgba(37, 99, 235, .35);
  margin-top: .15rem
}

.section-head {
  display: grid;
  gap: .6rem;
  justify-items: center;
  margin-bottom: 1.1rem
}

.section-head__title {
  text-align: center
}

.section-head__pills {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .28rem .6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .78rem;
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--muted)
}

.pill--accent {
  border-color: rgba(37, 99, 235, .35);
  color: #c8d7ff;
  background: rgba(37, 99, 235, .1)
}

.pill--glass {
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  backdrop-filter: blur(6px);
  border-color: rgba(255, 255, 255, .14)
}

.cta {
  padding: 2.4rem 0
}

.cta__box {
  background: linear-gradient(180deg, #0f1116, #0b0b0c);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 1.4rem;
  align-items: center
}

.cta__actions {
  display: flex;
  gap: .8rem;
  justify-content: flex-end;
  flex-wrap: wrap
}

@media(max-width:980px) {
  .cta__actions {
    justify-content: flex-start
  }

}

.testimonials .testimonial {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: var(--shadow)
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: .6rem
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(37, 99, 235, .15);
  display: grid;
  place-items: center;
  font-weight: 800;
  border: 1px solid rgba(37, 99, 235, .35)
}

.pricing {
  display: flex!important;
  align-items: center!important;
  justify-content: center!important;
}

.pricing .price-card {
  background: linear-gradient(180deg, #0f1116, #0b0b0c);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
  max-width: 450px;
}

.price-card__head {
  display: flex;
  gap: .2rem;
  margin-bottom: .6rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.price {
  font-size: 3rem;
  font-weight: 800
}

.price span {
  font-size: 4rem
}

.faq details {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  padding: .8rem 1rem;
  margin: .6rem 0
}

.faq summary {
  cursor: pointer;
  font-weight: 700
}

.faq p {
  margin: .6rem 0 0
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-top: 2rem;
  padding: 1.2rem 0;
  color: var(--muted)
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.footer__inner a {
  color: var(--muted);
  text-decoration: none
}

.toast-container {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 100;
  display: grid;
  gap: .6rem
}

.toast {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(10, 12, 16, .95);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: .55rem .7rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transform: translateY(10px);
  opacity: 0;
  animation: toast-in .25s ease forwards
}

.toast .avatar {
  width: 28px;
  height: 28px;
  font-size: .8rem
}

.toast .title {
  font-weight: 700
}

.toast .meta {
  color: var(--muted);
  font-size: .85rem
}

.toast.hide {
  animation: toast-out .25s ease forwards
}

@keyframes toast-in {
  to {
    transform: translateY(0);
    opacity: 1
  }

}

@keyframes toast-out {
  to {
    transform: translateY(10px);
    opacity: 0
  }

}

.thankyou {
  min-height: 100dvh;
  display: grid;
  align-items: center
}

.thankyou__card {
  background: linear-gradient(180deg, #0f1116, #0b0b0c);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: var(--shadow)
}

.thankyou__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, .16);
  border: 1px solid rgba(37, 99, 235, .35);
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: .6rem
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, .06);
  margin: 1rem 0
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: #0b0b0c;
  display: grid;
  place-items: center;
  z-index: 9999
}

.preloader__inner {
  width: min(520px, 92%);
  text-align: center
}

.preloader__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto .8rem;
  background: rgba(37, 99, 235, .16);
  border: 1px solid rgba(37, 99, 235, .35);
  box-shadow: var(--shadow)
}

.preloader__icon i {
  font-size: 1.4rem;
  color: #cfe0ff
}

.preloader__title {
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: .4rem
}

.preloader__bar {
  height: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  overflow: hidden
}

.preloader__bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(37, 99, 235, .2), rgba(37, 99, 235, .6));
  animation: loadbar 2.2s ease-in-out forwards
}

.preloader__hint {
  color: var(--muted);
  margin-top: .6rem
}

@keyframes loadbar {
  to {
    width: 100%
  }

}

.preloader.hide {
  animation: fadeout .4s ease forwards
}

@keyframes fadeout {
  to {
    opacity: 0;
    visibility: hidden
  }

}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease
}

[data-reveal].reveal--visible {
  opacity: 1;
  transform: translateY(0)
}

/* Mobile menu */
.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  width: 42px;
  height: 38px;
  color: var(--text)
}

.nav__toggle i {
  pointer-events: none
}

@media(max-width:980px) {
  .nav {
    display: none
  }

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

}

.mobile-nav {
  position: fixed;
  /* já estava fixed, reforçando */
  inset: 0;
  z-index: 140;
  /* maior que .topbar(100) e .site-header(90) */
  pointer-events: none;
}

.mobile-nav__backdrop {
  position: fixed;
  /* cobre a tela toda */
  inset: 0;
  background: rgba(0, 0, 0, .4);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 141;
  /* abaixo do painel */
}

.mobile-nav__panel {
  position: fixed;
  /* sobe para fora do fluxo do header */
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(88%, 360px);
  background: linear-gradient(180deg, #0f1116, #0b0b0c);
  border-left: 1px solid rgba(255, 255, 255, .08);
  transform: translateX(100%);
  transition: transform .25s ease;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  z-index: 142;
}

.mobile-nav__close {
  align-self: flex-end;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  width: 42px;
  height: 38px;
  color: var(--text)
}

.mobile-nav__links {
  display: grid;
  gap: .6rem
}

.mobile-nav__links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, .08);
  padding: .7rem .9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, .03)
}

.mobile-nav__links a:hover {
  border-color: rgba(255, 255, 255, .16)
}

.mobile-nav.open {
  pointer-events: auto
}

.mobile-nav.open .mobile-nav__panel {
  transform: translateX(0)
}

.mobile-nav.open .mobile-nav__backdrop {
  opacity: 1
}

body.lock {
  overflow: hidden
}

@media(max-width:980px) {
  .hero {
    padding: 3rem 0 2rem
  }

  .header__inner {
    padding: .7rem 0
  }

  .hero__ctas .btn {
    flex: 1
  }

  .countdown__digits .cd {
    min-width: 56px
  }

  .cta__box {
    padding: 1rem
  }

  .grid-3 {
    gap: 1rem
  }

  .section {
    padding: 2.4rem 0
  }

  .testimonials .testimonial {
    padding: .9rem
  }

  .pricing .price-card {
    padding: 1rem
  }

  .footer__inner {
    flex-direction: column;
    gap: .6rem
  }

}

@media(max-width:640px) {
  h1 {
    font-size: clamp(1.6rem, 1.2rem+4vw, 2.2rem)
  }

  .brand__name b {
    display: none
  }

  .hero__bullets {
    gap: .35rem
  }

  .card {
    padding: .95rem
  }

  .benefits .benefit {
    padding: .95rem
  }

}

/* Ajustes específicos */
.about__media {
  display: flex;
  align-items: center;
  justify-content: center
}

.about__photo img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow)
}

@media(max-width:980px) {
  #sobre .grid-2 {
    grid-template-columns: 1fr
  }

  .about__media {
    margin-top: 1rem
  }

}

.bonus {
  margin-top: 2rem;
  text-align: center
}

.bonus__list {
  list-style: none;
  display: grid;
  gap: .5rem;
  padding: 0;
  margin-top: 1rem
}

.bonus__list li {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: .6rem .8rem;
  border-radius: 12px;
  box-shadow: var(--shadow)
}

/* Efeito nos botões de compra */
.btn:active {
  transform: scale(.96) translateY(1px);
  box-shadow: none
}

/* ===== Fixes: Sobre (Quem escreve) ===== */
#sobre .container.grid-2 {
  grid-template-columns: 1fr 1fr;
  align-items: start
}

#sobre .about__media {
  display: grid;
  align-content: start
}

#sobre .about__photo {
  background: linear-gradient(180deg, #0f1116, #0b0b0c);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: .6rem;
  box-shadow: var(--shadow)
}

#sobre .about__photo img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block
}

@media(max-width:980px) {
  #sobre .container.grid-2 {
    grid-template-columns: 1fr;
    gap: 1.2rem
  }

}

/* ===== Fixes: Bônus block ===== */
.bonus {
  margin-top: 1.4rem;
  background: linear-gradient(180deg, #0f1116, #0b0b0c);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.badge--accent {
  border-color: rgba(37, 99, 235, .35) !important;
  color: #c8d7ff;
  background: rgba(37, 99, 235, .1)
}

.bonus__list {
  list-style: none;
  padding: 0;
  margin: .8rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem 1rem;
}

.bonus__list li {
  position: relative;
  padding-left: 1.2rem;
}

.bonus__list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

@media(max-width:640px) {
  .bonus__list {
    grid-template-columns: 1fr
  }

}

/* ===== Buttons: ripple + loading state ===== */
.btn {
  position: relative;
  overflow: hidden
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, .35);
  animation: ripple .6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(12);
    opacity: 0
  }

}

.btn.is-pressed {
  transform: scale(.98)
}

.btn.is-loading {
  pointer-events: none;
  opacity: .95
}

.btn.is-loading::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: .5rem;
  border: 2px solid rgba(255, 255, 255, .7);
  border-top-color: transparent;
  border-radius: 50%;
  vertical-align: -3px;
  animation: spin .8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }

}

/* ==== Button text alignment fixes ==== */
.btn {
  white-space: normal;
  text-align: center;
  line-height: 1.3
}

.btn b {
  display: inline
}

@media(max-width:640px) {
  .btn {
    padding: .8rem 1rem;
    font-size: .95rem;
    justify-content: center
  }

  .hero__ctas .btn {
    flex: 1;
    min-width: calc(50% - .4rem)
  }

}

/* ===== Mobile button fixes ===== */
.btn {
  text-align: center;
  line-height: 1.25;
  white-space: normal;
  /* allow clean wrapping */
  -webkit-hyphens: none;
  hyphens: none;
}

.btn b {
  white-space: nowrap
}

/* keep preço junto */
.hero__ctas {
  gap: .6rem
}

@media (max-width: 820px) {
  .hero__ctas {
    flex-direction: column
  }

  .hero__ctas .btn {
    width: 100%
  }

}

@media (max-width: 640px) {
  .btn {
    font-size: .95rem;
    padding: .85rem 1rem
  }

  .price-card .btn {
    font-size: 1rem
  }

  .btn--sm {
    font-size: .9rem;
    padding: .55rem .8rem
  }

}

/* Ensure consistent min-height so multiline stays centrado */
.btn,
.price-card .btn {
  min-height: 48px;
  align-items: center;
  justify-content: center
}

/* === Ripple + Loading on buttons === */
.btn {
  position: relative;
  overflow: hidden;
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, .35);
  animation: ripple .6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(12);
    opacity: 0;
  }

}

.btn.is-pressed {
  transform: scale(.98);
}

.btn.is-loading {
  pointer-events: none;
  opacity: .95;
}

.btn.is-loading::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: .5rem;
  border: 2px solid rgba(255, 255, 255, .7);
  border-top-color: transparent;
  border-radius: 50%;
  vertical-align: -3px;
  animation: spin .8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }

}


/* === Fix 1: BÔNUS - ícone central com texto alinhado à esquerda === */
.bonus__list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding-left: 0;
  /* remove offset antigo */
}

.bonus__list li::before {
  position: static;
  /* deixa o check participar do fluxo */
  margin-top: 0;
  transform: none;
  line-height: 1;
}

/* === Fix 2: Borda azul com radius nos cards de SOLUÇÕES === */
.card--line {
  border-image: initial !important;
  /* reseta border-image que ignorava o radius */
  border: 1px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02)) padding-box,
    linear-gradient(90deg, rgba(37, 99, 235, .6), rgba(255, 255, 255, .10)) border-box;
}

/* === Fix 3: badge da hero centralizada no mobile === */
@media (max-width: 640px) {
  .hero .badge {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
  }
}

/* === Anchor price (antes/depois) === */
.was-price {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .15rem;
}

.was-price .was {
  color: #ff0000;
  text-decoration: line-through;
  font-size: 1.5rem;
}

.save-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .1rem .45rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .78rem;
  color: #fff;
  background: rgba(26, 224, 99, 0.342);
  border: 1px solid rgba(21, 214, 92, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* === Hint discreto na HERO === */
.deal-hints {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: .35rem;
}

.deal {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .25rem .55rem;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  border-radius: 10px;
  color: #cfd3db;
  font-size: .9rem;
}

.deal .label {
  font-weight: 800;
  color: #cfe0ff;
  border: 1px solid rgba(37, 99, 235, .35);
  background: rgba(37, 99, 235, .10);
  padding: .05rem .4rem;
  border-radius: 8px;
  font-size: .78rem;
}

.deal .was {
  color: #9CA3AF;
  text-decoration: line-through;
}

@media (max-width:640px) {
  .deal-hints {
    justify-content: flex-start
  }
}

/* ==== Topbar menor e sutil (efeito vidro) ==== */
.topbar {
  --tb-pad-y: .35rem;
  --tb-pad-x: .65rem;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: var(--tb-pad-y) var(--tb-pad-x);
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.2;
  color: #22c55e;
  /* verde chamativo */
  background: linear-gradient(90deg, rgba(34, 197, 94, .14), rgba(34, 197, 94, .06));
  border-bottom: 1px solid rgba(34, 197, 94, .35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.topbar__emoji {
  opacity: .9;
}

.topbar strong {
  color: #16a34a;
}

@media (max-width:640px) {
  .topbar {
    font-size: .8rem;
    padding: .3rem .55rem;
    text-align: center;
  }
}

/* header “cola” logo abaixo da topbar (offset dinâmico via JS) */
.site-header {
  position: sticky;
  top: var(--topbar-offset, 0px);
  z-index: 90;
}

/* Espaço para âncoras ao usar header/topbar sticky */
.section,
.hero,
#sobre,
#faq,
#preco {
  scroll-margin-top: calc(var(--topbar-offset, 0px) + 72px);
}

/* Botão verde pulsando */
.btn--green {
  --_bg: #22c55e;
  background: var(--_bg);
  color: #fff;
  font-weight: 800;
  animation: pulseGreen 1.8s infinite;
  border: none;
}

.btn--green:hover {
  opacity: .95;
  transform: translateY(-2px) scale(1.02);
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}