:root {
  --primary:   #14b8a6;
  --primary-2: #0e9384;
  --secondary: #4ade61;
  --dark:      #08393d;
  --dark-2:    #062a2e;
  --text:      #0a2c31;
  --muted:     #5f7b80;
  --bg:        #f6fbfb;
  --card:      #ffffff;
  --line:      rgba(8, 57, 61, .10);
  --radius:    20px;
  --shadow:    0 10px 40px rgba(8, 57, 61, .07);
  --shadow-lg: 0 24px 70px rgba(8, 57, 61, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 85% -10%, rgba(20,184,166,.12), transparent 45%);
}

body.dark {
  --text:   #eafdfb;
  --muted:  #9bb6ba;
  --bg:     #051a1d;
  --card:   #0a282d;
  --line:   rgba(255, 255, 255, .09);
  --shadow:    0 10px 40px rgba(0, 0, 0, .30);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, .38);
  background: var(--bg);
}
body.dark::before { background: radial-gradient(circle at 85% -10%, rgba(20,184,166,.10), transparent 45%); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ── Topbar ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 40px; height: 40px; border-radius: 11px; object-fit: contain; flex-shrink: 0; }
.brand strong { display: block; font-size: 15px; line-height: 1.2; }
.brand span { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.3; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 650;
  font-size: 14.5px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(20,184,166,.26);
}
.btn-primary:hover { background: var(--primary-2); box-shadow: 0 12px 28px rgba(20,184,166,.32); }
.btn-secondary { background: var(--card); color: var(--text); border-color: var(--line); box-shadow: var(--shadow); }
.btn-secondary:hover { border-color: rgba(20,184,166,.4); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: rgba(20,184,166,.4); }
/* Botoes sobre fundo escuro (banner Notreve) */
.btn-light { background: #ffffff; color: var(--dark); border-color: transparent; }
.btn-light:hover { background: #eafdfb; }
.btn-outline-light { background: transparent; color: #ffffff; border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { border-color: #ffffff; }

.theme-toggle {
  width: 44px; height: 44px; padding: 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  font-size: 17px;
  cursor: pointer;
}

/* ── Hero ── */
.hero { padding: 76px 0 44px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  color: var(--primary-2);
  font-weight: 600;
  font-size: 13px;
  border: 1px solid color-mix(in srgb, var(--primary) 22%, transparent);
}
body.dark .badge { color: #7fe8dc; }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.05;
  margin: 20px 0 16px;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.highlight { color: var(--primary-2); }
body.dark .highlight { color: #5fe3d4; }

.lead { font-size: clamp(16px, 2vw, 18.5px); color: var(--muted); max-width: 620px; margin: 0; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-ctas .btn-primary { padding: 14px 24px; font-size: 15px; }
.microcopy { font-size: 13px; color: var(--muted); margin-top: 12px; }

.trust-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 550;
  color: var(--text);
}
.trust-pill svg { width: 13px; height: 13px; color: var(--primary); }

/* ── Hero card ── */
.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  border-radius: 24px;
  padding: 26px;
}
.hero-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.hero-card-header img { width: 56px; height: 56px; border-radius: 14px; object-fit: contain; }
.hero-card-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--primary-2); font-weight: 650; margin-top: 4px;
}
.hero-card-status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
body.dark .hero-card-status { color: #5fe3d4; }
.card-highlight { display: grid; gap: 10px; }
.highlight-item {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 13.5px;
  color: var(--muted);
}
.highlight-item strong { display: block; margin-bottom: 3px; font-size: 14px; color: var(--text); }
.spacer-14 { height: 14px; }
.inline-note {
  padding: 14px 16px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 18%, transparent);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.inline-note strong { color: var(--text); }

/* ── Stats bar ── */
.stats-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.stats-grid { display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; }
.stat-item { text-align: center; padding: 8px 44px; border-right: 1px solid var(--line); }
.stat-item:last-child { border-right: none; }
.stat-number { display: block; font-size: 26px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); line-height: 1; }
.stat-label { display: block; font-size: 12.5px; color: var(--muted); font-weight: 500; margin-top: 5px; }

/* ── Sections ── */
section { padding: 56px 0; }
.section-head { margin-bottom: 32px; }
.section-head .eyebrow {
  display: block;
  color: var(--primary-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 10px;
}
body.dark .section-head .eyebrow { color: #5fe3d4; }
.section-head h2 { font-size: clamp(25px, 3.6vw, 38px); line-height: 1.12; margin: 0 0 10px; letter-spacing: -0.025em; font-weight: 800; }
.section-head p { margin: 0; color: var(--muted); max-width: 640px; font-size: 16.5px; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 10px auto 0; }

/* ── Cards ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.card h3 { margin: 0 0 10px; font-size: 18.5px; letter-spacing: -0.01em; font-weight: 700; }
.icon-pill {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary-2);
  font-weight: 800;
  margin-bottom: 16px;
  font-size: 17px;
}
body.dark .icon-pill { color: #5fe3d4; }

.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.check-list li { position: relative; padding-left: 30px; color: var(--text); font-size: 14.5px; line-height: 1.5; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 19px; height: 19px; border-radius: 50%;
  background: color-mix(in srgb, var(--primary) 14%, transparent);
}
.check-list li::after {
  content: "";
  position: absolute; left: 6px; top: 7px;
  width: 7px; height: 4px;
  border-left: 2px solid var(--primary-2);
  border-bottom: 2px solid var(--primary-2);
  transform: rotate(-45deg);
}
body.dark .check-list li::after { border-color: #5fe3d4; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial { display: flex; flex-direction: column; gap: 16px; }
.stars { color: #f5a623; font-size: 15px; letter-spacing: 2px; }
.testimonial-text { color: var(--text); font-size: 15px; line-height: 1.65; flex: 1; margin: 0; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  color: var(--primary-2);
  display: grid; place-items: center;
  font-weight: 800; font-size: 16px; flex-shrink: 0;
}
body.dark .author-avatar { color: #5fe3d4; }
.author-name { font-weight: 700; font-size: 14px; line-height: 1.2; }
.author-role { font-size: 12.5px; color: var(--muted); }

/* ── Plans ── */
.value-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 18px;
  font-size: 13.5px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.5;
}
.value-bar svg { width: 17px; height: 17px; color: var(--primary); }
.value-bar strong { color: var(--text); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; }
.plan-badge {
  align-self: flex-start;
  padding: 5px 12px; border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  color: var(--primary-2);
  font-size: 11.5px; font-weight: 700;
  margin-bottom: 12px;
}
body.dark .plan-badge { color: #5fe3d4; }
.plan.featured {
  border: 1.5px solid var(--primary);
  box-shadow: var(--shadow-lg);
}
.ribbon {
  position: absolute;
  top: 0; right: 22px;
  transform: translateY(-50%);
  background: var(--primary);
  color: #ffffff;
  font-size: 10.5px; font-weight: 700;
  padding: 5px 13px;
  border-radius: 999px;
  letter-spacing: .04em;
}
.plan h3 { font-size: 21px; margin: 0 0 6px; }
.plan-desc { color: var(--muted); font-size: 13.5px; margin: 0 0 14px; }
.plan-price { display: flex; align-items: flex-end; gap: 5px; margin: 4px 0 4px; }
.plan-price span { color: var(--muted); margin-bottom: 5px; font-size: 15px; }
.plan-price strong { font-size: 40px; line-height: 1; letter-spacing: -0.03em; }
.plan-period { color: var(--muted); font-size: 12.5px; margin-bottom: 12px; }
.plan-urgency {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  background: rgba(225, 75, 75, .08);
  border: 1px solid rgba(225, 75, 75, .22);
  border-radius: 999px;
  color: #d6443f;
  font-size: 12px;
  font-weight: 650;
  margin-bottom: 12px;
}
.plan-urgency::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #d6443f; }
.plan .check-list { margin: 4px 0 0; }
.plan .btn { margin-top: 20px; width: 100%; }

/* ── Guarantee ── */
.guarantee-wrap { padding: 0 0 56px; }
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 34px;
  max-width: 740px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.guarantee-icon {
  flex-shrink: 0;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary-2);
}
.guarantee-icon svg { width: 30px; height: 30px; }
body.dark .guarantee-icon { color: #5fe3d4; }
.guarantee-title { font-size: 19px; font-weight: 800; margin: 0 0 6px; letter-spacing: -0.01em; }
.guarantee-text { color: var(--muted); margin: 0; font-size: 14.5px; line-height: 1.6; }

/* ── Notreve / CTA banner ── */
.cta-banner {
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--dark), #0d4a4d);
  color: #ffffff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(20,184,166,.14);
  right: -70px; top: -110px;
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner .eyebrow { display: block; color: #7fe8dc; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 10px; }
.cta-banner h2 { color: #ffffff; margin: 0 0 12px; font-size: clamp(22px, 3.2vw, 32px); font-weight: 800; line-height: 1.15; }
.cta-banner p { color: rgba(255,255,255,.78); margin: 0 0 22px; font-size: 15.5px; }
.cta-banner .hero-ctas { margin-top: 0; }

.coupon-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 18px; padding: 24px; }
.coupon-label-top { font-size: 12.5px; color: rgba(255,255,255,.62); margin-bottom: 8px; }
.coupon-code {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  border: 1px dashed rgba(255,255,255,.38);
  font-weight: 800;
  letter-spacing: .14em;
  margin: 6px 0;
  font-size: 15px;
  color: #ffffff;
}
.coupon-price { font-size: 32px; font-weight: 800; color: #ffffff; margin: 10px 0 4px; letter-spacing: -0.02em; }
.coupon-sub { color: rgba(255,255,255,.58); font-size: 12.5px; }

/* ── Final CTA ── */
.final-cta {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 56px 28px;
  box-shadow: var(--shadow-lg);
}
.final-cta h2 { margin: 10px 0 14px; font-size: clamp(25px, 3.6vw, 36px); font-weight: 800; letter-spacing: -0.025em; }
.final-cta .lead { max-width: 580px; margin: 0 auto 26px; }
.final-cta .hero-ctas { justify-content: center; margin-top: 0; }

/* ── FAQ ── */
.faq { display: grid; gap: 10px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.active { border-color: color-mix(in srgb, var(--primary) 40%, transparent); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font: inherit;
  color: var(--text);
  font-weight: 650;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  gap: 14px;
}
.faq-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--primary-2);
  border-radius: 2px;
}
.faq-icon::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq-icon::after { left: 7px; top: 0; width: 2px; height: 16px; transition: transform .25s; }
.faq-item.active .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 22px 18px; color: var(--muted); display: none; font-size: 14.5px; line-height: 1.65; }
.faq-item.active .faq-a { display: block; }

/* ── Footer ── */
.footer { padding: 36px 0 56px; color: var(--muted); }
.footer-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
}
.footer .brand img { width: 40px; height: 40px; }
.footer-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.footer-links { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.pill-links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.pill-links a { padding: 8px 14px; border-radius: 999px; background: var(--card); border: 1px solid var(--line); font-size: 13px; }
.pill-links a:hover { border-color: rgba(20,184,166,.4); }

/* ── Mobile FAB ── */
.mobile-fab {
  display: none;
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(90px);
  z-index: 100;
  align-items: center;
  gap: 8px;
  background: #1fa855;
  color: #fff;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 650;
  font-size: 14.5px;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(31,168,85,.4);
  transition: transform .35s cubic-bezier(.34,1.4,.64,1), opacity .3s;
  opacity: 0;
}
.mobile-fab svg { width: 18px; height: 18px; }
.mobile-fab.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Scroll animations ── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: .07s; }
.fade-up:nth-child(3) { transition-delay: .14s; }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ── Utilities ── */
.spacer-16 { height: 16px; }
section.alt { background: color-mix(in srgb, var(--primary) 3%, transparent); }

/* ── Responsive ── */
@media (max-width: 980px) {
  .hero-grid, .cta-banner, .grid-3, .grid-2, .plans, .testimonials-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; }
  .nav-actions .nav-hide { display: none; }
  .footer-card { flex-direction: column; align-items: flex-start; }
  .footer-actions { align-items: flex-start; }
  .footer-links, .pill-links { justify-content: flex-start; }
  .stat-item { padding: 8px 26px; }
}

@media (max-width: 600px) {
  .container { width: calc(100% - 28px); }
  .brand span { display: none; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .mobile-fab { display: inline-flex; }
  .guarantee-box { flex-direction: column; text-align: center; padding: 24px 20px; }
  .stat-item {
    width: 50%;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(n+3) { border-bottom: none; }
  .cta-banner { padding: 26px 22px; }
  .footer-card { padding: 22px; }
  section { padding: 44px 0; }
}

/* ── Modal de captura de lead ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 57, 61, .60);
  backdrop-filter: blur(4px);
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 32px 80px rgba(8,57,61,.22);
  position: relative;
  margin: auto;
  flex-shrink: 0;
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  line-height: 1;
  transition: border-color .15s;
}
.modal-close:hover { border-color: rgba(20,184,166,.4); color: var(--text); }

.modal-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(20,184,166,.10);
  border: 1px solid rgba(20,184,166,.22);
  color: var(--primary-2);
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 14px;
}
.modal-plan-badge svg { width: 15px; height: 15px; }

.modal h3 { font-size: 21px; font-weight: 800; margin: 0 0 6px; letter-spacing: -.02em; }
.modal-sub { color: var(--muted); font-size: 14px; margin: 0 0 20px; }

.form-group { display: grid; gap: 11px; margin-bottom: 14px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-field input {
  padding: 11px 13px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20,184,166,.15);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.consent-row input[type=checkbox] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--primary);
  width: 15px; height: 15px;
}
.consent-row label { font-size: 12px; color: var(--muted); line-height: 1.55; }

.modal-error {
  display: none;
  padding: 10px 13px;
  border-radius: 10px;
  background: rgba(214,68,63,.08);
  border: 1px solid rgba(214,68,63,.25);
  color: #c0392b;
  font-size: 13px;
  margin-bottom: 12px;
}
.modal-error.show { display: block; }

.btn-wa-submit {
  width: 100%;
  padding: 13px 18px;
  font-size: 15px;
  justify-content: center;
}
.btn-wa-submit svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-wa-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.modal-footer-note {
  text-align: center;
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--muted);
}

@media (max-width: 500px) {
  .modal { padding: 28px 18px 22px; border-radius: 18px; }
  .modal h3 { font-size: 19px; }
}
