/* ============================================================
   Radar Concursos — Apostila Completa PM-SP 2026
   Fontes: Sora (títulos) + Inter (corpo)
   Paleta: verde profundo + navy + creme + dourado
   ============================================================ */

:root {
  --navy:       #081f35;
  --navy-2:     #123b5c;
  --primary:    #0b6949;
  --primary-d:  #074b36;
  --primary-l:  #e2f1e8;
  --gold:       #d6a128;
  --gold-d:     #a86f0a;
  --gold-l:     #fff3cf;
  --cream:      #f8f3e7;
  --cream-2:    #f1eadb;
  --white:      #ffffff;
  --ink:        #102b26;
  --text:       #445b53;
  --muted:      #6a7a74;
  --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(11, 105, 73, .30);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(11, 105, 73, .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(11, 105, 73, .30);
}

.btn--3d:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 var(--primary-d), 0 11px 20px rgba(11, 105, 73, .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(11, 105, 73, .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: #dbe8e2;
  background: linear-gradient(90deg, var(--navy), #0c3b38, 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(11, 105, 73, .34);
  border-radius: var(--radius);
  color: #527164;
  background:
    linear-gradient(rgba(248, 243, 231, .82), rgba(248, 243, 231, .82)),
    repeating-linear-gradient(45deg, #d9eadd, #d9eadd 12px, #ecf4ee 12px, #ecf4ee 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(11, 105, 73, .14), 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 {
  /* velocidade dos carrosséis: maior = mais lento */
  --gallery-duration: 47s;

  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 24px;
  animation: slideLeft var(--gallery-duration) 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: #abc1b7;
  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: #819b90;
  font-size: .82rem;
}

.footer__copy {
  color: #6f897e;
  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; }
}

/* ============================================================
   COMPLEMENTOS PM-SP
   Blocos que existem nesta página e não estavam no layout base.
   ============================================================ */

/* ---------- Seção "papel" (variação clara entre as alt) ---------- */
.section--paper {
  background:
    radial-gradient(circle at 90% 8%, rgba(11, 105, 73, .05), transparent 26%),
    var(--white);
}

/* ---------- Moldura discreta das amostras ---------- */
.gallery__item {
  padding: 4px;
  border: 1px solid var(--line);
  background: #fff;
}

.gallery__item img {
  border-radius: calc(var(--radius) - 5px);
}

/* ---------- Barra fixa de CTA (mobile) ---------- */
.stickybar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 900;
  display: none;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  padding-bottom: calc(11px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .97);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 -10px 26px rgba(8, 31, 53, .12);
  visibility: hidden;
  transform: translateY(110%);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), visibility .28s;
}

.stickybar.is-visible {
  visibility: visible;
  transform: none;
}

.stickybar__offer {
  flex-shrink: 0;
  line-height: 1.15;
}

.stickybar__label {
  display: block;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.stickybar__price {
  display: block;
  color: var(--primary);
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.stickybar__cta {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  text-align: center;
}

/* ---------- Revelação no scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .75, .25, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .stickybar { display: flex; }

  /* espaço para a barra não cobrir o fim do rodapé */
  .footer { padding-bottom: 116px; }
}

@media (max-width: 680px) {
  .gallery__item { padding: 3px; }
}

@media (max-width: 360px) {
  .stickybar { gap: 10px; padding-left: 11px; padding-right: 11px; }
  .stickybar__price { font-size: 1.25rem; }
  .stickybar__cta { padding: 13px 12px; font-size: .92rem; }
}

/* ============================================================
   PM-SP 2026 — RETOQUE VISUAL INSTITUCIONAL
   Mantém estrutura, espaçamentos e conteúdo da página.
   Direção: azul-marinho + azul aço + branco frio + dourado sutil.
   ============================================================ */

:root {
  --navy:       #071c33;
  --navy-2:     #123f67;
  --primary:    #155da6;
  --primary-d:  #0d4078;
  --primary-l:  #e7f1fb;
  --gold:       #c7a14a;
  --gold-d:     #86651b;
  --gold-l:     #faf3df;
  --cream:      #f4f7fa;
  --cream-2:    #eaf0f6;
  --white:      #ffffff;
  --ink:        #0b1d2e;
  --text:       #34495d;
  --muted:      #647689;
  --line:       #d6e0ea;
  --danger-l:   #fff4eb;
  --shadow:     0 12px 30px rgba(7, 28, 51, .08);
  --shadow-lg:  0 24px 58px rgba(7, 28, 51, .14);
}

body {
  background: var(--cream);
}

/* ---------- Topbar mais institucional ---------- */
.topbar {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.09);
  color: #dce9f5;
  background:
    linear-gradient(90deg, #06182b 0%, #0b2f51 50%, #06182b 100%);
  box-shadow: 0 6px 18px rgba(7, 28, 51, .12);
}

.topbar::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(71, 154, 229, .65), transparent);
}

