/* ============================================================
   Radar Concursos — Kit Visual CFC — Exame de Suficiência
   Fontes: Sora (títulos) + Inter (corpo)
   Paleta: navy contábil + azul institucional + creme + dourado
   ============================================================ */

:root {
  --navy:       #071b31;
  --navy-2:     #102f4d;
  --primary:    #123f6b;
  --primary-d:  #082d4f;
  --primary-l:  #e8eef5;
  --gold:       #c9982d;
  --gold-d:     #94670c;
  --gold-l:     #fbf0cf;
  --cream:      #f7f3e9;
  --cream-2:    #eee7da;
  --white:      #ffffff;
  --ink:        #0b2238;
  --text:       #46596c;
  --muted:      #68798a;
  --line:       #ddd6c7;
  --danger-l:   #fff0e6;
  --radius:     16px;
  --radius-lg:  24px;
  --shadow:     0 10px 28px rgba(8, 31, 53, .08);
  --shadow-lg:  0 24px 56px rgba(8, 31, 53, .15);
  --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(15, 76, 129, .32);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(15, 76, 129, .40);
}

.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(15, 76, 129, .32);
}

.btn--3d:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 var(--primary-d), 0 11px 20px rgba(15, 76, 129, .32);
}

/* 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(15, 76, 129, .16);
  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: #d9e4f0;
  background: linear-gradient(90deg, var(--navy), #123f6b, 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(214, 161, 40, .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(15, 76, 129, .34);
  border-radius: var(--radius);
  color: #4f6780;
  background:
    linear-gradient(rgba(248, 243, 231, .82), rgba(248, 243, 231, .82)),
    repeating-linear-gradient(45deg, #d9e3ee, #d9e3ee 12px, #ecf1f7 12px, #ecf1f7 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(18, 63, 107, .16), transparent 62%),
    radial-gradient(460px 300px at 94% 30%, rgba(214, 161, 40, .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(214, 161, 40, .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 #eadfce;
  border-radius: 14px;
  color: var(--navy);
  background: #fffaf1;
  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(214, 161, 40, .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: #aabecf;
  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: #8095a9;
  font-size: .82rem;
}

.footer__copy {
  color: #74889c;
  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(214, 161, 40, .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(214, 161, 40, .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; }
}


/* ---------- Ajustes visuais CFC ---------- */
.hero__title .accent,
.plan__name,
.footer__brand { letter-spacing: -.02em; }
.feature-card,
.bonus-card,
.plan,
.pain-box,
.guarantee {
  border-top: 3px solid rgba(201, 152, 45, .72);
}
.feature-card:hover,
.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(7, 27, 49, .12);
  transition: transform .18s ease, box-shadow .18s ease;
}
.hero__mockup img,
.two-col__media img,
.plan__hero img {
  filter: drop-shadow(0 22px 32px rgba(7, 27, 49, .12));
}
@media (prefers-reduced-motion: reduce) {
  .feature-card:hover,
  .bonus-card:hover { transform: none; }
}
