/* ============================================================
   Radar Concursos — Kit Visual CBMMA 2026
   Fontes: Sora (títulos) + Inter (corpo)
   Paleta: vermelho resgate + azul operacional + branco + laranja
   ============================================================ */

:root {
  --navy:       #081a2b;
  --navy-2:     #123b63;
  --blue:       #0f4c81;
  --blue-l:     #eaf3fb;
  --primary:    #c8101e;
  --primary-d:  #8d0b14;
  --primary-l:  #fff0f2;
  --gold:       #f36b21;
  --gold-d:     #b8420b;
  --gold-l:     #fff0e7;
  --cream:      #f7f9fc;
  --cream-2:    #edf3f8;
  --white:      #ffffff;
  --ink:        #0c1722;
  --text:       #3d4d5d;
  --muted:      #687888;
  --line:       #d8e1e9;
  --danger-l:   #fff1f2;
  --radius:     16px;
  --radius-lg:  24px;
  --shadow:     0 12px 30px rgba(8, 26, 43, .09);
  --shadow-lg:  0 26px 62px rgba(8, 26, 43, .17);
  --container:  1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Sora', sans-serif;
  color: var(--ink);
  line-height: 1.2;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.center {
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 30px;
  border: 0;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .25px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, var(--primary), var(--primary-d));
  box-shadow: 0 10px 22px rgba(200, 16, 30, .30);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(200, 16, 30, .38);
}

.btn--outline {
  color: var(--navy);
  background: #fff;
  border: 2px solid var(--navy);
}

.btn--outline:hover {
  color: #fff;
  background: var(--navy);
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn--3d {
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 0 var(--primary-d), 0 15px 26px rgba(200, 16, 30, .30);
}

.btn--3d:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 var(--primary-d), 0 11px 20px rgba(200, 16, 30, .30);
}

/* faixa de brilho deslizante (mesma animação do CTA do hero) */
.btn--3d::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: ctaShine 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .btn--3d::after { animation: none; }
}