/* ---------- Hero: presença sem mexer na estrutura ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #dce9f5;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    radial-gradient(760px 360px at 50% 8%, rgba(52, 132, 205, .24), transparent 66%),
    radial-gradient(520px 340px at 92% 32%, rgba(199, 161, 74, .08), transparent 70%),
    linear-gradient(180deg, #0a2745 0%, #071c33 82%);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  top: 34px;
  left: 5%;
  width: 90px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: .75;
}

.hero::after {
  right: -130px;
  bottom: -210px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255,255,255,.018), 0 0 0 80px rgba(255,255,255,.012);
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero .badge {
  border-color: rgba(122, 187, 242, .32);
  color: #b9dcfa;
  background: rgba(21, 93, 166, .20);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
}

.hero__title {
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0,0,0,.18);
}

.hero__title .accent {
  color: #75b9f2;
}

.hero__lead,
.hero__stars {
  color: #b7c8d9;
}

.hero__features li {
  color: #e3edf6;
}

.hero__mockup img {
  filter: drop-shadow(0 24px 34px rgba(0, 10, 24, .30));
}

/* ---------- CTAs ---------- */
.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #1b6bb8 0%, var(--primary-d) 100%);
  box-shadow: 0 10px 24px rgba(13, 64, 120, .28);
}

.btn--primary:hover {
  box-shadow: 0 15px 32px rgba(13, 64, 120, .36);
}

.btn--3d {
  box-shadow: 0 5px 0 #082f59, 0 15px 26px rgba(13, 64, 120, .24);
}

.btn--3d:hover {
  box-shadow: 0 3px 0 #082f59, 0 11px 20px rgba(13, 64, 120, .24);
}

.hero__cta .btn--outline {
  color: #e9f4fd;
  border-color: rgba(185, 220, 250, .52);
  background: rgba(255,255,255,.055);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

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

/* ---------- Badges e títulos ---------- */
.badge {
  border-color: rgba(21, 93, 166, .16);
  color: var(--primary);
  background: var(--primary-l);
}

.section__title {
  letter-spacing: -.035em;
}

.section__title::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #73aede);
  opacity: .8;
}

.section__title--left::after {
  margin-left: 0;
}

/* ---------- Fundos frios e discretos ---------- */
.section--alt {
  background:
    radial-gradient(circle at 9% 10%, rgba(21, 93, 166, .055), transparent 23%),
    linear-gradient(180deg, #edf3f8 0%, var(--cream-2) 100%);
}

.section--paper {
  background:
    radial-gradient(circle at 90% 8%, rgba(21, 93, 166, .045), transparent 27%),
    linear-gradient(180deg, #fff 0%, #f7fafc 100%);
}

/* ---------- Cards: bordas limpas + detalhe azul ---------- */
.feature-card,
.audience__item,
.step,
.review,
.bonus-card,
.faq__item,
.plan,
.guarantee,
.pain-box {
  border-color: #d7e2ec;
}

.feature-card,
.step,
.review,
.bonus-card,
.plan,
.guarantee {
  position: relative;
}

.feature-card::before,
.step::before,
.review::before,
.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 2px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, rgba(21, 93, 166, .55), transparent);
  opacity: .55;
}

.feature-card {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: #bdd1e3;
  box-shadow: 0 16px 34px rgba(7, 28, 51, .11);
}

.feature-card__icon {
  border: 1px solid rgba(21, 93, 166, .10);
  background: linear-gradient(180deg, #eef6fd, var(--primary-l));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.65);
}

.feature-card--highlight {
  border-color: rgba(199, 161, 74, .40);
  background: linear-gradient(180deg, #fff 0%, #fbf7ec 100%);
}

.audience__item {
  position: relative;
  overflow: hidden;
  padding-left: 28px;
  background: rgba(255,255,255,.94);
}

.audience__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, #2b78bd, #0f4c86);
}

/* ---------- Galerias ---------- */
.gallery__item {
  border-color: #cedbe7;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 28, 51, .11);
}

/* ---------- Dor/contexto ---------- */
.pain-box {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,252,254,.98));
}

