/* =========================================================
   1. TOKENS / VARIÁVEIS
========================================================= */
:root {
  --color-primary: #6957b8;
  --color-primary-dark: #5644a1;
  --color-primary-light: #f3f0fb;

  --color-secondary: #ffffff;
  --color-bg: #f7f5fa;
  --color-surface: #ffffff;

  --color-text: #231f35;
  --color-text-soft: #5e5875;
  --color-border: #ddd7ee;

  --color-success-bg: #f2f8f1;
  --color-success-border: #b9d7b3;
  --color-danger-bg: #fdf3f3;
  --color-danger-border: #e8b5b5;

  --shadow-soft: 0 20px 50px rgba(55, 35, 105, 0.08);
  --shadow-card: 0 12px 30px rgba(55, 35, 105, 0.08);

  --radius-xl: 28px;
  --radius-lg: 20px;

  --container: 1180px;
  --container-narrow: 820px;

  --transition: 180ms ease;
}

/* =========================================================
   2. RESET / BASE
========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* =========================================================
   3. TIPOGRAFIA
========================================================= */
.section-heading h2,
h1,
h2,
h3,
summary {
  font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: -0.03em;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.95;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

p {
  font-size: 1.05rem;
  color: var(--color-text-soft);
}

.section-brand p {
  color: rgba(255, 255, 255, 0.9);
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.85);
}

/* =========================================================
   4. LAYOUT / HELPERS
========================================================= */
.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100%, var(--container-narrow));
}

.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section {
  padding: 96px 0;
}

.section-light {
  background: var(--color-bg);
}

.section-brand {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
}