/* ---------- Badge ---------- */
.badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(200, 16, 30, .14);
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-l);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---------- Topbar ---------- */
.topbar {
  padding: 11px 16px;
  color: #eef6ff;
  background: linear-gradient(90deg, var(--navy), #123b63, var(--navy));
  text-align: center;
  font-size: .86rem;
}

.topbar strong {
  color: #fff;
}

/* ---------- Sections ---------- */
.section {
  padding: 84px 0;
}

.section--alt {
  background:
    radial-gradient(circle at 10% 10%, rgba(243, 107, 33, .07), transparent 22%),
    var(--cream-2);
}

.section__title {
  margin-bottom: 16px;
  font-size: 2.4rem;
  font-weight: 800;
}

.section__title--left {
  text-align: left;
}

.section__sub {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.section__sub--left {
  margin-left: 0;
  text-align: left;
}

/* ---------- Image placeholders ---------- */
.placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 18px;
  overflow: hidden;
  border: 2px dashed rgba(200, 16, 30, .34);
  border-radius: var(--radius);
  color: #55738d;
  background:
    linear-gradient(rgba(248, 243, 231, .82), rgba(248, 243, 231, .82)),
    repeating-linear-gradient(45deg, #dce8f3, #dce8f3 12px, #eff5fa 12px, #eff5fa 24px);
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
}

.placeholder::before {
  content: "RADAR CONCURSOS";
  position: absolute;
  top: 12px;
  left: 14px;
  color: rgba(8, 31, 53, .28);
  font-family: 'Sora', sans-serif;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.placeholder span {
  position: relative;
  z-index: 1;
}

.placeholder--hero {
  width: 100%;
  max-width: 780px;
  min-height: 380px;
}

.placeholder--tall {
  min-height: 480px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 70px 0 78px;
  background:
    radial-gradient(780px 360px at 50% -5%, rgba(200, 16, 30, .14), transparent 62%),
    radial-gradient(460px 300px at 94% 30%, rgba(243, 107, 33, .10), transparent 68%),
    var(--cream);
  text-align: center;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: 3rem;
  font-weight: 800;
}

.hero__title .accent {
  color: var(--primary);
}

.hero__lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

/* botões empilhados, largura contida e igual entre si */
.hero__cta .btn {
  width: 100%;
  max-width: 340px;
  text-align: center;
}

/* botão de cima: ligeiramente maior + brilho deslizante (sem scale) */
.hero__cta .btn--primary {
  position: relative;
  overflow: hidden;
  padding: 21px 38px;
  font-size: 1.04rem;
}

/* faixa de brilho que atravessa o botão */
.hero__cta .btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: ctaShine 2.2s ease-in-out infinite;
}

.hero__cta .btn--primary:hover::after {
  animation-play-state: paused;
}

/* botão de baixo: padding um pouco maior que o padrão, mesma largura */
.hero__cta .btn--outline {
  padding: 18px 34px;
}

@keyframes ctaShine {
  0%   { left: -140%; }
  55%  { left: 160%; }
  100% { left: 160%; }
}

/* respeita quem prefere menos animação */
@media (prefers-reduced-motion: reduce) {
  .hero__cta .btn--primary::after { animation: none; }
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px 26px;
  max-width: 980px;
  margin-bottom: 40px;
  list-style: none;
}

.hero__features li {
  color: var(--navy);
  font-size: .92rem;
  font-weight: 700;
}

.hero__mockup {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 26px;
}

.hero__mockup img {
  display: block;
  width: 100%;
  height: auto;
  /* filter: drop-shadow(0 24px 40px rgba(8, 31, 53, .18)); */
}

.hero__stars {
  color: var(--muted);
  font-size: .94rem;
  font-weight: 700;
}

/* ---------- Gallery ---------- */
.gallery {
  margin: 46px 0;
  overflow: hidden;
}

.gallery__track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 24px;
  animation: slideLeft 34s linear infinite;
}

.gallery__track--rev {
  animation-direction: reverse;
}

/* segundo carrossel logo abaixo do primeiro */
.gallery--stack {
  margin-top: -8px;
}

.gallery__item {
  width: 210px;
  height: 295px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* itens horizontais (mapas) */
.gallery__track--h .gallery__item {
  width: 366px;
  height: 259px;
}

/* carrossel de depoimentos: cards de largura fixa dentro do track */
.gallery__track--reviews {
  align-items: stretch;
}

.gallery__track--reviews .review {
  width: 340px;
  flex-shrink: 0;
}

@keyframes slideLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Cards and grids ---------- */
.grid {
  display: grid;
  gap: 22px;
  margin-top: 48px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  min-height: 235px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

.feature-card--highlight {
  border-color: rgba(243, 107, 33, .52);
  background: linear-gradient(180deg, #fff, var(--gold-l));
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--primary-l);
  font-size: 1.55rem;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.feature-card p {
  color: var(--muted);
  font-size: .93rem;
}

/* ---------- Audience ---------- */
.audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.audience__item {
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: .7rem;
}

/* ---------- Pain ---------- */
.pain-box {
  padding: 50px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.pain-box__head {
  margin-bottom: 34px;
}

.pain-box__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: var(--gold-d);
  background: var(--gold-l);
  font-size: 1.9rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 30px;
  margin-bottom: 38px;
}

.pain-item {
  position: relative;
  padding: 10px 12px 10px 56px;
  border: 1px solid #f0d8ca;
  border-radius: 14px;
  color: var(--navy);
  background: #fff8f3;
  font-weight: 600;
  font-size: .7rem;
}

.pain-item::before {
  content: "!";
  position: absolute;
  top: 50%;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-size: .7rem;
  font-weight: 600;
}

/* ---------- Two column ---------- */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.two-col__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.two-col__body {
  text-align: left;
}

.check-list {
  margin-top: 8px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 42px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: .85rem;
  font-weight: 900;
}

/* ---------- Bonus cards ---------- */
.bonus-card {
  position: relative;
  overflow: hidden;
  padding: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

/* badges sobrepostos no topo da imagem */
.bonus-card__head {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.bonus-card__num {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--primary);
  background: #fff;
  box-shadow: 0 2px 8px rgba(8, 31, 53, .18);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .5px;
}

.bonus-card__free {
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(8, 31, 53, .18);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .45px;
}

/* imagem grande ocupando o topo do card, inteira (sem corte) */
.bonus-card__thumb {
  margin-bottom: 18px;
  overflow: hidden;
}

.bonus-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.bonus-card h3 {
  margin-bottom: 10px;
  padding: 0 22px;
  font-size: 1.02rem;
}

.bonus-card p {
  padding: 0 22px;
  color: var(--muted);
  font-size: .9rem;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.step {
  padding: 28px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--primary), var(--primary-d));
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.step p {
  color: var(--muted);
  font-size: .86rem;
}

/* ---------- Benefit/review cards ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--container);
  margin: 46px auto 0;
  padding: 0 24px;
}

.review {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

.review__stars {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: .95rem;
}

.review__text {
  min-height: 118px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: .95rem;
}

.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--primary), var(--primary-d));
  font-family: 'Sora', sans-serif;
  font-weight: 800;
}

.review__name {
  color: var(--navy);
  font-size: .92rem;
  font-weight: 800;
}

.review__role {
  color: var(--muted);
  font-size: .8rem;
}

/* ---------- Plans ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 28px;
  margin-top: 52px;
}

.plan {
  position: relative;
  padding: 40px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.plan--featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

.plan__tag {
  position: absolute;
  top: -17px;
  left: 50%;
  padding: 8px 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .5px;
  white-space: nowrap;
}

.plan__hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  margin: 6px 0 22px;
  overflow: hidden;
  border-radius: var(--radius);
}

.plan__hero img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
}

.plan__label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.plan__name {
  margin-bottom: 16px;
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.plan__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.plan__price s {
  color: #a7adb1;
  font-size: 1rem;
  font-weight: 700;
}

.plan__price strong {
  color: var(--primary);
  font-family: 'Sora', sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
}

.plan__price strong span {
  font-size: 1.3rem;
}

.plan__price em {
  color: var(--muted);
  font-size: .95rem;
  font-style: normal;
}

.plan__note {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .86rem;
}

.plan .check-list {
  margin-bottom: 28px;
}

.plan__release {
  margin-top: 14px;
  color: var(--muted);
  text-align: center;
  font-size: .8rem;
}

/* ---------- Guarantee ---------- */
.guarantee {
  max-width: 800px;
  margin: 0 auto;
  padding: 52px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.guarantee__seal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--primary-l);
  font-size: 2.4rem;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 44px auto 0;
}

.faq__item {
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 20px 24px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-family: 'Sora', sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq__q:focus-visible {
  outline: 3px solid rgba(243, 107, 33, .48);
  outline-offset: -3px;
}

.faq__ic {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform .25s ease;
}

.faq__item.open .faq__ic {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq__a p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: .95rem;
}

/* ---------- Footer ---------- */
.footer {
  padding: 56px 0;
  color: #c7d4e1;
  background: linear-gradient(180deg, var(--navy), #061726);
}

.footer__brand {
  margin-bottom: 16px;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.footer__disclaimer {
  max-width: 820px;
  margin: 0 auto 18px;
  color: #93a6b9;
  font-size: .82rem;
}

.footer__copy {
  color: #7e93a7;
  font-size: .82rem;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .section__title { font-size: 1.95rem; }
  .hero__title { font-size: 2.25rem; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .two-col { grid-template-columns: 1fr; gap: 34px; }
  .plans { grid-template-columns: 1fr; max-width: 520px; margin-right: auto; margin-left: auto; }
}

@media (max-width: 680px) {
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .hero { padding-top: 56px; }
  .hero__title { font-size: 1.78rem; }
  .hero__lead { font-size: 1rem; }
  .section__title { font-size: 1.62rem; }
  .grid--3,
  .grid--4,
  .reviews,
  .steps,
  .audience,
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .hero__cta {
    flex-direction: column;
    width: 100%;
  }
  .hero__cta .btn {
    width: 100%;
    text-align: center;
  }
  .hero__features {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }
  .pain-box { padding: 34px 22px; }
  .gallery__item { width: 166px; height: 234px; }
  .gallery__track--h .gallery__item { width: 290px; height: 205px; }
  .plan { padding: 38px 24px; }
  .plan__tag { max-width: calc(100% - 28px); text-align: center; white-space: normal; }
  .guarantee { padding: 40px 24px; }
}

/* ============================================================
   MODAL DE UPSELL (Plano Essencial)
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 31, 53, .62);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 470px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 42px 34px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(130% 60% at 50% 0%, rgba(243, 107, 33, .12), transparent 58%),
    #fff;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transform: translateY(18px) scale(.96);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}

.modal.is-open .modal__card {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.modal__close:hover {
  color: var(--navy);
  background: var(--cream-2);
}

.modal__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 15px;
  border-radius: 999px;
  color: var(--gold-d);
  background: var(--gold-l);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.modal__title {
  margin-bottom: 12px;
  font-size: 1.62rem;
  font-weight: 800;
  line-height: 1.22;
}

.modal__title span {
  color: var(--primary);
}

.modal__text {
  margin: 0 auto 22px;
  max-width: 380px;
  color: var(--muted);
  font-size: .96rem;
}

.modal__text strong {
  color: var(--navy);
}

/* comparação de preço */
.modal__price {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.modal__price-from,
.modal__price-to {
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.35;
}

.modal__price-from s {
  color: #a7adb1;
  font-size: 1.1rem;
}

.modal__price-to strong {
  display: inline-block;
  color: var(--primary);
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.modal__price-arrow {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 800;
}

.modal__price-tag {
  position: absolute;
  top: -12px;
  right: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .4px;
  box-shadow: 0 4px 12px rgba(243, 107, 33, .4);
}

.modal__list-title {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 800;
}

.modal__list {
  margin: 0 auto 26px;
  max-width: 330px;
  list-style: none;
  text-align: left;
}

.modal__list li {
  position: relative;
  padding: 6px 0 6px 30px;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 600;
}

.modal__list li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: .68rem;
  font-weight: 900;
}

.modal__cta {
  font-size: 1.02rem;
}

/* botão secundário como hiperlink (visível, mas sem cara de botão) */
.modal__decline {
  display: inline-block;
  margin-top: 18px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color .15s ease;
}

.modal__decline:hover {
  color: var(--navy);
}

@media (prefers-reduced-motion: reduce) {
  .modal,
  .modal__card {
    transition: none;
  }
}

@media (max-width: 480px) {
  .modal__card { padding: 40px 22px 26px; }
  .modal__title { font-size: 1.4rem; }
  .modal__price { gap: 12px; padding: 16px 14px; }
}

/* ============================================================
   TEMA CBMMA 2026 — BOMBEIROS / SOLDADO COMBATENTE
   Mantém a estrutura original validada e muda apenas a identidade.
   ============================================================ */

.theme-cbmma {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,249,252,.98)), #f7f9fc;
}

.theme-cbmma .topbar {
  position: relative;
  overflow: hidden;
  color: #f8fbff;
  background: linear-gradient(90deg, #081a2b 0%, #0f355a 34%, #c8101e 100%);
  box-shadow: 0 4px 18px rgba(8,26,43,.22);
}
.theme-cbmma .topbar::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, #c8101e, #f36b21, #ffffff, #0f4c81);
}

.theme-cbmma .hero {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  background:
    radial-gradient(850px 420px at 50% -4%, rgba(200,16,30,.15), transparent 62%),
    radial-gradient(520px 340px at 95% 26%, rgba(15,76,129,.13), transparent 68%),
    radial-gradient(420px 280px at 5% 50%, rgba(243,107,33,.08), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}
.theme-cbmma .hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 12px;
  background: repeating-linear-gradient(135deg, #c8101e 0 24px, #fff 24px 34px, #0f4c81 34px 58px, #fff 58px 68px);
}
.theme-cbmma .hero::after {
  content: "CBMMA  •  193  •  SOLDADO COMBATENTE";
  position: absolute;
  right: -96px;
  top: 170px;
  transform: rotate(90deg);
  color: rgba(8,26,43,.055);
  font-family: 'Sora', sans-serif;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: 4px;
  pointer-events: none;
}

.theme-cbmma .badge {
  border-color: rgba(200,16,30,.16);
  color: #a80d18;
  background: linear-gradient(180deg, #fff, #fff0f2);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 6px 16px rgba(8,26,43,.05);
}
.theme-cbmma .hero .badge {
  color: #fff;
  border: 0;
  background: linear-gradient(90deg, #081a2b, #123b63);
  box-shadow: 0 10px 24px rgba(8,26,43,.18);
}
.theme-cbmma .hero__title .accent { color: var(--primary); }
.theme-cbmma .hero__title { color: #0b1723; text-wrap: balance; }
.theme-cbmma .hero__lead { color: #526779; }

.theme-cbmma .hero__mockup {
  position: relative;
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(200,16,30,.18), rgba(255,255,255,.95) 40%, rgba(15,76,129,.18));
  box-shadow: 0 30px 70px rgba(8,26,43,.14);
}
.theme-cbmma .hero__mockup::before {
  content: "MATERIAL REAL • VISUAL • DIRECIONADO";
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 50%;
  padding: 7px 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  color: #fff;
  background: rgba(8,26,43,.92);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .8px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(8,26,43,.18);
}
.theme-cbmma .hero__mockup img { border-radius: 20px; }

.theme-cbmma .btn--primary {
  background: linear-gradient(180deg, #df1828, #a70d18);
  box-shadow: 0 10px 22px rgba(200,16,30,.30);
}
.theme-cbmma .btn--primary:hover { box-shadow: 0 15px 32px rgba(200,16,30,.38); }
.theme-cbmma .btn--3d { box-shadow: 0 6px 0 #850a12, 0 15px 28px rgba(200,16,30,.28); }
.theme-cbmma .btn--3d:hover { box-shadow: 0 4px 0 #850a12, 0 12px 22px rgba(200,16,30,.30); }
.theme-cbmma .btn--outline {
  color: #0b2e4e;
  border-color: #0b2e4e;
  box-shadow: 0 8px 20px rgba(8,26,43,.06);
}
.theme-cbmma .btn--outline:hover { background: #0b2e4e; }

.theme-cbmma .section--alt {
  background:
    linear-gradient(180deg, rgba(15,76,129,.045), transparent 30%),
    radial-gradient(circle at 9% 12%, rgba(200,16,30,.055), transparent 24%),
    #edf3f8;
}
.theme-cbmma .section__title { color: #0c1722; text-wrap: balance; }

.theme-cbmma .gallery { padding: 8px 0 16px; }
.theme-cbmma .gallery__item {
  border: 2px solid rgba(8,26,43,.08);
  background: #fff;
  box-shadow: 0 14px 32px rgba(8,26,43,.12);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.theme-cbmma .gallery__item:hover {
  transform: translateY(-5px);
  border-color: rgba(200,16,30,.32);
  box-shadow: 0 20px 42px rgba(8,26,43,.17);
}

.theme-cbmma .feature-card,
.theme-cbmma .bonus-card,
.theme-cbmma .step,
.theme-cbmma .review,
.theme-cbmma .faq__item,
.theme-cbmma .plan,
.theme-cbmma .pain-box,
.theme-cbmma .guarantee { border-color: rgba(15,76,129,.14); }

.theme-cbmma .feature-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  transition: transform .2s ease, box-shadow .2s ease;
}
.theme-cbmma .feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #c8101e 0 44%, #f36b21 44% 62%, #0f4c81 62% 100%);
}
.theme-cbmma .feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(8,26,43,.14); }
.theme-cbmma .feature-card__icon {
  color: #fff;
  background: linear-gradient(145deg, #c8101e, #f36b21);
  box-shadow: 0 8px 18px rgba(200,16,30,.18);
}
.theme-cbmma .feature-card:nth-child(3n+2) .feature-card__icon {
  background: linear-gradient(145deg, #0f4c81, #123b63);
  box-shadow: 0 8px 18px rgba(15,76,129,.18);
}
.theme-cbmma .feature-card--highlight {
  border-color: rgba(243,107,33,.45);
  background: linear-gradient(180deg, #fff, #fff3eb);
}

.theme-cbmma .audience__item {
  position: relative;
  overflow: hidden;
  color: #16334c;
  border-color: rgba(15,76,129,.13);
  background: #fff;
}
.theme-cbmma .audience__item::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(#c8101e, #f36b21);
}

.theme-cbmma .pain-box {
  background: radial-gradient(circle at 100% 0, rgba(200,16,30,.07), transparent 25%), #fff;
}
.theme-cbmma .pain-box__icon {
  color: #a80d18;
  background: #fff0f2;
  box-shadow: inset 0 0 0 1px rgba(200,16,30,.12);
}
.theme-cbmma .pain-item {
  color: #153550;
  border-color: #e4d7d1;
  background: #fff9f6;
}
.theme-cbmma .pain-item::before { background: linear-gradient(180deg, #f36b21, #c8101e); }

.theme-cbmma .two-col__media { position: relative; }
.theme-cbmma .two-col__media::before {
  content: "KIT VISUAL CBMMA 2026";
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 9px;
  color: #fff;
  background: rgba(8,26,43,.90);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .7px;
}

.theme-cbmma .check-list li { color: #16334c; }
.theme-cbmma .check-list li::before {
  background: linear-gradient(145deg, #0f4c81, #123b63);
  box-shadow: 0 4px 10px rgba(15,76,129,.18);
}

.theme-cbmma .bonus-card {
  border-top: 4px solid #c8101e;
  background: linear-gradient(180deg, #fff, #fbfdff);
  transition: transform .2s ease, box-shadow .2s ease;
}
.theme-cbmma .bonus-card:nth-child(even) { border-top-color: #0f4c81; }
.theme-cbmma .bonus-card:hover { transform: translateY(-5px); box-shadow: 0 20px 42px rgba(8,26,43,.15); }
.theme-cbmma .bonus-card__thumb {
  background: linear-gradient(135deg, rgba(200,16,30,.08), rgba(15,76,129,.08)), #f6f9fc;
}

.theme-cbmma .step__num {
  background: linear-gradient(145deg, #c8101e, #8d0b14);
  box-shadow: 0 7px 16px rgba(200,16,30,.20);
}
.theme-cbmma .review__stars { color: #f36b21; }
.theme-cbmma .review__avatar { background: linear-gradient(145deg, #0f4c81, #c8101e); }

.theme-cbmma #planos {
  background: radial-gradient(550px 260px at 50% 0, rgba(200,16,30,.08), transparent 70%), #fff;
}
.theme-cbmma .plan { overflow: visible; }
.theme-cbmma .plan--featured {
  border: 2px solid #c8101e;
  background: radial-gradient(circle at 100% 0, rgba(243,107,33,.08), transparent 28%), #fff;
  box-shadow: 0 28px 64px rgba(8,26,43,.18);
}
.theme-cbmma .plan__tag {
  background: linear-gradient(90deg, #081a2b, #123b63);
  box-shadow: 0 8px 18px rgba(8,26,43,.22);
}
.theme-cbmma .plan__name { color: #0b2e4e; }
.theme-cbmma .plan__price strong { color: #c8101e; }

.theme-cbmma .guarantee {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0, rgba(15,76,129,.08), transparent 46%), #fff;
}
.theme-cbmma .guarantee::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #0f4c81, #fff 45%, #c8101e);
}
.theme-cbmma .guarantee__seal {
  background: linear-gradient(145deg, #eaf3fb, #fff0f2);
  box-shadow: inset 0 0 0 1px rgba(15,76,129,.12);
}

.theme-cbmma .faq__q { color: #0b2e4e; }
.theme-cbmma .faq__item.open { border-color: rgba(200,16,30,.24); }

.theme-cbmma .modal__overlay { background: rgba(4,17,29,.76); }
.theme-cbmma .modal__card {
  border: 1px solid rgba(200,16,30,.16);
  background:
    radial-gradient(130% 60% at 50% 0%, rgba(200,16,30,.12), transparent 58%),
    radial-gradient(80% 50% at 100% 100%, rgba(15,76,129,.08), transparent 60%),
    #fff;
}
.theme-cbmma .modal__price { background: linear-gradient(180deg, #f8fbfe, #fff8f5); }
.theme-cbmma .modal__price-tag {
  background: linear-gradient(180deg, #f36b21, #c94b10);
  box-shadow: 0 4px 12px rgba(243,107,33,.34);
}

.theme-cbmma .footer {
  position: relative;
  color: #cad7e4;
  background: linear-gradient(180deg, #0b2742 0%, #061422 100%);
}
.theme-cbmma .footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #c8101e, #f36b21 38%, #fff 50%, #0f4c81 68%, #123b63);
}
.theme-cbmma .footer__brand { color: #fff; }
.theme-cbmma .footer__disclaimer { color: #9fb1c2; }
.theme-cbmma .footer__copy { color: #7f95aa; }

@media (max-width: 680px) {
  .theme-cbmma .hero::after { display: none; }
  .theme-cbmma .hero__mockup { padding: 6px; border-radius: 20px; }
  .theme-cbmma .hero__mockup::before {
    top: 14px;
    max-width: calc(100% - 36px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .theme-cbmma .gallery__item { width: 180px; height: 253px; }
}


/* ============================================================
   REDESIGN PREMIUM V2 — inspirado em páginas de sistemas visuais
   Mantém a identidade CBMMA, mas reduz aparência de template.
   ============================================================ */

:root {
  --surface: #fffdfa;
  --surface-2: #f8f6f1;
  --surface-3: #f3f5f7;
  --ink-strong: #101923;
  --red-bright: #df1627;
  --red-deep: #9f0d18;
  --ember: #f06a24;
  --navy-rich: #071a2b;
  --green-ok: #12865a;
  --premium-shadow: 0 24px 70px rgba(8,26,43,.12);
  --premium-shadow-sm: 0 12px 34px rgba(8,26,43,.08);
}

.theme-cbmma {
  background:
    radial-gradient(900px 480px at 12% -10%, rgba(223,22,39,.055), transparent 62%),
    radial-gradient(720px 420px at 92% 6%, rgba(240,106,36,.05), transparent 64%),
    var(--surface);
}

.theme-cbmma .container { max-width: 1180px; }

.theme-cbmma .topbar {
  position: relative;
  padding: 12px 18px;
  color: rgba(255,255,255,.92);
  background: linear-gradient(90deg, #9f0d18 0%, #d51626 42%, #a50d18 100%);
  box-shadow: 0 5px 22px rgba(157,13,24,.18);
  font-size: .84rem;
  letter-spacing: .1px;
}

.theme-cbmma .topbar strong { color: #fff; font-weight: 800; }

.theme-cbmma .hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 88px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,253,250,.98)),
    var(--surface);
  border-bottom: 1px solid rgba(8,26,43,.07);
}

.theme-cbmma .hero::before,
.theme-cbmma .hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}
.theme-cbmma .hero::before {
  width: 540px; height: 540px; left: -260px; top: -220px;
  background: radial-gradient(circle, rgba(223,22,39,.10), transparent 68%);
}
.theme-cbmma .hero::after {
  width: 460px; height: 460px; right: -250px; top: 100px;
  background: radial-gradient(circle, rgba(240,106,36,.09), transparent 70%);
}

.theme-cbmma .hero__inner { position: relative; z-index: 1; }
.theme-cbmma .hero .badge {
  margin-bottom: 22px;
  padding: 9px 15px;
  border: 1px solid rgba(223,22,39,.16);
  color: #af101c;
  background: rgba(255,246,246,.9);
  box-shadow: 0 5px 18px rgba(223,22,39,.06);
}

.theme-cbmma .hero__title {
  max-width: 1010px;
  margin-bottom: 20px;
  color: var(--ink-strong);
  font-size: clamp(2.4rem, 4.8vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.theme-cbmma .hero__title .accent {
  position: relative;
  display: inline-block;
  color: var(--red-bright);
}
.theme-cbmma .hero__title .accent::after {
  content: "";
  position: absolute;
  left: 4%; right: 2%; bottom: -5px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-bright), var(--ember));
  transform: rotate(-1deg);
  opacity: .85;
}
.theme-cbmma .hero__lead {
  max-width: 825px;
  margin-bottom: 32px;
  color: #536170;
  font-size: 1.08rem;
  line-height: 1.72;
}
.theme-cbmma .hero__mockup {
  position: relative;
  max-width: 850px;
  margin: 8px auto 34px;
  padding: 10px;
}
.theme-cbmma .hero__mockup::before {
  content: "";
  position: absolute;
  inset: 9% 12% 4%;
  z-index: -1;
  border-radius: 48%;
  background: radial-gradient(circle, rgba(223,22,39,.16), rgba(240,106,36,.06) 45%, transparent 72%);
  filter: blur(26px);
}
.theme-cbmma .hero__mockup img {
  border-radius: 22px;
  filter: drop-shadow(0 25px 36px rgba(8,26,43,.16));
}
.theme-cbmma .hero__cta { gap: 12px; margin-bottom: 34px; }
.theme-cbmma .hero__cta .btn { max-width: 370px; border-radius: 14px; }
.theme-cbmma .hero__cta .btn--primary { padding: 20px 36px; }
.theme-cbmma .hero__features {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 0;
  width: 100%;
  max-width: 980px;
  margin: 0 auto 24px;
  padding: 13px 22px;
  border: 1px solid rgba(8,26,43,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--premium-shadow-sm);
  backdrop-filter: blur(8px);
}
.theme-cbmma .hero__features li {
  position: relative;
  padding: 13px 18px;
  color: #263747;
  font-size: .83rem;
  line-height: 1.45;
  text-align: left;
}
.theme-cbmma .hero__features li:nth-child(3n+2),
.theme-cbmma .hero__features li:nth-child(3n+3) { border-left: 1px solid rgba(8,26,43,.07); }
.theme-cbmma .hero__stars {
  padding: 9px 14px;
  border-radius: 999px;
  color: #5c6671;
  background: #fff;
  box-shadow: 0 7px 20px rgba(8,26,43,.06);
  font-size: .86rem;
}

.theme-cbmma .section { padding: 88px 0; }
.theme-cbmma .section--alt {
  background:
    radial-gradient(circle at 8% 8%, rgba(223,22,39,.04), transparent 24%),
    linear-gradient(180deg, #f6f7f8, #f1f4f6);
}
.theme-cbmma .badge {
  border-color: rgba(223,22,39,.14);
  color: #b3101d;
  background: #fff5f5;
}
.theme-cbmma .section__title {
  color: var(--ink-strong);
  font-size: clamp(2rem,3.4vw,3rem);
  letter-spacing: -.035em;
  text-wrap: balance;
}
.theme-cbmma .section__sub { max-width: 760px; color: #677482; line-height: 1.72; }

.theme-cbmma .gallery { margin: 42px 0; }
.theme-cbmma .gallery__track { gap: 22px; }
.theme-cbmma .gallery__item {
  width: 230px;
  height: 324px;
  border: 1px solid rgba(8,26,43,.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(8,26,43,.11);
}
.theme-cbmma .gallery__item:hover {
  transform: translateY(-8px) rotate(-.35deg);
  box-shadow: 0 28px 55px rgba(8,26,43,.16);
}

.theme-cbmma .grid { gap: 20px; }
.theme-cbmma .feature-card {
  min-height: 225px;
  padding: 28px 26px;
  border: 1px solid rgba(8,26,43,.09);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 32px rgba(8,26,43,.075);
}
.theme-cbmma .feature-card::before {
  left: 24px; right: 24px; top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg,var(--red-bright),var(--ember));
}
.theme-cbmma .feature-card__icon {
  width: 50px; height: 50px;
  border: 1px solid rgba(223,22,39,.10);
  color: inherit;
  background: #fff6f5;
  box-shadow: none;
}
.theme-cbmma .feature-card:nth-child(3n+2) .feature-card__icon {
  background: #f2f7fb;
  box-shadow: none;
}
.theme-cbmma .feature-card h3 { font-size: 1.02rem; }
.theme-cbmma .feature-card p { font-size: .9rem; line-height: 1.65; }

.theme-cbmma .bonus-card {
  border: 1px solid rgba(8,26,43,.09);
  border-top: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(8,26,43,.08);
}
.theme-cbmma .bonus-card:nth-child(even) { border-top-color: transparent; }
.theme-cbmma .bonus-card::after {
  content: "BÔNUS";
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg,var(--red-bright),var(--red-deep));
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .6px;
}
.theme-cbmma .bonus-card__thumb { margin-bottom: 20px; background: #f4f5f6; }
.theme-cbmma .bonus-card h3 { padding: 0 22px; font-size: 1.04rem; }
.theme-cbmma .bonus-card p { line-height: 1.65; }

.theme-cbmma .step {
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(8,26,43,.07);
}
.theme-cbmma .step__num {
  background: var(--navy-rich);
  box-shadow: 0 7px 16px rgba(8,26,43,.16);
}

/* ---------- Pricing: foco principal do redesign ---------- */
.theme-cbmma #planos.pricing-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 94px;
  background:
    radial-gradient(700px 360px at 50% -5%, rgba(223,22,39,.25), transparent 62%),
    radial-gradient(500px 300px at 85% 95%, rgba(240,106,36,.12), transparent 65%),
    #081723;
}
.theme-cbmma #planos.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 75%);
}
.theme-cbmma #planos .pricing-heading,
.theme-cbmma #planos .plans,
.theme-cbmma #planos .pricing-after { position: relative; z-index: 1; }
.theme-cbmma #planos .pricing-heading .badge {
  color: #ffd7da;
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.075);
}
.theme-cbmma #planos .pricing-heading .section__title { color: #fff; }
.theme-cbmma #planos .pricing-heading .section__sub { color: #aebac5; }
.pricing-heading__proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-top: 24px;
  color: #dce5ec;
  font-size: .82rem;
  font-weight: 700;
}

.theme-cbmma #planos .plans {
  max-width: 1060px;
  gap: 28px;
  align-items: stretch;
  margin-top: 58px;
}
.theme-cbmma #planos .plan {
  display: flex;
  flex-direction: column;
  overflow: visible;
  padding: 34px 34px 30px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.15);
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.theme-cbmma #planos .plan--basic {
  margin-top: 20px;
  background: linear-gradient(180deg,#fff 0%,#fbfaf7 100%);
  box-shadow: 0 22px 58px rgba(0,0,0,.22);
}
.theme-cbmma #planos .plan--featured {
  border: 2px solid #ef3443;
  background:
    radial-gradient(circle at 92% 0,rgba(240,106,36,.12),transparent 27%),
    #fff;
  box-shadow: 0 34px 88px rgba(0,0,0,.34), 0 0 0 5px rgba(223,22,39,.08);
  transform: translateY(-8px);
}
.theme-cbmma #planos .plan__topline {
  height: 5px;
  margin: -34px -34px 27px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg,#cfd6dc,#eef1f3);
}
.theme-cbmma #planos .plan--featured .plan__topline {
  background: linear-gradient(90deg,var(--red-bright),var(--ember));
}
.theme-cbmma #planos .plan__tag {
  top: -20px;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  background: linear-gradient(135deg,var(--red-bright),var(--red-deep));
  box-shadow: 0 10px 30px rgba(223,22,39,.36);
  font-size: .73rem;
  letter-spacing: .8px;
}
.theme-cbmma #planos .plan__label {
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #586572;
  background: #f2f4f6;
  font-size: .7rem;
  letter-spacing: .95px;
}
.theme-cbmma #planos .plan--featured .plan__label {
  color: #b0101d;
  background: #fff0f1;
}
.theme-cbmma #planos .plan__name {
  margin-bottom: 8px;
  color: #111d28;
  font-size: 1.55rem;
  letter-spacing: -.025em;
}
.theme-cbmma #planos .plan__desc {
  min-height: 52px;
  margin-bottom: 17px;
  color: #6c7781;
  font-size: .9rem;
  line-height: 1.55;
}
.theme-cbmma #planos .plan__hero {
  min-height: 170px;
  margin: 0 0 5px;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 50%,rgba(223,22,39,.07),transparent 65%);
}
.theme-cbmma #planos .plan__hero img {
  max-height: 190px;
  filter: drop-shadow(0 14px 18px rgba(8,26,43,.13));
}
.theme-cbmma #planos .plan__price {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "old old" "price suffix";
  align-items: end;
  gap: 0 10px;
  margin: 10px 0 0;
}
.theme-cbmma #planos .plan__price s {
  grid-area: old;
  margin-bottom: -3px;
  color: #9aa2a9;
  font-size: .88rem;
}
.theme-cbmma #planos .plan__price strong {
  grid-area: price;
  color: #cc1120;
  font-size: 3.45rem;
  line-height: 1;
  letter-spacing: -.06em;
}
.theme-cbmma #planos .plan__price strong span {
  font-size: 1.48rem;
  letter-spacing: -.03em;
}
.theme-cbmma #planos .plan__price em {
  grid-area: suffix;
  align-self: end;
  padding-bottom: 7px;
  color: #77818b;
  font-size: .84rem;
}
.theme-cbmma #planos .plan__note {
  margin: 8px 0 20px;
  color: #7c858e;
  font-size: .78rem;
}
.theme-cbmma #planos .plan__difference {
  margin: 0 0 21px;
  padding: 11px 13px;
  border: 1px solid rgba(223,22,39,.13);
  border-radius: 12px;
  color: #a80f1b;
  background: #fff2f2;
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
}
.theme-cbmma #planos .plan__included-title {
  margin: 1px 0 3px;
  color: #1d2a35;
  font-family: 'Sora',sans-serif;
  font-size: .86rem;
  font-weight: 800;
}
.theme-cbmma #planos .check-list { margin-bottom: 22px; }
.theme-cbmma #planos .check-list li {
  padding: 9px 0 9px 34px;
  border-bottom: 1px solid #edf0f2;
  color: #344451;
  font-size: .83rem;
  font-weight: 600;
  line-height: 1.4;
}
.theme-cbmma #planos .check-list li::before {
  left: 1px;
  width: 21px; height: 21px;
  background: #ecf7f2;
  color: var(--green-ok);
  box-shadow: inset 0 0 0 1px rgba(18,134,90,.16);
  font-size: .72rem;
}
.theme-cbmma #planos .plan--featured .check-list li::before {
  color: #fff;
  background: linear-gradient(135deg,#d91626,#a80d18);
  box-shadow: none;
}
.theme-cbmma #planos .plan__not-included {
  display: grid;
  gap: 3px;
  margin-top: auto;
  margin-bottom: 18px;
  padding: 14px 15px;
  border: 1px solid #e6e8ea;
  border-radius: 14px;
  color: #6b747c;
  background: #f7f7f5;
  font-size: .78rem;
  line-height: 1.48;
}
.theme-cbmma #planos .plan__not-included strong { color: #1f2b35; font-size: .82rem; }
.theme-cbmma #planos .plan__not-included b { color: #c4101e; }
.theme-cbmma #planos .btn {
  margin-top: auto;
  padding: 17px 20px;
  border-radius: 13px;
  font-size: .88rem;
  letter-spacing: .2px;
}
.theme-cbmma #planos .plan__cta-basic {
  color: #132638;
  border-color: #cbd2d8;
  background: #fff;
}
.theme-cbmma #planos .plan__cta-basic:hover {
  color: #fff;
  border-color: #122538;
  background: #122538;
}
.theme-cbmma #planos .plan__cta-complete {
  padding: 19px 20px;
  background: linear-gradient(180deg,#e31a2b,#a90d18);
}
.theme-cbmma #planos .plan__release {
  margin-top: 13px;
  color: #818990;
  font-size: .74rem;
}
.theme-cbmma #planos .plan__release strong { color: #b30f1c; }
.pricing-after {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 34px;
  color: #aeb9c3;
  font-size: .78rem;
  font-weight: 600;
}

/* Garantia mais próxima de um selo/área de confiança, sem card genérico */
.theme-cbmma .guarantee {
  max-width: 860px;
  border: 1px solid rgba(8,26,43,.08);
  border-radius: 28px;
  background: linear-gradient(180deg,#fff,#fbfaf7);
  box-shadow: var(--premium-shadow-sm);
}
.theme-cbmma .guarantee::before { background: linear-gradient(90deg,var(--red-bright),var(--ember)); }
.theme-cbmma .guarantee__seal {
  width: 78px; height: 78px;
  background: #fff1f2;
  box-shadow: inset 0 0 0 1px rgba(223,22,39,.12);
}

.theme-cbmma .faq__item {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(8,26,43,.055);
}

@media (max-width: 980px) {
  .theme-cbmma .hero__features { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .theme-cbmma .hero__features li:nth-child(3n+2),
  .theme-cbmma .hero__features li:nth-child(3n+3) { border-left: 0; }
  .theme-cbmma .hero__features li:nth-child(even) { border-left: 1px solid rgba(8,26,43,.07); }
  .theme-cbmma #planos .plans { max-width: 620px; }
  .theme-cbmma #planos .plan--basic { margin-top: 0; }
  .theme-cbmma #planos .plan--featured { margin-top: 20px; transform: none; }
}

@media (max-width: 680px) {
  .theme-cbmma .hero { padding: 58px 0 65px; }
  .theme-cbmma .hero__title { font-size: 2.08rem; line-height: 1.07; }
  .theme-cbmma .hero__lead { font-size: .98rem; }
  .theme-cbmma .hero__features { grid-template-columns: 1fr; padding: 10px 14px; }
  .theme-cbmma .hero__features li,
  .theme-cbmma .hero__features li:nth-child(even) { border-left: 0; border-bottom: 1px solid rgba(8,26,43,.065); }
  .theme-cbmma .hero__features li:last-child { border-bottom: 0; }
  .theme-cbmma .gallery__item { width: 188px; height: 265px; }
  .theme-cbmma #planos.pricing-section { padding: 76px 0 72px; }
  .pricing-heading__proof, .pricing-after { gap: 9px 15px; }
  .theme-cbmma #planos .plans { margin-top: 46px; }
  .theme-cbmma #planos .plan { padding: 30px 22px 26px; border-radius: 23px; }
  .theme-cbmma #planos .plan__topline { margin: -30px -22px 24px; border-radius: 23px 23px 0 0; }
  .theme-cbmma #planos .plan__name { font-size: 1.35rem; }
  .theme-cbmma #planos .plan__desc { min-height: 0; }
  .theme-cbmma #planos .plan__price strong { font-size: 3rem; }
  .theme-cbmma #planos .plan__hero { min-height: 135px; }
  .theme-cbmma #planos .plan__hero img { max-height: 155px; }
}



/* ============================================================
   PRICING CLEAN — seção de oferta simplificada
   Escopo: somente #planos.pricing-section--clean
   ============================================================ */
.theme-cbmma #planos.pricing-section--clean {
  position: relative;
  overflow: hidden;
  padding: 88px 0 78px;
  background:
    radial-gradient(650px 300px at 50% -8%, rgba(200,16,30,.09), transparent 68%),
    linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
}

.theme-cbmma #planos.pricing-section--clean::before {
  content: none;
}

.theme-cbmma #planos .pricing-intro {
  max-width: 840px;
}

.theme-cbmma #planos .pricing-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 7px 13px;
  border: 1px solid rgba(200,16,30,.14);
  border-radius: 999px;
  color: var(--primary);
  background: #fff;
  box-shadow: 0 6px 18px rgba(8,26,43,.05);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.theme-cbmma #planos .pricing-intro .section__title {
  max-width: 760px;
  margin: 0 auto 12px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.7rem);
  letter-spacing: -.035em;
}

.theme-cbmma #planos .pricing-intro__sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

.theme-cbmma #planos .pricing-intro__sub strong {
  color: var(--primary);
  font-weight: 900;
}

