/* ─────────────────────────────────────────────
   BLOCOS 11-13 + Footer
   Garantia · FAQ · Pré-CTA dramático · Footer corporativo
   ───────────────────────────────────────────── */

/* ── BLOCO 11 — GARANTIA ──────────────────── */

.garantia {
  background: var(--bg);
  padding: clamp(28px, 3vw, 40px) 0;
  border-top: 1px solid rgba(10, 10, 18, 0.06);
  border-bottom: 1px solid rgba(10, 10, 18, 0.06);
}

.garantia__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  text-align: center;
}

.garantia__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--purple);
}

.garantia__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.garantia__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-2);
  margin: 0;
  max-width: 720px;
}

.garantia__text b {
  color: var(--text);
  font-weight: 550;
}

@media (max-width: 640px) {
  .garantia__inner {
    flex-direction: column;
    gap: 12px;
  }
}

/* ── GARANTIA em destaque (variante hero) ──────────── */
.garantia--hero {
  padding: clamp(48px, 6vw, 72px) 0;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.04) 0%, rgba(226, 82, 45, 0.04) 100%);
}

.garantia--hero .garantia__inner {
  background: var(--bg);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 40px) clamp(24px, 3vw, 48px);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.6) inset,
    0 12px 40px -12px rgba(124, 58, 237, 0.18),
    0 0 0 1px rgba(124, 58, 237, 0.12);
  max-width: 820px;
  margin: 0 auto;
}

.garantia--hero .garantia__icon {
  width: 36px;
  height: 36px;
}

.garantia--hero .garantia__text {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--text);
  max-width: none;
}

.garantia--hero .garantia__text b {
  font-weight: 600;
}

.garantia__help {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.garantia__help-lbl {
  font-size: 15px;
  color: var(--text-2);
  font-weight: 500;
}

.garantia__help-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), background 200ms var(--ease-out);
  box-shadow: 0 6px 20px -6px rgba(37, 211, 102, 0.5);
}

.garantia__help-cta:hover {
  background: #1FB855;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.6);
}

@media (max-width: 640px) {
  .garantia__help {
    flex-direction: column;
    gap: 12px;
  }
}

/* ── WhatsApp flutuante (todas as páginas) ──────────── */
.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 20px -4px rgba(37, 211, 102, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), background 200ms var(--ease-out);
  text-decoration: none;
}

.wa-float:hover {
  background: #1FB855;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 28px -6px rgba(37, 211, 102, 0.7);
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(0.95); opacity: 0.7; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; }
}

/* ── LEAD CAPTURE MODAL (clique em plano → WhatsApp antes do checkout) ── */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 32px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease-out);
}

.lead-modal[hidden] { display: none; }

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

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 18, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lead-modal__card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--bg);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 36px) clamp(24px, 3vw, 32px);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.6) inset,
    0 24px 60px -16px rgba(124, 58, 237, 0.35),
    0 0 0 1px rgba(124, 58, 237, 0.18);
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 240ms var(--ease-out);
}

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

.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 10, 18, 0.04);
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 180ms, color 180ms;
}

.lead-modal__close:hover {
  background: rgba(10, 10, 18, 0.08);
  color: var(--text);
}

.lead-modal__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(124, 58, 237, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lead-modal__eyebrow b {
  font-weight: 700;
  color: var(--text);
}

.lead-modal__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 12px;
}

.lead-modal__sub {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-2);
  margin: 0 0 24px;
}

.lead-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.lead-modal__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.lead-modal__input-wrap {
  display: flex;
  align-items: center;
  background: var(--bg-2);
  border: 1.5px solid rgba(10, 10, 18, 0.1);
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color 180ms, box-shadow 180ms;
}

.lead-modal__input-wrap:focus-within {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.lead-modal__input-prefix {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-2);
  padding-right: 10px;
  border-right: 1px solid rgba(10, 10, 18, 0.1);
  margin-right: 10px;
}

.lead-modal__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 14px 0;
  outline: none;
  font-variant-numeric: tabular-nums;
}

.lead-modal__input::placeholder {
  color: rgba(10, 10, 18, 0.35);
  font-weight: 400;
}

.lead-modal__error {
  font-size: 13px;
  color: #DC2626;
  font-weight: 500;
  margin-top: -4px;
}

.lead-modal__submit {
  margin-top: 4px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: var(--purple);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.18) inset,
    0 8px 24px -8px rgba(124, 58, 237, 0.45),
    0 0 0 1px rgba(124, 58, 237, 0.6);
  transition: transform 180ms, box-shadow 180ms, background 180ms;
}

.lead-modal__submit:hover {
  transform: translateY(-1px);
  background: #6D28D9;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.2) inset,
    0 12px 28px -8px rgba(124, 58, 237, 0.55),
    0 0 0 1px rgba(124, 58, 237, 0.7);
}

.lead-modal__foot {
  text-align: center;
  font-size: 12px;
  color: var(--text-2);
  margin-top: 8px;
}

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

/* ── BLOCO 12 — FAQ ──────────────────── */