.section-brand-light {
  background: linear-gradient(180deg, #efeafb 0%, #f7f5fa 100%);
}

.section-contrast {
  background: var(--color-surface);
}

.section-transparent {
  background: transparent !important;
}

.section-heading {
  margin-bottom: 42px;
}

/* =========================================================
   5. FLUXO DE FUNDOS CONTÍNUOS
========================================================= */
.flow-section {
  position: relative;
}

.flow-section-primary {
  background:
    radial-gradient(circle at top left, rgba(105, 87, 184, 0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(105, 87, 184, 0.08), transparent 30%),
    linear-gradient(180deg, #f7f5fa 0%, #f3effc 48%, #f7f5fa 100%);
}

.flow-section-secondary {
  background:
    radial-gradient(circle at top left, rgba(105, 87, 184, 0.06), transparent 24%),
    radial-gradient(circle at bottom right, rgba(105, 87, 184, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f5fa 0%, #f3effc 38%, #f1ecfb 65%, #f7f5fa 100%);
}

.flow-section-primary .hero,
.flow-section-primary .stats-strip,
.flow-section-primary .section-transparent,
.flow-section-secondary .section-transparent {
  background: transparent !important;
}

#plano.section,
#transformacao.section,
#provas.section,
#investimento.section,
#faq.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

/* =========================================================
   6. HEADER
========================================================= */
/* Mantive "static" como estava no seu arquivo atual.
   Se quiser o topo fixo, troque para: position: sticky; */
.topbar {
  position: static;
  top: 0;
  z-index: 20;
  background: rgba(247, 245, 250, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(105, 87, 184, 0.08);
  transition: box-shadow var(--transition), background var(--transition);
}

.topbar-scrolled {
  box-shadow: 0 14px 28px rgba(55, 35, 105, 0.08);
  background: rgba(247, 245, 250, 0.97);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand img {
  width: 108px;
}

/* =========================================================
   7. BOTÕES
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 14px 24px rgba(105, 87, 184, 0.22);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: rgba(105, 87, 184, 0.18);
}

.btn-secondary:hover {
  background: rgba(105, 87, 184, 0.06);
}

.btn-full {
  width: 100%;
}

.btn-cta-light {
  background: #ffffff;
  color: var(--color-primary);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}

.btn-primary.btn-cta-light:hover {
  background: #f3effc;
  color: var(--color-primary-dark);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.btn-cta-light:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.28);
  outline-offset: 3px;
}

/* =========================================================
   8. HERO
========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 48px;
  background: transparent;
}

.hero-decor {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.55;
}

.hero-decor-1 {
  width: 260px;
  height: 260px;
  background: rgba(105, 87, 184, 0.22);
  top: -40px;
  left: -60px;
}

.hero-decor-2 {
  width: 240px;
  height: 240px;
  background: rgba(86, 68, 161, 0.18);
  right: -40px;
  top: 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 440px);
  gap: 42px;
  align-items: start;
}

.hero-copy {
  padding-top: 42px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(105, 87, 184, 0.08);
  border: 1px solid rgba(105, 87, 184, 0.10);
  color: var(--color-primary);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-description {
  max-width: 670px;
  font-size: 1.12rem;
}

.hero-highlights {
  padding: 0;
  margin: 28px 0 34px;
  list-style: none;
  display: grid;
  gap: 14px;
}

.hero-highlights li {
  position: relative;
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 600;
}

.feature-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding-left: 0 !important;
}

.hero-highlights li.feature-item::before {
  display: none;
}

.feature-icon,
.guide-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(105, 87, 184, 0.10);
  color: var(--color-primary);
  flex-shrink: 0;
}

.feature-icon svg,
.guide-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   9. FORMULÁRIO BASE
========================================================= */
.form-card {
  background: var(--color-surface);
  border: 1px solid rgba(105, 87, 184, 0.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.form-eyebrow {
  margin-bottom: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

.form-helper {
  margin: -6px 0 18px;
  font-size: 0.95rem;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(105, 87, 184, 0.7);
  box-shadow: 0 0 0 4px rgba(105, 87, 184, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 118px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.92rem;
  color: var(--color-text-soft);
}

.checkbox-group input {
  margin-top: 4px;
}

.form-feedback {
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.94rem;
  font-weight: 600;
}

.form-feedback-error {
  background: #fdf3f3;
  border: 1px solid #e8b5b5;
  color: #7b2f2f;
}

.form-feedback-success {
  background: #f2f8f1;
  border: 1px solid #b9d7b3;
  color: #2f6a37;
}

/* =========================================================
   10. CARD / HOVER
========================================================= */
.premium-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(55, 35, 105, 0.12);
  border-color: rgba(105, 87, 184, 0.22);
}

/* =========================================================
   11. MÍDIA HERO (IMAGEM / VÍDEO)
========================================================= */
.hero-image-wrap {
  margin-top: 168px;
}

.hero-image-card,
.hero-video-card {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.image-card {
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(55, 35, 105, 0.14);
  object-fit: cover;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.image-card:hover {
  transform: scale(1.01);
  box-shadow: 0 28px 60px rgba(55, 35, 105, 0.16);
}

.floating-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 250px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px rgba(55, 35, 105, 0.12);
  border: 1px solid rgba(105, 87, 184, 0.12);
}

.floating-note strong {
  display: block;
  font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  margin-bottom: 4px;
}

.floating-note span {
  display: block;
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(55, 35, 105, 0.14);
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
   12. STATS / PROVAS CURTAS
========================================================= */
.stats-strip {
  padding: 0 0 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(105, 87, 184, 0.12);
  border-radius: 22px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-card strong {
  display: block;
  font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.stat-card span {
  display: block;
  color: var(--color-text-soft);
  font-size: 0.96rem;
  font-weight: 600;
}

.pain-points,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.pain-card,
.proof-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
  color: var(--color-text);
  font-weight: 600;
}

/* =========================================================
   13. GRID BASE DAS SEÇÕES
========================================================= */
.guide-grid,
.steps-grid,
.formats-grid,
.contrast-grid,
.faq-grid {
  display: grid;
  gap: 22px;
}

/* =========================================================
   14. SEÇÃO GUIA
========================================================= */
.guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-card {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 28px;
  box-shadow: 0 16px 30px rgba(31, 18, 66, 0.12);
}

.guide-card .guide-icon {
  margin-bottom: 18px;
}

.section-brand .guide-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.guide-card p,
.guide-card h3 {
  color: #fff;
}

/* =========================================================
   15. PASSOS
========================================================= */
.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 18px;
}

/* =========================================================
   16. CONTRASTE / TRANSFORMAÇÃO
========================================================= */
.contrast-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
}

.contrast-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
}

.contrast-card ul,
.format-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.contrast-card li,
.format-card li {
  margin-bottom: 10px;
  color: var(--color-text);
}

.contrast-card-positive {
  background: var(--color-success-bg);
  border-color: var(--color-success-border);
}

.contrast-card-negative {
  background: var(--color-danger-bg);
  border-color: var(--color-danger-border);
}

.closing-statement {
  margin: 30px auto 0;
  max-width: 900px;
  text-align: center;
  font-size: 1.08rem;
  color: var(--color-text);
  font-weight: 700;
}

/* =========================================================
   17. GALERIA / PRODUTO
========================================================= */
.gallery-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  margin-top: 32px;
}

.gallery-main {
  height: 100%;
  min-height: 420px;
}

.gallery-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.gallery-small {
  height: 200px;
}

.secondary-showcase {
  margin-top: 18px;
}

.secondary-image {
  max-width: 720px;
  margin: 0 auto;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.product-small {
  height: 220px;
}

.product-wide {
  height: 240px;
  grid-column: span 2;
}

/* =========================================================
   18. FORMATOS / INVESTIMENTO
========================================================= */
.formats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.format-card {
  background: var(--color-surface);
  border: 1px solid rgba(105, 87, 184, 0.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.format-card.featured {
  border-color: rgba(105, 87, 184, 0.35);
  box-shadow: 0 18px 36px rgba(105, 87, 184, 0.14);
}

.format-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-note {
  margin-top: 20px;
  text-align: center;
  font-size: 0.94rem;
}

/* =========================================================
   19. FAQ
========================================================= */
.faq-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 110px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 4px 22px;
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-text);
  position: relative;
  padding-right: 32px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 1.4rem;
  color: var(--color-primary);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding-bottom: 18px;
  margin: 0;
}

/* =========================================================
   20. CTA FINAL
========================================================= */
.cta-section {
  text-align: center;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.cta-centered {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-centered p {
  max-width: 680px;
}

.cta-image {
  max-width: 460px;
  margin: 0 auto;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

/* =========================================================
   21. FOOTER
========================================================= */
.footer {
  background: #f0ecf8;
  border-top: 1px solid rgba(105, 87, 184, 0.1);
  padding: 42px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  width: 96px;
  margin-bottom: 12px;
}

.footer-brand-text {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-text);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-primary);
}

/* =========================================================
   22. REVEAL / ANIMAÇÃO
========================================================= */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   23. RD STATION
========================================================= */

.form-placeholder {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px dashed rgba(105, 87, 184, 0.22);
  border-radius: 18px;
  background: rgba(105, 87, 184, 0.04);
  color: var(--color-text-soft);
  font-weight: 600;
}

.form-placeholder.is-hidden {
  display: none;
}

/* =========================================================
   VÍDEO LEVE (YouTube sob clique)
========================================================= */
.lite-video {
  position: relative;
  background-color: #130d26;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}

.lite-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.28));
}

.lite-video-button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1;
}

.lite-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 60px;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.lite-video-play::before {
  content: '';
  position: absolute;
  left: 34px;
  top: 18px;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--color-primary);
}

.lite-video.is-loaded::before,
.lite-video.is-loaded .lite-video-button {
  display: none;
}

@media (max-width: 820px) {
  .topbar {
    backdrop-filter: none;
  }
}
.rd-form-card {
  overflow: hidden;
}

.rd-form-wrapper {
  margin-top: 8px;
}

.rd-form-wrapper form {
  display: grid;
  gap: 16px;
}

.rd-form-wrapper label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--color-text);
}

.rd-form-wrapper input,
.rd-form-wrapper select,
.rd-form-wrapper textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.rd-form-wrapper input:focus,
.rd-form-wrapper select:focus,
.rd-form-wrapper textarea:focus {
  border-color: rgba(105, 87, 184, 0.7);
  box-shadow: 0 0 0 4px rgba(105, 87, 184, 0.12);
}

.rd-form-wrapper textarea {
  min-height: 118px;
  resize: vertical;
}

.rd-form-wrapper .bricks-form__fieldset,
.rd-form-wrapper .rd-form__fieldset,
.rd-form-wrapper .field,
.rd-form-wrapper .form__field {
  margin-bottom: 0;
}

.rd-form-wrapper button,
.rd-form-wrapper input[type="submit"] {
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(105, 87, 184, 0.22);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.rd-form-wrapper button:hover,
.rd-form-wrapper input[type="submit"]:hover {
  transform: translateY(-1px);
  background: var(--color-primary-dark);
}

.rd-form-wrapper .legal-text,
.rd-form-wrapper .rd-form__legal-text,
.rd-form-wrapper .bricks-form__legal-text {
  font-size: 0.88rem;
  color: var(--color-text-soft);
  line-height: 1.5;
}

.rd-form-wrapper input[type="checkbox"] {
  width: auto;
  min-width: 16px;
  min-height: 16px;
  padding: 0;
  box-shadow: none;
}

/* =========================================================
   24. CAMPOS UTM OCULTOS
========================================================= */
#rd-text_field-mehgv2br,
label[for="rd-text_field-mehgv2br"],
#rd-text_field-mehgv2bs,
label[for="rd-text_field-mehgv2bs"],
#rd-text_field-mehgv2bt,
label[for="rd-text_field-mehgv2bt"],
#rd-text_field-mehgv2bu,
label[for="rd-text_field-mehgv2bu"],
#rd-text_field-mehgv2bv,
label[for="rd-text_field-mehgv2bv"] {
  display: none !important;
}

/* =========================================================
   25. RESPONSIVO
========================================================= */
@media (max-width: 1080px) {
  .hero-grid,
  .faq-grid,
  .product-showcase,
  .gallery-block {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 14px;
  }

  .faq-copy {
    position: static;
  }

  .guide-grid,
  .steps-grid,
  .formats-grid,
  .contrast-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-note,
  .hero-video-card .floating-note {
    position: static;
    margin-top: 14px;
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 74px 0;
  }

  .topbar {
    display: none;
  }
  
  .topbar .container {
    min-height: 72px;
  }

  .brand img {
    width: 88px;
  }

  .topbar .btn {
    display: none;
  }

  .pain-points,
  .proof-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card,
  .step-card,
  .guide-card,
  .contrast-card,
  .format-card {
    padding: 22px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-badges {
    gap: 8px;
  }

  .trust-badge {
    font-size: 0.8rem;
  }

  .rd-form-wrapper button,
  .rd-form-wrapper input[type="submit"] {
    min-height: 50px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .faq-copy .btn {
    width: 100%;
  }

  .btn {
    min-height: 50px;
    padding: 0 20px;
  }

  .form-card {
    border-radius: 22px;
  }

  .pain-card,
  .proof-card,
  .faq-item {
    padding-left: 18px;
    padding-right: 18px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    grid-template-columns: 40px 1fr;
  }

  .feature-icon,
  .guide-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-wide {
    grid-column: span 1;
  }
}