.theme-cbmma #planos .plans--clean {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 960px;
  align-items: stretch;
  gap: 24px;
  margin-top: 42px;
}

.theme-cbmma #planos .plan--clean {
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin: 0;
  padding: 30px;
  overflow: visible;
  border: 1px solid #e2e6ea;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(8,26,43,.08);
  transform: none;
}

.theme-cbmma #planos .plan--clean.plan--featured {
  border: 2px solid var(--primary);
  background:
    radial-gradient(circle at 100% 0, rgba(243,107,33,.08), transparent 27%),
    #fff;
  box-shadow: 0 24px 60px rgba(8,26,43,.12), 0 0 0 4px rgba(200,16,30,.035);
}

.theme-cbmma #planos .plan--clean .plan__topline,
.theme-cbmma #planos .plan--clean .plan__tag,
.theme-cbmma #planos .plan--clean .plan__hero,
.theme-cbmma #planos .plan--clean .plan__desc,
.theme-cbmma #planos .plan--clean .plan__difference,
.theme-cbmma #planos .plan--clean .plan__included-title,
.theme-cbmma #planos .plan--clean .plan__not-included,
.theme-cbmma #planos .plan--clean > .check-list,
.theme-cbmma #planos .pricing-heading__proof,
.theme-cbmma #planos .pricing-after {
  display: none !important;
}

