/* ===================================================================
 * V5 — Hard Conversion (minimalista, vanilla, foco extremo)
 * Reaproveita tokens.css + base.css. Sem framework, carregamento rápido.
 * =================================================================== */

/* ===== Barra HML (mesma estética das outras paginas vanilla) ===== */
.hml-bar {
  background: var(--color-bg-dark);
  border-bottom: 2px solid var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  position: sticky;
  top: 0;
  z-index: 10000;
  padding: 8px 16px;
}
.hml-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.hml-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
}
.hml-tag::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 6px var(--color-primary);
}
.hml-current { font-size: 13px; color: #d1d1d1; }
.hml-current strong { color: var(--color-primary); }
.hml-menu { position: relative; }
.hml-menu > summary {
  list-style: none;
  cursor: pointer;
  padding: 6px 14px;
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 12px;
  user-select: none;
  transition: background var(--t-fast), color var(--t-fast);
}
.hml-menu > summary::-webkit-details-marker { display: none; }
.hml-menu > summary:hover,
.hml-menu[open] > summary { background: var(--color-primary); color: #fff; }
.hml-menu ul {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #fff;
  color: var(--color-text);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  padding: 6px;
  list-style: none;
  margin: 0;
}
.hml-menu ul a {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 13px;
}
.hml-menu ul a:hover { background: var(--color-primary-light); }
.hml-menu ul a.is-active { background: var(--color-primary-light); color: var(--color-primary); }
.hml-menu ul a small { color: #777; font-size: 11px; font-weight: 400; }

@media (max-width: 540px) {
  .hml-bar { font-size: 12px; padding: 6px 12px; }
  .hml-bar-inner { gap: 8px; }
  .hml-tag span { display: none; }
  .hml-current { font-size: 12px; }
}

/* ===== HARD CONVERSION HERO ===== */
.hc-hero {
  background:
    radial-gradient(ellipse at top, rgba(255,107,0,0.08), transparent 60%),
    var(--color-bg);
  padding: 56px 0 40px;
  text-align: center;
}
.hc-hero .container { max-width: 720px; }

.hc-hero .urgency {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 18px;
}

.hc-hero h1 {
  font-size: clamp(34px, 7vw, 60px);
  line-height: 1.04;
  margin-bottom: 18px;
}

.hc-hero .lead {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.5;
}

/* Preço dominante */
.hc-price {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  background: #fff;
  border: 3px solid var(--color-primary);
  border-radius: 24px;
  padding: 20px 32px;
  box-shadow: 0 12px 32px rgba(255,107,0,0.20);
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.hc-price .old {
  font-size: 22px;
  color: var(--color-text-secondary);
  text-decoration: line-through;
}
.hc-price .new {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(54px, 11vw, 84px);
  color: var(--color-primary);
  line-height: 1;
}

/* Formulário enxuto */
.hc-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  text-align: left;
}
.hc-form h2 {
  font-size: 22px;
  margin-bottom: 16px;
  text-align: center;
}
.hc-form .field { margin-bottom: 12px; }
.hc-form .field input {
  width: 100%;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.hc-form .field input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-focus);
}
.hc-form .field.has-error input { border-color: var(--color-error); }
.hc-form .field-error {
  display: none;
  color: var(--color-error);
  font-size: 13px;
  margin-top: 4px;
}
.hc-form .field.has-error .field-error { display: block; }
.hc-form [data-cnpj-status] {
  display: block;
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-top: 4px;
  min-height: 14px;
}

.hc-cta {
  display: block;
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  border: 0;
  border-radius: 14px;
  padding: 22px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: var(--shadow-cta);
  transition: background var(--t-fast), transform var(--t-fast);
}
.hc-cta:hover { background: var(--color-primary-dark); }
.hc-cta:active { transform: translateY(1px); }

.hc-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--color-text-secondary);
}
.hc-trust li { list-style: none; display: inline-flex; align-items: center; gap: 6px; }
.hc-trust svg { color: var(--color-success); flex-shrink: 0; }

/* Garantia */
.hc-guarantee {
  background: var(--color-bg-dark);
  color: #fff;
  text-align: center;
  padding: 48px 24px;
}
.hc-guarantee h2 {
  font-size: clamp(26px, 4.5vw, 38px);
  color: #fff;
  margin-bottom: 12px;
}
.hc-guarantee p {
  max-width: 600px;
  margin: 0 auto;
  color: #c9c9c9;
  font-size: 17px;
  line-height: 1.5;
}
.hc-guarantee strong { color: var(--color-primary); }

/* FAQ minimalista (3 itens) */
.hc-faq {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px;
}
.hc-faq h2 { text-align: center; margin-bottom: 24px; }
.hc-faq details {
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}
.hc-faq details:last-child { border-bottom: 0; }
.hc-faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.hc-faq summary::-webkit-details-marker { display: none; }
.hc-faq summary::after {
  content: "+";
  color: var(--color-primary);
  font-weight: 900;
  font-size: 22px;
}
.hc-faq details[open] summary::after { content: "−"; }
.hc-faq .faq-body { color: var(--color-text-secondary); margin-top: 8px; }

/* Footer minimal */
.hc-footer {
  background: var(--color-bg-dark);
  color: #777;
  text-align: center;
  padding: 24px;
  font-size: 12px;
}
.hc-footer a { color: var(--color-primary); }

/* ===== STICKY MOBILE CTA ===== */
.hc-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  padding: 18px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  z-index: 9998;
}
.hc-sticky-cta:hover { background: var(--color-primary-dark); color: #fff; text-decoration: none; }
@media (max-width: 768px) {
  .hc-sticky-cta { display: block; }
  body { padding-bottom: 64px; }
}

/* Reduce motion */
@keyframes shake-v5 { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-4px)} 75%{transform:translateX(4px)} }
.shake { animation: shake-v5 300ms ease; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