.pain-box__icon {
  color: var(--gold-d);
  background: var(--gold-l);
  box-shadow: inset 0 0 0 1px rgba(199, 161, 74, .20);
}

.pain-item {
  border-color: #dbe4ec;
  color: var(--navy);
  background: #f8fbfd;
}

.pain-item::before {
  background: #b58a2d;
}

/* ---------- Checklist ---------- */
.check-list li {
  border-bottom-color: #e0e8ef;
}

.check-list li::before,
.modal__list li::before {
  background: linear-gradient(180deg, #1a68b4, #0e4b86);
  box-shadow: 0 3px 8px rgba(13, 64, 120, .20);
}

/* ---------- Steps ---------- */
.step__num,
.review__avatar {
  background: linear-gradient(180deg, #1b6bb8, #0c467f);
  box-shadow: 0 7px 16px rgba(13, 64, 120, .18);
}

/* ---------- Planos ---------- */
#planos {
  background:
    radial-gradient(circle at 50% 15%, rgba(21, 93, 166, .06), transparent 28%),
    var(--cream);
}

.plan {
  overflow: visible;
  background: rgba(255,255,255,.98);
}

.plan--featured {
  border-color: var(--primary);
  box-shadow: 0 26px 60px rgba(7, 28, 51, .16);
}

.plan--featured::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(21, 93, 166, .08);
  border-radius: calc(var(--radius-lg) - 7px);
}

.plan--featured > * {
  position: relative;
  z-index: 1;
}

.plan__tag {
  background: linear-gradient(90deg, #071c33, #123f67);
  box-shadow: 0 8px 18px rgba(7, 28, 51, .18);
}

.plan__price strong,
.stickybar__price,
.modal__price-to strong {
  color: #13589c;
}

/* ---------- Garantia ---------- */
.guarantee {
  background:
    radial-gradient(circle at 50% 0%, rgba(21, 93, 166, .07), transparent 32%),
    #fff;
}

.guarantee__seal {
  border: 1px solid rgba(21, 93, 166, .12);
  background: var(--primary-l);
}

/* ---------- FAQ ---------- */
.faq__item {
  background: rgba(255,255,255,.98);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq__item.open {
  border-color: #b8cede;
  box-shadow: 0 14px 32px rgba(7, 28, 51, .09);
}

.faq__q:focus-visible {
  outline-color: rgba(21, 93, 166, .36);
}

/* ---------- Modal ---------- */
.modal__overlay {
  background: rgba(5, 19, 34, .72);
}

.modal__card {
  background:
    radial-gradient(130% 60% at 50% 0%, rgba(21, 93, 166, .11), transparent 58%),
    #fff;
}

.modal__eyebrow {
  color: var(--primary-d);
  background: var(--primary-l);
}

.modal__price {
  background: #f5f8fb;
}

.modal__price-tag {
  background: #ad842b;
  box-shadow: 0 4px 12px rgba(173, 132, 43, .30);
}

/* ---------- Sticky mobile ---------- */
.stickybar {
  border-top-color: #cfdce7;
  background: rgba(250, 252, 254, .97);
  box-shadow: 0 -12px 30px rgba(7, 28, 51, .13);
}

/* ---------- Rodapé ---------- */
.footer {
  position: relative;
  overflow: hidden;
  color: #b3c6d8;
  background:
    radial-gradient(circle at 50% -20%, rgba(35, 101, 160, .28), transparent 42%),
    linear-gradient(180deg, #071c33 0%, #041321 100%);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2e76b5, transparent);
  opacity: .7;
}

.footer__disclaimer {
  color: #8fa7bc;
}

.footer__copy {
  color: #748da4;
}

/* ---------- Mobile: mantém a identidade sem pesar ---------- */
@media (max-width: 680px) {
  .hero {
    background-size: 28px 28px, 28px 28px, auto, auto, auto;
  }

  .hero::before {
    left: 18px;
    width: 58px;
  }

  .section__title::after {
    margin-top: 12px;
  }

  .feature-card:hover {
    transform: none;
  }
}