.theme-cbmma #planos .plan__ribbon {
  align-self: center;
  margin: -48px auto 22px;
  padding: 9px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #df1627, #9d0b16);
  box-shadow: 0 10px 24px rgba(200,16,30,.25);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .65px;
  white-space: nowrap;
}

.theme-cbmma #planos .plan__eyebrow {
  margin-bottom: 8px;
  color: #7b858e;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 1.15px;
}

.theme-cbmma #planos .plan--featured .plan__eyebrow {
  color: var(--primary);
}

.theme-cbmma #planos .plan--clean .plan__name {
  margin: 0 0 9px;
  color: #101923;
  font-size: 1.45rem;
  letter-spacing: -.025em;
}

.theme-cbmma #planos .plan__summary {
  min-height: 48px;
  margin: 0 0 20px;
  color: #66727d;
  font-size: .9rem;
  line-height: 1.55;
}

.theme-cbmma #planos .plan__media {
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(160deg, #fff4ec, #ffe6d8);
  box-shadow: 0 14px 34px rgba(243,107,33,.18);
}

.theme-cbmma #planos .plan__media img {
  display: block;
  width: 100%;
  height: auto;
}

.theme-cbmma #planos .plan__upgrade {
  margin: -4px 0 18px;
  padding: 9px 11px;
  border: 1px solid rgba(200,16,30,.12);
  border-radius: 10px;
  color: #a30d19;
  background: #fff4f5;
  font-size: .72rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: .2px;
}

