/* ══════════════════════════════════════
   PRICE — Plan cards
══════════════════════════════════════ */

.price-sec { padding: 100px 0; }

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 860px) { .plans-grid { grid-template-columns: 1fr; } }

.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  box-shadow: var(--shadow-sm);
}

.plan-intensivo {
  border-color: rgba(59,130,246,.22);
  box-shadow: 0 0 0 1px rgba(59,130,246,.06), 0 20px 80px rgba(59,130,246,.12);
}

.plan-intensivo:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(59,130,246,.15), 0 32px 100px rgba(59,130,246,.18);
}

.plan-intensivo::before { content: ''; display: block; height: 3px; background: linear-gradient(90deg, #0ea5e9, #3b82f6, #818cf8); }
.plan-extensivo::before { content: ''; display: block; height: 3px; background: linear-gradient(90deg, #d1d5db, #9ca3af, #d1d5db); }

/* Sold-out ribbon */
.ribbon {
  position: absolute;
  background: linear-gradient(90deg, #1d4ed8, #2563eb, #1d4ed8);
  color: #fff;
  font-family: var(--ffm);
  font-size: .58rem; font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
  line-height: 1.4;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(37,99,235,.3);
  pointer-events: none;
  white-space: nowrap;
}

.ribbon-tl { top: 28px; left: -42px; width: 180px; padding: 7px 0; transform: rotate(-45deg); transform-origin: center; }
.ribbon-br { bottom: 28px; right: -42px; width: 180px; padding: 7px 0; transform: rotate(-45deg); transform-origin: center; }

.plan-overlay { position: absolute; inset: 0; background: rgba(255,255,255,.4); z-index: 5; border-radius: 24px; pointer-events: none; }

.plan-top {
  padding: 32px 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.price-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -30%, rgba(59,130,246,.07), transparent 60%);
  pointer-events: none;
}

.price-glow-green { background: radial-gradient(ellipse at 50% -30%, rgba(22,163,74,.05), transparent 60%); }

.plan-badge-wrap { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }

.plan-tag {
  font-family: var(--ffm); font-size: .62rem; letter-spacing: .1em;
  color: var(--blue); background: var(--blued);
  border: 1px solid rgba(59,130,246,.18);
  border-radius: 50px; padding: 4px 14px;
  display: inline-block;
}

.plan-tag-green { color: var(--green); background: var(--greend); border-color: rgba(22,163,74,.22); }

.plan-hot {
  font-family: var(--ffm); font-size: .58rem; letter-spacing: .1em;
  background: rgba(220,38,38,.08); color: var(--red);
  border: 1px solid rgba(220,38,38,.2);
  border-radius: 50px; padding: 4px 12px;
  animation: ldot 2s infinite;
}

.plan-title { font-family: var(--ffh); font-weight: 800; font-size: clamp(1.2rem,2.5vw,1.6rem); color: var(--text); letter-spacing: -.02em; margin-bottom: 6px; }
.plan-sub   { color: var(--muted); font-size: .82rem; line-height: 1.5; }

.plan-rows { padding: 0 32px; flex: 1; }

.plan-rows .pr-row {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px; font-size: .85rem;
}

.plan-rows .pr-row:last-child { border-bottom: none; }

.plan-bot { padding: 24px 32px 32px; text-align: center; border-top: 1px solid var(--border); }

/* Strikethrough animation */
.was-wrap { position: relative; display: inline-block; margin-bottom: 12px; }
.was-txt  { font-size: .85rem; color: var(--subtle); font-family: var(--ffm); }

.was-line {
  position: absolute; top: 50%; left: 0;
  height: 1.5px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s .3s cubic-bezier(.22, 1, .36, 1);
  width: 100%;
}

.was-wrap.cut .was-line { transform: scaleX(1); }

.price-row { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 6px; }
.p12x      { font-family: var(--ffm); font-size: .7rem; color: var(--muted); }

.p-big {
  font-family: var(--ffh); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text); line-height: 1; letter-spacing: -.04em;
}

.p-big sup { font-size: .55em; vertical-align: super; }
.p-pix { font-family: var(--ffm); font-size: .72rem; color: var(--muted); margin-bottom: 6px; }
.p-guar { font-family: var(--ffm); font-size: .65rem; color: var(--muted); margin-top: 14px; }

@media (max-width: 520px) {
  .plan-top, .plan-rows, .plan-bot { padding-left: 16px; padding-right: 16px; }
}


/* ══════════════════════════════════════
   GUARANTEE
══════════════════════════════════════ */

.guar-sec { padding: 80px 0; }

.guar-card {
  background: linear-gradient(135deg, rgba(22,163,74,.04), rgba(34,197,94,.02));
  border: 1px solid rgba(34,197,94,.2);
  border-radius: 24px;
  padding: 52px;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 40px rgba(22,163,74,.08);
}

.guar-card::before {
  content: '';
  position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(34,197,94,.06), transparent);
  pointer-events: none;
}

.guar-icon {
  width: 72px; height: 72px;
  border-radius: 22px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}

.guar-h {
  font-family: var(--ffh); font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -.03em; margin-bottom: 16px;
}

.guar-p { color: var(--muted); font-size: .92rem; line-height: 1.85; max-width: 600px; margin: 0 auto; }

@media (max-width: 640px) { .guar-card { padding: 32px 20px; } }


/* ══════════════════════════════════════
   FAQ — Animated accordion
══════════════════════════════════════ */

.faq-sec { padding: 100px 0; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .2s;
  box-shadow: var(--shadow-sm);
}

.faq-item:hover { border-color: rgba(59,130,246,.15); transform: translateX(3px); }

.faq-item[open] {
  border-color: rgba(59,130,246,.25);
  box-shadow: 0 8px 32px rgba(59,130,246,.1), 0 2px 8px rgba(59,130,246,.06);
  transform: translateX(0);
}

.faq-sum {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600; font-size: .92rem; color: var(--text);
  gap: 14px;
  transition: background .2s;
  list-style: none;
}

.faq-sum::marker,
.faq-sum::-webkit-details-marker { display: none; }

.faq-sum:hover { background: rgba(59,130,246,.03); }

.faq-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--blue);
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .25s, border-color .25s;
  background: var(--bg);
  font-style: normal; font-family: var(--ffh); font-weight: 700;
}

