/* ================================================
   Folders das Parabolas de Jesus — style.css
   ================================================ */

html { scroll-behavior: smooth; }

:root {
  --dark:      hsl(230, 38%, 11%);
  --card-dark: hsl(230, 28%, 17%);
  --light:     hsl(40, 35%, 97%);
  --accent:    #FACC15;
  --check:     #1FAD6B;
  --danger:    hsl(0, 80%, 52%);
}

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

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--light);
  color: hsl(230, 22%, 14%);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ---- Tipografia ---- */
.sec-title {
  font-size: clamp(1.3rem, 3.5vw, 1.85rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.sec-title-light  { color: #fff; }
.highlight-accent { color: var(--accent); }
.highlight-green  { color: var(--check); }
.sec-sub       { color: hsl(230, 14%, 38%); font-size: 0.95rem; margin-bottom: 24px; }
.sec-sub-light { color: hsl(230, 10%, 68%); font-size: 0.95rem; margin-bottom: 24px; }

/* ---- CTA Button ---- */
.btn-cta {
  display: inline-block;
  background: var(--check);
  color: #fff;
  border-radius: 10px;
  padding: 16px 40px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  font-family: 'Montserrat', sans-serif;
  border: none;
  cursor: pointer;
  animation: pulse-cta 1.4s ease-in-out infinite;
  text-decoration: none;
  line-height: 1.3;
  text-align: center;
}
@keyframes pulse-cta {
  0%, 100% { transform: translateY(0);    box-shadow: 0 4px 16px rgba(31,173,107,.35); }
  50%       { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(31,173,107,.55); }
}

/* ---- Check Circle ---- */
.check-circle {
  color: #1FAD6B;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---- Badges ---- */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
}
.badge-danger  { background: var(--danger); color: #fff; }
.badge-accent  { background: var(--accent); color: hsl(230, 35%, 10%); }
.badge-colecao { background: var(--accent); color: hsl(230, 35%, 10%); font-size: 0.7rem; }

/* ================================================
   TOP BANNER
   ================================================ */
.top-banner {
  background: var(--danger);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  background: var(--dark);
  padding: 30px 24px 10px;
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero-bullet {
  display: inline-block;
  background: hsl(230, 22%, 20%);
  color: hsl(230, 10%, 62%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(1.65rem, 4.5vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
}
.hero-title .accent { color: var(--accent); }
.hero-underline {
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.5);
  text-underline-offset: 4px;
}
.hero-mockup { margin: 0 auto 28px; max-width: 520px; }
.hero-mockup img { width: 100%; border-radius: 12px; }
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.pill {
  background: hsl(230, 22%, 20%);
  color: hsl(230, 10%, 65%);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
}
.hero-sub {
  color: hsl(230, 10%, 72%);
  font-size: 0.97rem;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-sub strong { color: #fff; }
.hero-delivery { margin-top: 8px; }
.hero-delivery-text {
  color: hsl(230, 10%, 62%);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.hero-delivery-chips {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.delivery-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: hsl(230, 22%, 17%);
  color: hsl(230, 10%, 72%);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 50px;
}

/* ================================================
   CAROUSEL
   ================================================ */
.carousel-section {
  background: var(--dark);
  padding: 10px 0 64px;
  text-align: center;
}
.carousel-section > .carousel-header {
  padding: 0 24px 36px;
}
.carousel-wrap { overflow: hidden; position: relative; padding: 8px 0; }
.carousel-track {
  display: flex;
  gap: 14px;
  animation: scroll-l 38s linear infinite;
  width: max-content;
}
.carousel-track.reverse { animation: scroll-r 42s linear infinite; }
.carousel-item { flex-shrink: 0; width: 420px; border-radius: 10px; overflow: hidden; }
.carousel-item img { width: 100%; height: auto; }
@keyframes scroll-l { 0% { transform: translateX(0); }    100% { transform: translateX(-50%); } }
@keyframes scroll-r { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ================================================
   PASSO A PASSO
   ================================================ */
.passo-section { background: var(--light); padding: 60px 24px 0; }
.passo-inner { max-width: 860px; margin: 0 auto; }
.passo-inner img { width: 100%; height: auto; display: block; border-radius: 12px; }
@media (max-width: 600px) {
  .passo-section { padding: 40px 0; }
  .passo-inner img { border-radius: 0; }
}

/* ================================================
   ANTES E DEPOIS
   ================================================ */
.before-after-section {
  background: var(--light);
  padding: 24px 24px 72px;
}
.ba-inner { max-width: 860px; margin: 0 auto; }
.ba-title {
  font-size: clamp(1.3rem, 3.5vw, 1.9rem);
  font-weight: 900;
  text-align: center;
  color: hsl(230, 22%, 14%);
  text-transform: uppercase;
  margin-bottom: 36px;
  line-height: 1.3;
}
.hl-red   { color: var(--danger); }
.hl-green { color: var(--check); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-card { border-radius: 16px; padding: 24px 20px; }
.ba-card-no  { background: hsl(0, 30%, 96%);   border: 1.5px solid hsl(0, 30%, 85%); }
.ba-card-yes { background: hsl(145, 30%, 95%); border: 1.5px solid hsl(145, 30%, 75%); }
.ba-label {
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.ba-label-no  { color: var(--danger); }
.ba-label-yes { color: var(--check); }
.ba-list { display: flex; flex-direction: column; gap: 10px; }
.ba-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: hsl(230, 14%, 22%);
  line-height: 1.4;
}
.ba-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.ba-dot-no  { background: var(--danger); color: #fff; }
.ba-dot-yes { background: var(--check);  color: #fff; }

/* ================================================
   PARA QUEM E
   ================================================ */
.forwho-section { background: var(--dark); padding: 72px 24px; }
.forwho-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.forwho-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 600px) { .forwho-grid { grid-template-columns: 1fr; } }
.forwho-card {
  background: var(--card-dark);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  border: 1px solid hsl(230, 20%, 22%);
}
.forwho-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.forwho-card p {
  font-size: 0.88rem;
  color: hsl(230, 10%, 68%);
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
}
.forwho-card p strong { color: #fff; font-weight: 700; }

/* ================================================
   FEATURES
   ================================================ */
.features-section { background: var(--light); padding: 72px 24px; }
.features-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
.feature-card {
  background: #fff;
  border: 1px solid hsl(230, 15%, 90%);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
}
.feature-icon-box { font-size: 1.8rem; margin-bottom: 10px; }
.feature-card h3 {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 0.76rem;
  color: hsl(230, 14%, 42%);
  line-height: 1.5;
}

/* ================================================
   URGENCIA
   ================================================ */
.urgency-section { background: var(--dark); padding: 0 24px 72px; }
.urgency-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card-dark);
  border-radius: 20px;
  padding: 44px 36px;
  text-align: center;
  border: 1px solid hsl(230, 20%, 25%);
}
@media (max-width: 480px) { .urgency-card { padding: 32px 20px; } }
.urgency-card h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-top: 20px;
  text-transform: uppercase;
}
.urgency-card h3 strong { color: var(--accent); }
.urgency-desc {
  color: hsl(230, 10%, 68%);
  margin-top: 12px;
  font-size: 0.95rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.payment-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: hsl(230, 10%, 52%);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ================================================
   DEPOIMENTOS
   ================================================ */
.testimonials-section { background: var(--dark); padding: 10px 0 72px; }
.testimonials-section .test-header { padding: 0 24px 36px; text-align: center; }
.test-track {
  display: flex;
  gap: 14px;
  animation: scroll-l 28s linear infinite;
  width: max-content;
}
.test-item { flex-shrink: 0; width: 260px; border-radius: 12px; overflow: hidden; }
.test-item img { width: 100%; height: auto; }

/* ================================================
   ENTREGAVEIS
   ================================================ */
.deliverables-section { background: var(--dark); padding: 72px 24px; }
.deliverables-inner { max-width: 720px; margin: 0 auto; }
.deliverables-box {
  background: var(--card-dark);
  border-radius: 20px;
  padding: 32px 28px;
  margin-top: 36px;
  border: 1px solid hsl(230, 20%, 25%);
}
.del-tag {
  display: inline-block;
  background: var(--accent);
  color: hsl(230, 35%, 10%);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.del-mockup { width: 100%; max-width: 440px; margin: 0 auto 24px; border-radius: 10px; }
.del-list { display: flex; flex-direction: column; gap: 12px; }
.del-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: hsl(230, 10%, 78%);
  line-height: 1.4;
}
.bonus-bridge {
  text-align: center;
  margin-top: 52px;
  padding: 36px 24px;
}
.bonus-bridge h3 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 12px;
}
.bonus-bridge h3 strong { color: var(--accent); }
.bonus-bridge p {
  color: hsl(230, 10%, 62%);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* ================================================
   BONUS
   ================================================ */
.bonus-section { background: var(--dark); padding: 0 24px 80px; }
.bonus-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .bonus-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}
.bonus-card {
  background: var(--card-dark);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid hsl(230, 20%, 25%);
  text-align: left;
}
.bonus-card-img { width: 100%; height: auto; }
.bonus-card-body { padding: 20px 18px; }
.bonus-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.bonus-card-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}
.bonus-card-desc {
  font-size: 0.8rem;
  color: hsl(230, 10%, 62%);
  line-height: 1.5;
  margin-bottom: 12px;
}
.bonus-value { font-size: 0.8rem; font-weight: 700; color: hsl(230, 10%, 52%); }
.riscado { text-decoration: line-through; color: var(--danger); margin-right: 6px; }
.gratis {
  background: var(--check);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 2px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ================================================
   URGENCIA VERMELHA
   ================================================ */
.red-urgency-section {
  background: var(--danger);
  padding: 28px 24px;
}
.red-urgency-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.red-urgency-clock { font-size: 1.3rem; flex-shrink: 0; }
.red-urgency-title {
  font-size: clamp(0.82rem, 2vw, 1rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}
.red-urgency-cta {
  display: inline-block;
  background: #fff;
  color: hsl(0, 80%, 38%);
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ================================================
   PLANOS
   ================================================ */
.plans-section { background: var(--dark); padding: 72px 24px; }
.plans-inner { max-width: 900px; margin: 0 auto; }
.plans-urgency-bar {
  background: var(--danger);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  text-align: center;
  padding: 14px 24px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  align-items: start;
}
@media (max-width: 700px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}
.plan-basic {
  background: hsl(230, 10%, 95%);
  border-radius: 20px;
  padding: 28px 24px;
}
.plan-complete {
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 28px 24px;
}
.plan-name {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(230, 14%, 42%);
  text-align: center;
  margin-bottom: 16px;
}
.plan-badge-top {
  display: block;
  width: 100%;
  background: var(--accent);
  color: hsl(230, 35%, 10%);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan-badge-danger {
  display: block;
  width: 100%;
  background: var(--danger);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.plan-img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 18px;
  border-radius: 8px;
}
.plan-basic .plan-img { max-width: 220px; }
.plan-incl-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(230, 14%, 40%);
  margin-bottom: 12px;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 22px;
}
.plan-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.84rem;
  font-weight: 600;
  color: hsl(230, 14%, 22%);
  padding: 9px 0;
  border-bottom: 1px solid hsl(230, 10%, 88%);
  line-height: 1.4;
}
.plan-feat-item:last-child { border-bottom: none; padding-bottom: 0; }
.plan-feat-item.gift { font-weight: 700; }
.plan-feat-riscado {
  color: hsl(230, 10%, 60%);
  font-size: 0.82rem;
  padding: 9px 0;
  border-bottom: 1px solid hsl(230, 10%, 88%);
  display: flex;
  gap: 6px;
  align-items: center;
}
.plan-price-box {
  padding: 14px 0;
  text-align: center;
  margin-bottom: 18px;
}
.price-from {
  font-size: 0.82rem;
  color: var(--danger);
  font-weight: 700;
  text-decoration: line-through;
  display: block;
}
.price-main {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1FAD6B;
  display: block;
  line-height: 1;
  margin: 4px 0;
}
.price-inst {
  font-size: 0.82rem;
  color: hsl(0, 0%, 12%);
  font-weight: 800;
  display: block;
}
.price-save {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1FAD6B;
  display: block;
  margin-top: 4px;
}
.plan-cta {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  border: none;
  cursor: pointer;
  line-height: 1.3;
}
.plan-cta-basic    { background: hsl(230, 12%, 38%); color: #fff; }
.plan-cta-complete { background: var(--check); color: #fff; animation: pulse-cta 1.4s ease-in-out infinite; }
.plan-urgency {
  text-align: center;
  color: var(--danger);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 14px;
  line-height: 1.4;
}
.plan-guarantee-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: hsl(230, 14%, 40%);
  margin-top: 16px;
  margin-bottom: 4px;
}
.hotmart-seal { display: block; margin: 8px auto 0; max-width: 160px; }
.plan-popular-note {
  text-align: center;
  margin-top: 18px;
  font-size: 0.82rem;
  color: #DD2C2C;
  font-weight: 700;
  background: hsl(0, 80%, 97%);
  border: 2.5px solid hsl(0, 72%, 78%);
  border-radius: 10px;
  padding: 12px 16px 14px;
  line-height: 1.5;
}
.arrow-down {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  animation: bounce-arrow 0.7s ease-in-out infinite alternate;
}
@keyframes bounce-arrow { 0% { transform: translateY(0); } 100% { transform: translateY(8px); } }

/* Circulo animado no preco */
.price-circle-wrap {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  margin: 6px 0;
}
.animated-circle { animation: wobble-circle 1.8s ease-in-out infinite alternate; }
.circle-path, .circle-path-delay {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.draw-active .circle-path {
  animation: drawCircle 1.5s ease-out forwards;
}
.draw-active .circle-path-delay {
  animation: drawCircle 1.5s ease-out forwards;
  animation-delay: 0.3s;
}
@keyframes drawCircle    { to { stroke-dashoffset: 0; } }
@keyframes wobble-circle {
  0%   { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.06, 0.96) rotate(2deg); }
}

/* ================================================
   GARANTIA
   ================================================ */
.guarantee-section { background: var(--light); padding: 72px 24px; }
.guarantee-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
  align-items: center;
}
@media (max-width: 600px) { .guarantee-inner { flex-direction: column; text-align: center; } }
.guarantee-seal { width: 160px; flex-shrink: 0; }
.guarantee-title {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 900;
  color: hsl(230, 22%, 14%);
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.3;
}
.guarantee-section p {
  font-size: 0.92rem;
  color: hsl(230, 14%, 30%);
  line-height: 1.7;
  margin-bottom: 12px;
}
.guarantee-risk {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--check);
  text-transform: uppercase;
}

/* ================================================
   COMO FUNCIONA O ACESSO
   ================================================ */
.steps-section { background: var(--light); padding: 72px 24px; }
.steps-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 700px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .steps-grid { grid-template-columns: 1fr; }
}
.step-card {
  background: #fff;
  border: 1px solid hsl(230, 20%, 88%);
  border-radius: 14px;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}
.step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--check);
  color: #fff;
  font-weight: 900;
  font-size: 0.8rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon { font-size: 2rem; }
.step-title { color: var(--dark); font-size: 0.9rem; font-weight: 800; margin: 0; text-transform: uppercase; }
.step-desc { color: hsl(230, 14%, 42%); font-size: 0.82rem; margin: 0; line-height: 1.5; }

/* ================================================
   FAQ
   ================================================ */
.faq-section { background: var(--dark); padding: 72px 24px; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid hsl(230, 20%, 22%); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  text-align: left;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.88rem;
  color: hsl(230, 10%, 68%);
  line-height: 1.7;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-a.open { max-height: 800px; padding-bottom: 18px; }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: hsl(230, 38%, 8%);
  padding: 40px 24px;
  text-align: center;
}
.footer-text {
  font-size: 0.75rem;
  color: hsl(230, 10%, 42%);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

/* ================================================
   MODAIS
   ================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 24px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  transform: translateY(24px);
  transition: transform .28s;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.modal-overlay.open .modal-card { transform: translateY(0); }
.modal-badge {
  background: var(--danger);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.modal-badge-exit { background: var(--dark); }
.modal-card-exit  { border-top: 3px solid var(--dark); }
.modal-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #111;
  line-height: 1.2;
  margin-bottom: 18px;
  text-transform: none;
  letter-spacing: 0;
}
.modal-bonus-box {
  background: hsl(230, 20%, 97%);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  text-align: left;
}
.modal-bonus-title {
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.modal-bonus-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.modal-bonus-list li {
  font-size: 0.78rem;
  color: #444;
  font-weight: 600;
  line-height: 1.3;
  padding-left: 14px;
  position: relative;
}
.modal-bonus-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--check);
  font-weight: 900;
}
.modal-price-box {
  background: hsl(150, 40%, 96%);
  border: 1px solid hsl(150, 30%, 82%);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.modal-price-from { font-size: 0.82rem; font-weight: 700; color: #999; text-decoration: line-through; }
.modal-price-main { font-size: 2.4rem; font-weight: 900; color: var(--check); line-height: 1; }
.modal-price-economia { font-size: 0.75rem; font-weight: 700; color: var(--check); }
@keyframes modal-cta-pulse {
  0%, 100% { transform: translateY(0);    box-shadow: 0 4px 18px rgba(31,173,107,.35); }
  50%       { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(31,173,107,.55); }
}
.modal-btn-sim {
  display: block;
  background: var(--check);
  color: #fff;
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 18px 24px;
  border-radius: 10px;
  margin-bottom: 12px;
  animation: modal-cta-pulse 1.6s ease-in-out infinite;
  line-height: 1.2;
}
.modal-btn-nao {
  background: none;
  border: none;
  cursor: pointer;
  color: #bbb;
  font-size: 0.75rem;
  text-decoration: underline;
  padding: 4px 8px;
  font-family: inherit;
  display: block;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .modal-card     { padding: 22px 16px 20px; }
  .modal-title    { font-size: 1.1rem; }
  .modal-btn-sim  { font-size: 0.82rem; padding: 15px 16px; }
}