.theme-cbmma #planos .plan__upgrade strong {
  font-size: .84rem;
}

.theme-cbmma #planos .plan__price-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 18px 0;
  border-top: 1px solid #edf0f2;
  border-bottom: 1px solid #edf0f2;
}

.theme-cbmma #planos .plan__old-price {
  align-self: flex-start;
  margin-top: 7px;
  color: #9aa2aa;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: line-through;
}

.theme-cbmma #planos .plan__price-main {
  display: grid;
  justify-items: end;
}

.theme-cbmma #planos .plan__price-main strong {
  color: var(--primary);
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.065em;
}

.theme-cbmma #planos .plan__price-main strong span {
  font-size: 1.25rem;
  letter-spacing: -.025em;
}

.theme-cbmma #planos .plan__price-main small {
  margin-top: 5px;
  color: #7f8992;
  font-size: .72rem;
  font-weight: 600;
}

.theme-cbmma #planos .plan__compact-title {
  margin-bottom: 10px;
  color: #26333e;
  font-family: 'Sora', sans-serif;
  font-size: .82rem;
  font-weight: 800;
}

.theme-cbmma #planos .plan__compact-list {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.theme-cbmma #planos .plan__compact-list li {
  position: relative;
  padding: 9px 12px 9px 38px;
  border: 1px solid #edf0f2;
  border-radius: 11px;
  color: #34434f;
  background: #fbfcfd;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.35;
}