.faq-item[open] .faq-ico {
  transform: rotate(45deg);
  background: var(--blued);
  border-color: rgba(59,130,246,.35);
}

.faq-body {
  padding: 16px 24px 20px;
  color: var(--muted); font-size: .88rem; line-height: 1.85;
  border-top: 1px solid var(--border);
  background: rgba(59,130,246,.02);
}


/* ══════════════════════════════════════
   FINAL CTA
══════════════════════════════════════ */

.final-sec {
  padding: 140px 0;
  position: relative; overflow: hidden;
  text-align: center;
}

.final-glow {
  position: absolute; top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(59,130,246,.08) 0%, transparent 65%);
  pointer-events: none;
}

.final-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(59,130,246,.1) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black, transparent);
  mask-image:         radial-gradient(ellipse 70% 80% at 50% 50%, black, transparent);
  opacity: .5;
}

.final-eye {
  font-family: var(--ffm);
  font-size: .68rem; color: var(--blue);
  letter-spacing: .1em;
  margin-bottom: 20px;
  display: block;
}

.final-h {
  font-family: var(--ffh); font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.06; letter-spacing: -.04em;
  color: var(--text); margin-bottom: 20px;
}

.final-sub {
  color: var(--muted); font-size: .96rem;
  max-width: 480px; margin: 0 auto 48px;
  line-height: 1.85;
}

.final-btns { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.final-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; margin-top: 24px;
}

.fti {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--ffm); font-size: .68rem; color: var(--muted);
}

.fti svg { flex-shrink: 0; }


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */

footer {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.foot-in {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}

.foot-logo img { height: 24px; width: auto; object-fit: contain; display: block; }
.foot-logo span { font-family: var(--ffh); font-weight: 800; font-size: 1.1rem; color: var(--text); }
.foot-logo span span { color: var(--blueb); }

.foot-links { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-links a { font-size: .8rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: var(--text); }

.foot-copy { font-size: .72rem; color: var(--subtle); }

@media (max-width: 640px) {
  .foot-in { flex-direction: column; text-align: center; }
  .foot-links { justify-content: center; }
}


/* ══════════════════════════════════════
   MOBILE — Global overrides
══════════════════════════════════════ */

@media (max-width: 640px) {
  .about-sec, .tri-sec, .quem-sec, .feat-sec,
  .mod-sec, .price-sec, .guar-sec, .faq-sec,
  .final-sec, .stats-sec, .anchor-sec {
    padding: 72px 0;
  }
}