.faq {
  background: var(--bg);
  padding: clamp(80px, 10vw, 140px) 0;
}

.faq__head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.faq__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 22px;
}

.faq__eyebrow::before {
  content: "● ";
  color: var(--purple);
}

.faq h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0;
}

.faq h2 .serif-italic {
  background: linear-gradient(120deg, var(--purple) 0%, var(--terracota) 90%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid rgba(10, 10, 18, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(10, 10, 18, 0.1);
}

.faq-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 450;
  font-variation-settings: "opsz" 100, "SOFT" 50;
  color: var(--text);
  letter-spacing: -0.012em;
  cursor: pointer;
  transition: color 200ms;
}

.faq-item__head:hover {
  color: var(--purple);
}

.faq-item__plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 10, 18, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 320ms var(--ease-out), border-color 280ms, background 280ms;
}

.faq-item__plus::before,
.faq-item__plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 320ms var(--ease-out), background 280ms;
}

.faq-item__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__plus {
  background: var(--purple);
  border-color: var(--purple);
  transform: rotate(135deg);
}

.faq-item.is-open .faq-item__plus::before,
.faq-item.is-open .faq-item__plus::after {
  background: var(--bg);
}

.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms var(--ease-out);
}

.faq-item.is-open .faq-item__body {
  grid-template-rows: 1fr;
}

.faq-item__inner {
  overflow: hidden;
}

.faq-item__answer {
  padding: 0 4px 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 640px;
  margin: 0;
}

/* ── BLOCO 13 — PRÉ-CTA DRAMÁTICO ──────────── */

.precta {
  position: relative;
  background: var(--ink);
  color: var(--text-on-ink);
  padding: clamp(120px, 14vw, 200px) 0;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.precta::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.45) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(226, 82, 45, 0.18) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: meshDrift 22s ease-in-out infinite alternate;
  filter: blur(50px);
  opacity: 0.9;
}

.precta__phrase {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-on-ink);
  max-width: 1080px;
  margin: 0 auto 64px;
}

.precta__phrase .strike {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.precta__phrase .strike::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 56%;
  height: 5px;
  background: var(--text-on-ink);
  border-radius: 999px;
  transform: scaleX(0) rotate(-3deg);
  transform-origin: left center;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.precta.is-revealed .precta__phrase .strike::after {
  transform: scaleX(1) rotate(-3deg);
}

.precta__phrase .direction {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  background: linear-gradient(120deg, #B388FF 0%, var(--terracota) 90%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.precta__brand {
  margin: 56px auto 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.precta__brand-mark {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.02em;
  color: var(--text-on-ink);
}

.precta__brand-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 250, 247, 0.55);
}

.precta__cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 60px;
  padding: 0 32px;
  background: var(--bg);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: transform 240ms var(--ease-out), box-shadow 240ms, background 240ms;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.6) inset,
    0 12px 36px -8px rgba(124, 58, 237, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.precta__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.7) inset,
    0 18px 48px -10px rgba(124, 58, 237, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.18);
}

.precta__cta .arrow {
  transition: transform 240ms var(--ease-out);
}

.precta__cta:hover .arrow {
  transform: translateX(4px);
}

.precta__foot {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 250, 247, 0.45);
}

/* ── FOOTER ──────────────────── */

.foot {
  background: var(--ink-2);
  color: rgba(251, 250, 247, 0.7);
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.foot__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.foot__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.foot__brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.foot__brand-row .mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, #8B47F2 0%, var(--purple) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px -2px rgba(124, 58, 237, 0.4);
}

.foot__brand-row span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  font-variation-settings: "opsz" 60;
  color: var(--text-on-ink);
  letter-spacing: -0.02em;
}

.foot__tag {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(251, 250, 247, 0.55);
  max-width: 280px;
  margin: 0;
}

.foot__social {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.foot__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(251, 250, 247, 0.65);
  transition: background 200ms, color 200ms, border-color 200ms;
}

.foot__social a:hover {
  background: rgba(124, 58, 237, 0.18);
  border-color: rgba(124, 58, 237, 0.4);
  color: var(--text-on-ink);
}

.foot__social svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.foot__col h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 250, 247, 0.45);
  font-weight: 500;
  margin: 0 0 18px;
}

.foot__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot__col a {
  font-size: 13.5px;
  color: rgba(251, 250, 247, 0.7);
  transition: color 180ms;
}

.foot__col a:hover {
  color: var(--text-on-ink);
}

.foot__corp {
  padding: 28px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(251, 250, 247, 0.4);
  line-height: 1.5;
}

.foot__corp .placeholder {
  color: rgba(124, 58, 237, 0.7);
}

.foot__bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(251, 250, 247, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}

.foot__abacate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  color: rgba(251, 250, 247, 0.6);
}

@media (max-width: 920px) {
  .foot__top {
    grid-template-columns: 1fr 1fr;
  }
  .foot__corp {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .foot__top {
    grid-template-columns: 1fr;
  }
  .foot__corp {
    grid-template-columns: 1fr;
  }
  .foot__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