.theme-cbmma #planos .plan__compact-list li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 12px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #0d7b50;
  background: #e9f7f1;
  font-size: .68rem;
  font-weight: 900;
}

.theme-cbmma #planos .plan__compact-list--featured li {
  border-color: #f2d9dc;
  background: #fffafb;
}

.theme-cbmma #planos .plan__compact-list--featured li::before {
  color: #fff;
  background: var(--primary);
}

.theme-cbmma #planos .plan--clean .btn {
  margin-top: auto;
  padding: 17px 18px;
  border-radius: 12px;
  font-size: .87rem;
}

.theme-cbmma #planos .plan--clean .plan__cta-basic {
  color: #102436;
  border-color: #ccd3d9;
  background: #fff;
}

.theme-cbmma #planos .plan--clean .plan__cta-basic:hover {
  color: #fff;
  border-color: #102436;
  background: #102436;
}

.theme-cbmma #planos .plan--clean .plan__cta-complete {
  background: linear-gradient(180deg, #df1627, #a90d18);
  box-shadow: 0 5px 0 #8e0b15, 0 12px 24px rgba(200,16,30,.22);
}

.theme-cbmma #planos .plan__microcopy {
  margin: 12px 0 0;
  color: #8a939b;
  text-align: center;
  font-size: .7rem;
}

.theme-cbmma #planos .plan__microcopy--featured {
  color: #a64a52;
  font-weight: 700;
}

.theme-cbmma #planos .pricing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-top: 28px;
  color: #6f7a84;
  font-size: .75rem;
  font-weight: 700;
}

@media (max-width: 860px) {
  .theme-cbmma #planos .plans--clean {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 34px;
  }

  .theme-cbmma #planos .plan__ribbon {
    margin-top: -46px;
  }
}

@media (max-width: 560px) {
  .theme-cbmma #planos.pricing-section--clean {
    padding: 68px 0 62px;
  }

  .theme-cbmma #planos .pricing-intro .section__title {
    font-size: 2rem;
  }

  .theme-cbmma #planos .plan--clean {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .theme-cbmma #planos .plan__price-main strong {
    font-size: 2.65rem;
  }

  .theme-cbmma #planos .pricing-trust {
    display: grid;
    gap: 6px;
    text-align: center;
  }
}
