

:root {
  /* Premium Palette */
  --green: #00A65A;         /* Primary Brand Color */
  --green-d: #00884A;       /* Hover */
  --green-dd: #006034;      /* Deep */
  --green-l: #E6F6EF;       /* Light bg */
  --green-b: #66C99C;       /* Border / accent */
  --text: #111827;
  --text-2: #374151;
  --text-3: #6B7280;
  --slate-l: #F9FAFB;
  --border: #E5E7EB;
  
  --font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 24px rgba(0,0,0,0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-family);
  background: #ffffff;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ----------------------------------------------------
   HEADER (Shared between Index & Req)
------------------------------------------------------- */
.header, .hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 60px; display: flex; align-items: center;
}
.header__inner {
  width: 100%; max-width: 540px; margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.hdr {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
} 

.logo, .hdr-logo { display: flex; align-items: center; gap: 10px; }
.logo__icon, .hdr-logo-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.logo__icon img, .hdr-logo-icon img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.logo__icon svg, .hdr-logo-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; }
.logo__text, .hdr-logo-text { font-weight: 800; font-size: 15px; color: var(--text); letter-spacing: -0.02em; }

.btn-header {
  background: var(--green-l); color: var(--green-d);
  font-weight: 700; font-size: 13px;
  padding: 10px 20px; border-radius: var(--radius-pill); border: none; cursor: pointer;
  transition: all 0.2s ease;
}
.btn-header:hover { background: var(--green); color: #fff; box-shadow: var(--shadow-md); }

.hdr-secure { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--green-d); }
.hdr-secure svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.hdr-in { width: 100%; max-width: 720px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.hdr .logo img { width: 38px; height: 38px; object-fit: contain; background: #fff; border-radius: 8px; }
.back { font-size: 13px; font-weight: 700; color: var(--text-3); }
body > main { max-width: 720px; margin: 0 auto; padding: 32px 20px 80px; }
body > main h1 { font-size: 28px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
body > main h2 { font-size: 18px; font-weight: 800; margin: 28px 0 10px; }
body > main p, body > main li { font-size: 15px; color: var(--text-2); line-height: 1.65; }
body > main ul { padding-left: 20px; margin: 8px 0 16px; }
.updated { color: var(--text-3); font-size: 13px; margin-bottom: 24px; }
.box { background: var(--green-l); border: 1px solid var(--green-b); border-radius: 12px; padding: 16px; margin: 16px 0; font-size: 15px; line-height: 1.6; }
.info { background: var(--slate-l); border-radius: 12px; padding: 16px; display: grid; gap: 8px; font-size: 15px; }

/* ----------------------------------------------------
   HERO & INDEX SECTIONS
------------------------------------------------------- */
.hero {
  padding: 20px 20px 48px;
  background: linear-gradient(180deg, var(--green-l) 0%, #ffffff 100%);
  text-align: center;
}

.badge-live {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--green-b);
  border-radius: var(--radius-pill); padding: 8px 20px;
  font-size: 12px; font-weight: 700; color: var(--green-d);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.badge-live__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(.7); } }

.hero__title { font-size: 36px; font-weight: 800; line-height: 1.15; color: var(--text); margin-bottom: 16px; letter-spacing: -0.03em; }
.hero__title .hl { color: var(--green); }
.hero__sub { font-size: 16px; font-weight: 500; color: var(--text-2); line-height: 1.6; margin-bottom: 32px; max-width: 420px; margin-left: auto; margin-right: auto; }

.chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 8px 16px;
  font-size: 13px; font-weight: 600; color: var(--text-2);
  box-shadow: var(--shadow-sm);
}
.chip svg { width: 14px; height: 14px; stroke: var(--green); fill: none; stroke-width: 2.5; }

.price-card {
  background: var(--green); border-radius: var(--radius-xl);
  padding: 32px 24px; margin-bottom: 20px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.price-card::before { content: ''; position: absolute; top:-50px; right:-50px; width: 150px; height: 150px; border-radius: 50%; background: rgba(255,255,255,.1); }
.price-card::after { content: ''; position: absolute; bottom:-30px; left:-30px; width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,.05); }
.price-card__label { font-size: 14px; color: rgba(255,255,255,.9); font-weight: 600; margin-bottom: 12px; position: relative; z-index:1; }
.price-card__row { display: flex; align-items: flex-start; justify-content: center; gap: 4px; margin-bottom: 12px; position: relative; z-index:1; }
.price-card__cur  { font-size: 24px; font-weight: 700; color: #fff; margin-top: 12px; }
.price-card__val  { font-size: 72px; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.02em; }
.price-card__dec  { font-size: 32px; font-weight: 700; color: rgba(255,255,255,.9); margin-top: 16px; }
.price-card__note { font-size: 13px; color: rgba(255,255,255,.8); position: relative; z-index:1; }

.btn-cta, .btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; max-width: 480px; margin: 0 auto;
  background: var(--green); color: #fff;
  font-weight: 700; font-size: 18px;
  padding: 20px; border-radius: var(--radius-xl); border: none; cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,166,90,0.3);
  transition: all 0.2s ease; text-align: center;
}
.btn-cta:active, .btn-primary:active { transform: scale(.98); }
.btn-cta:hover, .btn-primary:hover  { background: var(--green-d); box-shadow: 0 12px 28px rgba(0,166,90,0.4); }
.btn-primary:disabled, .btn-cta:disabled { background: #cbd5e1; box-shadow: none; cursor: not-allowed; transform: none; }
.btn-cta--white { background: #fff; color: var(--green-d); box-shadow: var(--shadow-lg); }
.btn-cta--white:hover { background: var(--slate-l); }
.btn-cta svg, .btn-primary svg { width: 22px; height: 22px; stroke: currentColor; fill:none; stroke-width: 2.5; }

.hero__guarantee { font-size: 13px; font-weight: 500; color: var(--text-3); margin-top: 16px; }
.hero__guarantee strong { color: var(--green-d); font-weight: 700; }

.compare { background: var(--slate-l); padding: 60px 20px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.compare__title { text-align: center; font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 32px; line-height: 1.3; letter-spacing: -0.02em; }
.compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 540px; margin: 0 auto; }
.cmp-col { border-radius: var(--radius-lg); padding: 24px 20px; }
.cmp-col--bad  { background: #fff1f2; border: 1px solid #fecaca; }
.cmp-col--good { background: var(--green-l); border: 1px solid #a7f3d0; box-shadow: var(--shadow-md); }
.cmp-col__head { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.cmp-col--bad  .cmp-col__head { color: #b91c1c; }
.cmp-col--good .cmp-col__head { color: var(--green-dd); }
.cmp-item { font-size: 13px; font-weight: 600; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.cmp-col--bad  .cmp-item { color: #7f1d1d; }
.cmp-col--good .cmp-item { color: var(--green-dd); }
.cmp-item svg { flex-shrink:0; margin-top:3px; stroke-width: 3; }

.section { padding: 60px 20px; max-width: 540px; margin: 0 auto; }
.section--gray { background: var(--slate-l); max-width: 100%; }

.eyebrow { text-align: center; font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--green-d); margin-bottom: 12px; }
.section__title { text-align: center; font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 32px; line-height: 1.25; letter-spacing: -0.02em; }

.numbers { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 40px; }
.num-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 12px; text-align: center; box-shadow: var(--shadow-sm); }
.num-card__val { font-size: 26px; font-weight: 800; color: var(--green-d); margin-bottom: 6px; letter-spacing: -0.03em; }
.num-card__lbl { font-size: 11px; font-weight: 600; color: var(--text-3); line-height: 1.4; text-transform: uppercase; letter-spacing: 0.05em; }

.tcard { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 24px; margin-bottom: 16px; box-shadow: var(--shadow-md); }
.tcard__stars { display: flex; gap: 4px; margin-bottom: 16px; }
.tcard__stars svg { width: 18px; height: 18px; fill: #f59e0b; color: #f59e0b; }
.tcard__text { font-size: 15px; color: var(--text-2); font-weight: 500; line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.tcard__foot { display: flex; align-items: center; justify-content: space-between; }
.tcard__name { font-size: 14px; font-weight: 700; color: var(--text); }
.tcard__time { font-size: 12px; font-weight: 500; color: var(--text-3); }
.tcard__google { display: flex; align-items: center; gap: 6px; background: var(--slate-l); border-radius: var(--radius-pill); padding: 6px 12px; font-size: 12px; font-weight: 700; color: var(--text-2); }
.tcard__google svg { width: 14px; height: 14px; fill: #f59e0b; }

.btn-more { width: 100%; background: #fff; border: 2px solid var(--border); border-radius: var(--radius-xl); color: var(--text-2); font-weight: 600; font-size: 15px; padding: 16px; cursor: pointer; margin-top: 12px; transition: all 0.2s; box-shadow: var(--shadow-sm); }
.btn-more:hover { border-color: var(--green-b); color: var(--green-d); background: var(--green-l); }

/* Steps */
.steps { display: flex; flex-direction: column; gap: 0; max-width: 480px; margin: 0 auto; }
.step { display: flex; gap: 24px; align-items: flex-start; position: relative; padding-bottom: 40px; }
.step:last-child { padding-bottom: 0; }
.step__left { display: flex; flex-direction: column; align-items: center; }
.step__num { width: 48px; height: 48px; border-radius: 50%; background: var(--green); color: #fff; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 6px 16px rgba(0,166,90,0.3); }
.step__line { width: 2px; flex: 1; background: var(--green-b); margin-top: 12px; min-height: 40px; opacity: 0.5; }
.step:last-child .step__line { display: none; }
.step__body { padding-top: 10px; }
.step__title { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step__desc { font-size: 14px; font-weight: 500; color: var(--text-3); line-height: 1.6; }
.step__tag { display: inline-block; margin-top: 12px; background: var(--green-l); border: 1px solid var(--green-b); border-radius: var(--radius-pill); padding: 4px 12px; font-size: 12px; font-weight: 700; color: var(--green-d); }

/* Doctor & Seals */
.doctor-card { background: var(--green-l); border: 1px solid var(--green-b); border-radius: var(--radius-xl); padding: 24px; display: flex; gap: 20px; align-items: center; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.doctor-avatar { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; background: var(--green); flex-shrink: 0; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); color:#fff; font-weight:800; font-size:22px; letter-spacing:.02em; }
.doctor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hosp-mark {
  height: 36px; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--green-dd); letter-spacing: .04em;
}
.doctor-name { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.doctor-crm { font-size: 14px; font-weight: 700; color: var(--green-d); margin-bottom: 8px; }
.doctor-desc { font-size: 13px; font-weight: 500; color: var(--text-2); line-height: 1.6; }

.seals { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.seal { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px 12px; text-align: center; box-shadow: var(--shadow-sm); }
.seal svg { width: 28px; height: 28px; stroke: var(--green); fill:none; margin: 0 auto 8px; stroke-width: 2; }
.seal__t { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.seal__s { font-size: 11px; font-weight: 500; color: var(--text-3); line-height: 1.4; }

/* Midia */
.midia { text-align: center; padding: 40px 20px; background: var(--slate-l); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.midia__label { font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--text-3); margin-bottom: 20px; }
.midia__logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px; }
.midia__logo { font-size: 18px; font-weight: 800; color: #9CA3AF; letter-spacing: -.02em; transition: color 0.2s; }
.midia__logo:hover { color: var(--text-3); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; text-align: left; padding: 0; }
.faq-btn__q { font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.4; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--slate-l); border: 1px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.faq-icon svg { width: 14px; height: 14px; stroke: var(--text-2); fill:none; transition: transform .3s; stroke-width: 2.5; }
.faq-icon.open { background: var(--green); border-color: var(--green); }
.faq-icon.open svg { stroke: #fff; transform: rotate(45deg); }
.faq-answer { font-size: 14px; font-weight: 500; color: var(--text-3); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .3s ease, margin-top .3s; opacity: 0; }
.faq-answer.open { max-height: 400px; margin-top: 16px; opacity: 1; }

/* Guarantee */
.guarantee-block { background: var(--green-l); border: 1px solid var(--green-b); border-radius: var(--radius-xl); padding: 32px 24px; margin: 40px auto; max-width: 540px; text-align: center; box-shadow: var(--shadow-md); }
.guarantee-block svg { width: 48px; height: 48px; stroke: var(--green); fill:none; margin: 0 auto 16px; stroke-width: 2; }
.guarantee-block__title { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.guarantee-block__text { font-size: 15px; font-weight: 500; color: var(--text-2); line-height: 1.6; }

/* CTA Final */
.cta-block { background: var(--green); padding: 60px 20px; text-align: center; position: relative; overflow: hidden; }
.cta-block::before { content:''; position:absolute; top:-100px; right:-80px; width:300px; height:300px; border-radius:50%; background:rgba(255,255,255,.08); }
.cta-block__title { font-size: 32px; font-weight: 800; color:#fff; margin-bottom: 16px; position:relative; z-index:1; line-height:1.2; letter-spacing: -0.02em; }
.cta-block__sub { font-size: 16px; font-weight: 500; color:rgba(255,255,255,.9); margin-bottom: 32px; position:relative; z-index:1; }
.cta-block .btn-cta { position:relative; z-index:1; }
.cta-block__note { font-size: 13px; color:rgba(255,255,255,.7); margin-top:20px; position:relative; z-index:1; }

/* ----------------------------------------------------
   FOOTER (Shared)
------------------------------------------------------- */
.footer { padding: 40px 20px; background: #0F172A; text-align: center; color: #fff; margin-top: auto; }
.footer__links, .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; margin-bottom: 24px; }
.footer__links a, .footer-links a { font-size: 13px; font-weight: 600; color: #94A3B8; transition: color .2s; }
.footer__links a:hover, .footer-links a:hover { color: #fff; }
.footer__sep, .footer-sep { color: #334155; }
.footer__note, .footer-info { font-size: 12px; font-weight: 400; color: #64748B; line-height: 1.8; max-width: 540px; margin: 0 auto; border-top: 1px solid #1E293B; padding-top: 24px; }
.footer-logo { display: flex; flex-direction: column; align-items: center; margin-bottom: 32px; }
.footer-logo-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(0, 166, 90, 0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.footer-logo-icon svg { width: 24px; height: 24px; stroke: var(--green); fill: none; stroke-width: 2.5; }
.footer-name { font-size: 18px; font-weight: 800; color: #fff; }
.footer-sub { font-size: 14px; font-weight: 600; color: var(--green); margin-top: 4px; }
.footer-inner { max-width: 540px; margin: 0 auto; }
.footer-desc { font-size: 13px; color: #94A3B8; margin-top: 10px; }
.footer-phone { margin-top: 6px; }
.footer-copy { font-size: 11px; color: #64748B; margin-top: 16px; }

.cookie {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 200;
  background: #0F172A;
  border: 1px solid #1E293B;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.35);
}
.cookie__inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie__text {
  font-size: 12px;
  font-weight: 500;
  color: #94A3B8;
  flex: 1;
  line-height: 1.45;
}
.cookie__text a { color: #34d399; text-decoration: underline; }
.cookie__btn {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ----------------------------------------------------
   REQUISICAO (Form/App Styles)
------------------------------------------------------- */
.prog-wrap {
  background: #fff;
  padding: 16px 20px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 60px;
  z-index: 99;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
.badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 24px; }
.badge { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #64748b; }
.badge svg { width: 18px; height: 18px; stroke: #059669; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.prog-bar-line { height: 8px; background: var(--slate-l); border-radius: var(--radius-pill); overflow: hidden; box-shadow: inset 0 1px 2px rgba(0,0,0,0.05); }
.prog-bar-fill { height: 100%; background: var(--green); border-radius: var(--radius-pill); transition: width .5s cubic-bezier(0.4, 0, 0.2, 1); }
.prog-info { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.prog-secure { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--green-d); }
.prog-secure svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.prog-label { font-size: 13px; font-weight: 600; color: var(--text-3); }

.stepper { display: flex; align-items: center; justify-content: space-between; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 16px 0; min-width: 320px; }
.step-item { display: flex; flex-direction: column; align-items: center; flex: 1; position: relative; }
.step-connector { position: absolute; top: 14px; left: 50%; width: 100%; height: 2px; background: var(--border); }
.step-connector-fill { height: 100%; background: var(--green); transition: width .4s ease; }
.step-dot { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; position: relative; z-index: 2; transition: all .3s; background: #fff; border: 2px solid var(--border); color: var(--text-3); }
.step-dot.done { background: var(--green); border-color: var(--green); color: #fff; }
.step-dot.active { background: #fff; border-color: var(--green); color: var(--green); box-shadow: 0 0 0 4px var(--green-l); }
.step-dot svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2.5; }
.step-lbl { margin-top: 8px; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-3); }
.step-lbl.active, .step-lbl.done { color: var(--green-dd); }

.main { flex: 1; padding: 24px 20px 80px; background: var(--slate-l); width: 100%; max-width: 540px; margin: 0 auto; }
.container { max-width: 540px; margin: 0 auto; width: 100%; }
.btn-back-sm {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 12px;
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px;
}
.btn-back-sm svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }
.pix-copy-btn svg { width: 18px; height: 18px; flex-shrink: 0; stroke: currentColor; fill: none; }
.pix-copy-area {
  word-break: break-all;
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 1.4;
  max-width: 100%;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-2);
  margin-bottom: 10px;
  cursor: pointer;
}
.upload-box { border: 2px dashed var(--border); border-radius: var(--radius-lg); padding: 20px; text-align: center; cursor: pointer; }
.upload-box-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--green-l);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 10px;
}
.upload-box-icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 2; }
.upload-box h4 { font-size: 15px; margin-bottom: 4px; }
.upload-box p { font-size: 13px; color: var(--text-3); }
.upload-status svg { width: 16px; height: 16px; stroke: currentColor; fill: none; flex-shrink: 0; }

.step-hdr { margin-bottom: 24px; }
.step-back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-3); font-weight: 600; cursor: pointer; background: none; border: none; padding: 0 0 16px; transition: color 0.2s; }
.step-back:hover { color: var(--text); }
.step-back svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.step-hdr h1 { font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 6px; letter-spacing: -0.02em; }
.step-hdr p { font-size: 14px; color: var(--text-3); font-weight: 500; }

.card { background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); border: 1px solid var(--border); overflow: hidden; }
.card-body { padding: 32px 24px; }

/* Form Buttons / Radios */
.problem-grid { display: flex; flex-direction: column; gap: 12px; }
.problem-btn, .opt-btn, .sym-btn, .consulta-opt, .sched-opt {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: var(--radius-lg); 
  cursor: pointer; border: 2px solid var(--border); background: #fff; transition: all .2s; 
  box-shadow: var(--shadow-sm); width: 100%; text-align: left;
}
.opt-btn { justify-content: space-between; }
.problem-btn:hover, .opt-btn:hover, .sym-btn:hover, .consulta-opt:hover, .sched-opt:hover {
  border-color: #cbd5e1; background: var(--slate-l);
}
.problem-btn.selected, .opt-btn.selected, .sym-btn.selected, .consulta-opt.selected, .sched-opt.selected {
  border-color: var(--green); background: var(--green-l); box-shadow: 0 4px 12px rgba(0,166,90,0.1);
}

.problem-icon, .consulta-opt-icon, .sched-opt-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--slate-l); 
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s;
}
.problem-icon svg, .consulta-opt-icon svg, .sched-opt-icon svg { width: 22px; height: 22px; stroke: var(--text-3); fill: none; stroke-width: 2; }
.problem-btn.selected .problem-icon, .consulta-opt.selected .consulta-opt-icon, .sched-opt.selected .sched-opt-icon {
  background: var(--green);
}
.problem-btn.selected .problem-icon svg, .consulta-opt.selected .consulta-opt-icon svg, .sched-opt.selected .sched-opt-icon svg { stroke: #fff; }

.problem-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.problem-cid { font-size: 12px; font-weight: 600; color: var(--text-3); }
.prob-search {
  display: flex; align-items: center; gap: 10px; margin-top: 14px;
  border: 2px solid var(--border); border-radius: var(--radius-pill); padding: 10px 16px; background: #fff;
}
.prob-search svg { width: 18px; height: 18px; stroke: var(--text-3); fill: none; stroke-width: 2; flex-shrink: 0; }
.prob-search input { border: 0; outline: none; width: 100%; font-size: 14px; font-family: inherit; background: transparent; }
.prob-empty { text-align: center; color: var(--text-3); font-size: 13px; padding: 16px 0; }
.problem-lbl, .opt-btn, .sym-btn, .consulta-opt-title, .sched-opt-title { font-size: 15px; font-weight: 600; color: var(--text); flex: 1; line-height: 1.4; }
.problem-btn.selected .problem-lbl, .opt-btn.selected, .sym-btn.selected, .consulta-opt.selected .consulta-opt-title, .sched-opt.selected .sched-opt-title { color: var(--green-dd); }

.problem-radio, .opt-radio, .consulta-opt-radio, .sched-opt-radio {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--text-3); 
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; background: #fff;
}
.problem-btn.selected .problem-radio, .opt-btn.selected .opt-radio, .consulta-opt.selected .consulta-opt-radio, .sched-opt.selected .sched-opt-radio {
  background: var(--green); border-color: var(--green);
}
.problem-radio-dot, .opt-radio svg, .consulta-opt-radio-dot, .sched-opt-radio-dot { opacity: 0; transition: opacity .2s; }
.problem-radio-dot, .consulta-opt-radio-dot, .sched-opt-radio-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.opt-radio svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2.5; }
.problem-btn.selected .problem-radio-dot, .opt-btn.selected .opt-radio svg, .consulta-opt.selected .consulta-opt-radio-dot, .sched-opt.selected .sched-opt-radio-dot { opacity: 1; }

.sym-check { width: 24px; height: 24px; border-radius: 6px; border: 2px solid var(--text-3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; background: #fff; }
.sym-btn.selected .sym-check { background: var(--green); border-color: var(--green); }
.sym-check svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 3; opacity: 0; }
.sym-btn.selected .sym-check svg { opacity: 1; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.field .req { color: #ef4444; }
.field input, .field select, .field textarea { 
  width: 100%; padding: 16px 20px; border: 2px solid var(--border); border-radius: var(--radius-md); 
  font-size: 16px; font-family: inherit; color: var(--text); background: var(--slate-l); 
  outline: none; transition: all .2s; -webkit-appearance: none; 
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px var(--green-l); }
.field input.valid { border-color: var(--green); }
.field input.invalid { border-color: #ef4444; }
.field-msg { font-size: 13px; margin-top: 6px; display: flex; align-items: center; gap: 6px; font-weight: 600; }
.field-msg.err { color: #dc2626; }
.field-msg.ok { color: var(--green-d); }

.info-box { display: flex; align-items: flex-start; gap: 12px; padding: 16px; border-radius: var(--radius-md); font-size: 14px; line-height: 1.6; margin-top: 16px; }
.info-box.slate { background: var(--slate-l); border: 1px solid var(--border); color: var(--text-2); }
.info-box.yellow { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.info-box.teal { background: var(--green-l); border: 1px solid var(--green-b); color: var(--green-dd); }
.info-box svg { width: 20px; height: 20px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; margin-top: 2px; }

/* Utilities from original */
.hidden { display: none !important; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Rest of the original form classes (upsell, cert, pix, etc) kept mostly similar but styled better */
.cert-label { font-size: 13px; font-weight: 700; color: #555; margin-bottom: 10px; }
.cert-preview {
  background: #e8e4d8;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
}
.cert-sheet {
  background: #fffdf8;
  border: 1px solid #c9c2ae;
  box-shadow: inset 0 0 0 4px #fffdf8, inset 0 0 0 5px #1f3d2e;
  padding: 18px 16px 62px;
  font-family: 'Times New Roman', Georgia, serif;
  color: #1a1a1a;
}
.pix-bg { background: var(--slate-l); padding: 24px; border-radius: var(--radius-lg); margin-bottom: 20px; text-align: center; border: 1px solid var(--border); }
.pix-amount-label { font-size: 13px; color: var(--text-3); font-weight: 600; }
.pix-amount { font-size: 32px; font-weight: 800; color: var(--green); margin-bottom: 16px; }
.pix-expiry { font-size: 12px; color: var(--text-3); margin-bottom: 12px; }
.consulta-card { display: flex; flex-direction: column; gap: 10px; }
.consulta-opt-desc, .sched-opt-sub { font-size: 12px; color: var(--text-3); font-weight: 500; margin-top: 2px; }
.consulta-opt-body, .sched-opt-body { flex: 1; min-width: 0; }
.sched-wrap { margin-top: 16px; }
.sched-label { display: flex; align-items: center; gap: 8px; font-weight: 700; margin-bottom: 10px; font-size: 14px; }
.sched-label svg { width: 16px; height: 16px; stroke: var(--green); fill: none; }
.sched-opts { display: flex; flex-direction: column; gap: 10px; }
.sched-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.sched-fields .sf label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.sched-fields input { width: 100%; padding: 12px; border: 2px solid var(--border); border-radius: 10px; font-family: inherit; }
.sched-hint { margin-top: 8px; font-size: 13px; color: #dc2626; font-weight: 600; }
.sched-hint.ok { color: var(--green-d); }
.sym-count { margin-top: 10px; font-size: 13px; font-weight: 700; color: var(--green-d); }
.upload-box.valid { border-color: var(--green); background: var(--green-l); }
.upload-status { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px; font-size: 13px; font-weight: 700; }
.upload-status.ok { color: var(--green-d); }
.pix-qr-box { background: #fff; padding: 16px; border-radius: var(--radius-md); display: inline-block; margin-bottom: 16px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.pix-copy-btn { width: 100%; background: var(--green); color: #fff; border: none; border-radius: var(--radius-md); padding: 16px; font-size: 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all .2s; }
.pix-copy-btn:hover { background: var(--green-d); }

.nav-row { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; margin-top: 24px; border-top: 1px solid var(--border); }
.btn-next-nav { display: flex; align-items: center; gap: 12px; border: none; border-radius: var(--radius-lg); padding: 16px 28px; font-size: 16px; font-weight: 700; cursor: pointer; background: var(--green); color: #fff; box-shadow: 0 4px 14px rgba(0,166,90,0.3); transition: all .2s; }
.btn-next-nav:disabled { background: var(--border); color: var(--text-3); box-shadow: none; cursor: not-allowed; }
.btn-next-nav:not(:disabled):hover { background: var(--green-d); }
.btn-next-nav svg, .btn-prev svg { width: 18px; height: 18px; stroke: currentColor; fill: none; flex-shrink: 0; }
.btn-prev { display: flex; align-items: center; gap: 8px; background: none; border: none; color: var(--text-3); cursor: pointer; font-weight: 600; }
.btn-prev-txt, .btn-next-nav-txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.btn-next-nav-txt { text-align: right; }
.btn-prev-txt span:first-child, .btn-next-nav-txt span:first-child { font-size: 11px; opacity: .75; font-weight: 600; }

.hosp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hosp-btn { border: 2px solid var(--border); border-radius: 14px; padding: 14px 10px 12px; text-align: center; cursor: pointer; background: #fff; }
.hosp-btn.selected { border-color: var(--green); background: var(--green-l); }
.hosp-logo {
  height: 52px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px; overflow: hidden; padding: 0 6px;
}
.hosp-logo img {
  max-height: 44px; max-width: 100%; width: auto; height: auto;
  object-fit: contain; display: block; margin: 0 auto;
}
.hosp-name { font-size: 12px; font-weight: 600; color: var(--text-2); }
.days-hint { font-size: 12.5px; color: var(--text-3); margin: -2px 0 10px; line-height: 1.4; }
.date-custom { margin-top: 12px; }
.date-custom label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.date-custom-field {
  display: flex; align-items: center; gap: 10px;
  border: 2px solid var(--green); border-radius: 14px;
  background: #fff; padding: 0 14px; min-height: 52px; cursor: pointer;
}
.date-custom-field svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2; flex-shrink: 0; }
.date-custom-field input[type="date"] {
  flex: 1; border: 0; outline: none; background: transparent;
  font-size: 16px; font-weight: 700; font-family: inherit;
  color: var(--text); padding: 14px 0; width: 100%; min-width: 0;
  cursor: pointer;
}
.date-custom-field input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .7; }
.date-custom-err { font-size: 13px; font-weight: 700; color: #dc2626; margin-top: 8px; }

.day-picks { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.day-pick {
  border: 2px solid var(--border); border-radius: 16px;
  padding: 12px 6px 10px; text-align: center; cursor: pointer;
  background: #fff; min-width: 0;
}
.day-pick.selected { border-color: var(--green); background: var(--green-l); }
.day-pick--rec { border-color: var(--green-b); box-shadow: 0 6px 16px rgba(0,166,90,.12); }
.day-pick-tag {
  font-size: 9px; font-weight: 800; letter-spacing: .3px;
  text-transform: uppercase; color: var(--green-d); margin-bottom: 6px;
}
.day-pick--rec .day-pick-tag {
  display: inline-block; background: var(--green); color: #fff;
  padding: 2px 7px; border-radius: 999px;
}
.day-pick-days { font-size: 18px; font-weight: 800; line-height: 1.15; }
.day-pick-copy { font-size: 11px; color: var(--text-3); margin: 4px 0 8px; line-height: 1.3; min-height: 2.5em; }
.day-pick-price { font-size: 14px; font-weight: 800; color: var(--green-dd); }
.day-pick-sub { font-size: 10px; font-weight: 600; color: var(--text-3); margin-top: 2px; }
.day-pick.selected .day-pick-sub { color: var(--green-d); }
.days-extra { margin-top: 14px; padding: 12px; background: #f8fafc; border: 1px solid var(--border); border-radius: 14px; }
.days-extra-lbl { font-size: 13px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.days-extra-lbl span { font-weight: 600; color: var(--green-d); }
.days-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.day-chip {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  border: 2px solid var(--border); background: #fff; border-radius: 12px;
  padding: 10px 12px; cursor: pointer; font-family: inherit;
  font-size: 13px; font-weight: 700; color: var(--text); text-align: left;
}
.day-chip span { font-size: 12px; font-weight: 800; color: var(--green-dd); }
.day-chip.selected { border-color: var(--green); background: var(--green-l); }

.terms-note {
  font-size: 12px; color: var(--text-3); line-height: 1.5;
  text-align: center; margin: 4px 0 16px;
}
.terms-note a { color: var(--green-d); font-weight: 700; text-decoration: underline; }
.day-row-lbl em {
  display: inline-block;
  margin-left: 8px;
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
  background: var(--green);
  color: #fff;
  padding: 2px 7px;
  border-radius: 999px;
  vertical-align: middle;
}
.day-row--value .day-row-lbl em { background: #0f4f30; }
.day-row-right { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.day-row-sub { font-size: 11px; font-weight: 600; color: var(--text-3); }
.day-row.selected .day-row-sub { color: var(--green-d); }

.date-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.date-pill { border: 2px solid var(--border); background: #fff; border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 600; cursor: pointer; }
.date-pill.selected { border-color: var(--green); background: var(--green-l); color: var(--green-dd); }
.days-list { display: flex; flex-direction: column; gap: 8px; }
.day-row { display: flex; justify-content: space-between; align-items: center; border: 2px solid var(--border); border-radius: 14px; padding: 12px 16px; cursor: pointer; background: #fff; }
.day-row.selected { border-color: var(--green); background: var(--green-l); }
.day-row-lbl, .day-row-price { font-size: 14px; font-weight: 700; }

.upsell-card { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.upsell-header { display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: var(--green-l); font-weight: 800; font-size: 14px; color: var(--green-dd); }
.upsell-header svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.upsell-item { display: flex; align-items: flex-start; gap: 10px; padding: 14px; border-top: 1px solid var(--border); cursor: pointer; }
.upsell-item.checked { background: var(--green-l); }
.upsell-circle { width: 22px; height: 22px; border: 2px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.upsell-item.checked .upsell-circle { background: var(--green); border-color: var(--green); }
.upsell-circle svg { width: 12px; height: 12px; stroke: #fff; fill: none; opacity: 0; }
.upsell-item.checked .upsell-circle svg { opacity: 1; }
.upsell-body { flex: 1; min-width: 0; }
.upsell-title { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; }
.upsell-title svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }
.upsell-desc { font-size: 12px; color: var(--text-3); margin-top: 4px; }
.upsell-price { font-size: 13px; font-weight: 800; color: var(--green-dd); white-space: nowrap; }

.cert-watermark {
  position: absolute; inset: 18% 8%; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  font-size: 54px; font-weight: 800; color: rgba(153,27,27,.16);
  transform: rotate(-18deg); pointer-events: none; letter-spacing: .14em;
  font-family: inherit;
}
.cert-letterhead { display: flex; gap: 10px; align-items: flex-start; }
.cert-header-logo {
  width: 46px; height: 46px; background: #fff; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 1px solid #d6d0c2; overflow: hidden; padding: 3px;
}
.cert-header-logo img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.cert-header-logo svg { width: 18px; height: 18px; stroke: #143d2a; fill: none; }
.cert-fog { filter: blur(4.2px); user-select: none; pointer-events: none; }
.cert-frost {
  position: absolute; left: 10px; right: 10px; top: 72px; bottom: 10px;
  background: linear-gradient(180deg, rgba(255,253,248,.18) 0%, rgba(255,253,248,.5) 100%);
  z-index: 2; pointer-events: none;
}
.cert-header-info { flex: 1; min-width: 0; }
.cert-header-name { font-weight: 700; font-size: 14px; color: #143d2a; }
.cert-header-sub, .cert-header-crm, .cert-header-num { font-size: 9.5px; color: #4b5563; line-height: 1.4; }
.cert-header-num { text-align: right; white-space: nowrap; }
.cert-rule { height: 3px; background: linear-gradient(#143d2a, #143d2a) 0 0 / 100% 1px no-repeat, linear-gradient(#143d2a, #143d2a) 0 100% / 100% 1px no-repeat; margin: 10px 0 8px; }
.cert-title { text-align: center; font-size: 16px; letter-spacing: .18em; margin: 6px 0 12px; text-transform: uppercase; color: #143d2a; font-weight: 700; }
.cert-body { font-size: 12.5px; margin-bottom: 10px; text-align: justify; line-height: 1.75; }
.cert-place { margin-top: 12px; font-size: 12px; }
.cert-u { font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.cert-sig-row { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 16px; gap: 12px; }
.cert-sign { font-family: "Segoe Script", "Brush Script MT", cursive; font-size: 28px; color: #1e3a5f; line-height: 1; margin-bottom: 2px; }
.cert-sig-name { font-weight: 700; font-size: 12px; }
.cert-sig-esp, .cert-sig-crm { font-size: 10px; color: #444; }
.cert-sig-line { width: 150px; height: 1px; background: #111; margin-bottom: 4px; }
.cert-seal {
  width: 74px; height: 74px; border-radius: 50%;
  border: 2px solid #1a5c3a; color: #1a5c3a;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: rotate(-8deg); background: rgba(26,92,58,.04);
  box-shadow: inset 0 0 0 3px rgba(26,92,58,.25);
  flex-shrink: 0;
}
.cert-seal span { font-size: 7px; font-weight: 800; letter-spacing: .12em; font-family: inherit; }
.cert-seal strong { font-size: 12px; font-family: inherit; letter-spacing: .08em; }
.cert-seal em { font-size: 8px; font-style: normal; font-family: inherit; font-weight: 700; }
.cert-footer { display: flex; justify-content: space-between; align-items: flex-end; gap: 10px; margin-top: 14px; border-top: 1px solid #d6d0c2; padding-top: 8px; }
.cert-footer-lgpd { font-size: 8.5px; color: #666; line-height: 1.45; font-family: inherit; }
.cert-footer-qr { width: 40px; height: 40px; border: 1px solid #111; font-size: 8px; display: flex; align-items: center; justify-content: center; text-align: center; font-weight: 800; font-family: inherit; }
.cert-note { font-size: 12px; color: var(--text-3); margin-top: 10px; line-height: 1.45; }
.cert-trust { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.cert-trust span {
  font-size: 11px; font-weight: 700; color: #1a5c3a;
  background: #f0faf5; border: 1px solid #c7ead9;
  border-radius: 999px; padding: 5px 10px;
}
.cert-lock {
  position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 5;
  background: #fffdf8;
  color: #143d2a;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 4px;
  border: 1px solid #c9c2ae;
  box-shadow: 0 8px 24px rgba(20, 61, 42, .18);
  pointer-events: none;
}
.cert-lock-ico {
  width: 36px; height: 36px; border-radius: 50%;
  background: #143d2a; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin: 0;
}
.cert-lock-ico svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }
.cert-lock-copy { flex: 1; min-width: 0; }
.cert-lock p { font-size: 13px; font-weight: 700; color: #143d2a; line-height: 1.25; font-family: inherit; }
.cert-lock span { font-size: 11px; color: #5b6b63; font-family: inherit; }
.cert-lock em {
  font-style: normal; font-family: inherit;
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  color: #fff; background: #143d2a;
  padding: 6px 10px; border-radius: 3px; white-space: nowrap;
}
.total-row { display: flex; justify-content: space-between; padding: 14px 0; font-size: 18px; font-weight: 800; }
.terms-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.45; cursor: pointer; }
.terms-row input { margin-top: 3px; }

.trust-load {
  position: fixed; inset: 0; z-index: 300;
  background: linear-gradient(180deg, #f4fbf7 0%, #fff 60%);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.trust-load__card { text-align: center; max-width: 360px; width: 100%; }
.trust-load__logo { width: 64px; height: 64px; border-radius: 18px; overflow: hidden; margin: 0 auto 16px; background: var(--green); box-shadow: 0 12px 30px rgba(0,166,90,.25); }
.trust-load__logo img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.trust-load h2 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.trust-load p { color: var(--text-3); margin-bottom: 24px; }
.trust-slide { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow-sm); font-weight: 700; }
.trust-dots { display: flex; justify-content: center; gap: 6px; margin-top: 18px; }
.trust-dots i { width: 8px; height: 8px; border-radius: 50%; background: #c7ead9; display: block; }
.trust-dots i.on { background: var(--green); }

.section-title { font-size: 14px; font-weight: 700; margin: 8px 0; }
.mb-20 { margin-bottom: 20px; }
.plan-mini { display: grid; gap: 6px; }
.plan-mini-row { display: flex; gap: 8px; font-size: 13px; color: var(--text-2); }
.plan-mini-row svg { width: 14px; height: 14px; stroke: var(--green); fill: none; flex-shrink: 0; }
.plan-deal {
  border: 2px solid #b8dfc9; border-radius: 16px; overflow: hidden;
  background: #f4fdf8; cursor: pointer;
}
.plan-deal.checked { border-color: var(--green); box-shadow: 0 8px 20px rgba(0,166,90,.12); }
.plan-deal-top {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg,#0f4f30,#1a7040); color: #fff;
  padding: 11px 14px; font-weight: 800; font-size: 14px;
}
.plan-deal-off {
  background: #fff; color: #0f4f30; font-size: 10px; font-weight: 800;
  padding: 3px 8px; border-radius: 999px; letter-spacing: .2px;
}
.plan-deal-body { display: flex; align-items: flex-start; gap: 10px; padding: 14px 14px 8px; }
.plan-deal-check {
  width: 22px; height: 22px; border: 2px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; background: #fff;
}
.plan-deal.checked .plan-deal-check { background: var(--green); border-color: var(--green); }
.plan-deal-check svg { width: 12px; height: 12px; stroke: #fff; fill: none; opacity: 0; }
.plan-deal.checked .plan-deal-check svg { opacity: 1; }
.plan-deal-copy { flex: 1; min-width: 0; }
.plan-deal-copy strong { display: block; font-size: 14px; margin-bottom: 4px; }
.plan-deal-copy p { font-size: 12.5px; color: var(--text-2); line-height: 1.45; }
.plan-deal-price { text-align: right; flex-shrink: 0; }
.plan-deal-price s { display: block; font-size: 11px; color: #94a3b8; }
.plan-deal-price b { display: block; font-size: 18px; color: var(--green-dd); line-height: 1.1; }
.plan-deal-price span { font-size: 11px; color: #888; font-weight: 600; }
.plan-deal-list { list-style: none; padding: 0 14px 14px 46px; margin: 0; }
.plan-deal-list li { font-size: 12.5px; color: var(--text-2); padding: 3px 0; position: relative; }
.plan-deal-list li::before { content: "✓"; position: absolute; left: -16px; color: var(--green); font-weight: 800; }

.footer-sep { margin: 0 8px; color: #94a3b8; }

.trust-slide__ico {
  width: 40px; height: 40px; border-radius: 12px; background: var(--green-l);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-slide__ico svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 2; }

.hosp-err { font-size: 13px; font-weight: 700; color: #dc2626; margin: 10px 0 0; }

.pix-qr-box { position: relative; min-height: 160px; min-width: 160px; }
.pix-wait {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; min-width: 180px; min-height: 160px; padding: 12px;
}
.pix-wait strong { font-size: 14px; color: var(--text); }
.pix-wait span { font-size: 12px; color: var(--text-3); }
.pix-wait__spin {
  width: 28px; height: 28px; border-radius: 50%;
  border: 3px solid var(--green-l); border-top-color: var(--green);
  animation: pixspin .8s linear infinite;
}
@keyframes pixspin { to { transform: rotate(360deg); } }
.pix-retry {
  margin-top: 8px; background: var(--green); color: #fff; border: none;
  border-radius: 10px; padding: 10px 16px; font-weight: 700; cursor: pointer; font-family: inherit;
}

.pix-method {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border: 2px solid #32BCAD;
  border-radius: 12px; background: #f3fbfa; margin-bottom: 12px;
}
.pix-method-ico {
  width: 36px; height: 36px; border-radius: 8px; background: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #d2f0ec; flex-shrink: 0;
}
.pix-method-ico svg, .pix-method-ico img { width: 26px; height: 26px; display: block; object-fit: contain; }
.pix-method-txt { flex: 1; min-width: 0; }
.pix-method-txt strong { display: block; font-size: 15px; font-weight: 800; color: #111; line-height: 1.1; }
.pix-method-txt span { font-size: 11px; color: #5b6b73; font-weight: 600; }
.pix-method-badge {
  background: #32BCAD; color: #fff; font-size: 9px; font-weight: 800;
  padding: 4px 8px; border-radius: 4px; letter-spacing: .3px; white-space: nowrap;
}
.pix-pay-logo {
  width: 56px; height: 56px; border-radius: 14px; background: #f3fbfa;
  border: 1px solid #d2f0ec; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.pix-pay-logo svg, .pix-pay-logo img { width: 36px; height: 36px; display: block; object-fit: contain; }

.plan-modal {
  position: fixed; inset: 0; z-index: 400; background: #fff;
  overflow: auto; padding: 24px 16px 40px;
}
.plan-modal-hdr { text-align: center; margin-bottom: 18px; }
.plan-modal-hdr-icon {
  width: 56px; height: 56px; border-radius: 16px; background: var(--green);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
}
.plan-modal-hdr-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2; }
.plan-modal-hdr h2 { font-size: 22px; font-weight: 800; }
.plan-modal-hdr p { color: var(--text-3); font-size: 14px; margin-top: 4px; }
.plan-benefits { max-width: 420px; margin: 0 auto 20px; display: grid; gap: 10px; }
.plan-benefit { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.plan-benefit-check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.plan-benefit-check svg { width: 12px; height: 12px; stroke: #fff; fill: none; stroke-width: 3; }
.plan-pix-section { max-width: 420px; margin: 0 auto; }
.plan-price-label { text-align: center; font-size: 13px; color: var(--text-3); }
.plan-price-val { text-align: center; font-size: 32px; font-weight: 800; color: var(--green); }
.plan-price-sub { text-align: center; font-size: 12px; color: var(--text-3); margin-bottom: 14px; }

.modal-overlay {
  position: fixed; inset: 0; z-index: 500; background: rgba(15,23,42,.55);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-box {
  background: #fff; border-radius: 20px; padding: 28px 22px; max-width: 420px; width: 100%;
  text-align: center; box-shadow: var(--shadow-lg);
}
.modal-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.modal-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2.5; }
.modal-title { font-size: 22px; font-weight: 800; }
.modal-sub { color: var(--text-3); margin: 6px 0 16px; }
.modal-info { background: var(--green-l); border-radius: 14px; padding: 14px; text-align: left; }
.modal-info-title { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; margin-bottom: 6px; }
.modal-info-title svg { width: 16px; height: 16px; stroke: var(--green); fill: none; }
.modal-info-body { font-size: 13px; color: var(--text-2); }
.modal-email-box { margin-top: 10px; font-size: 13px; font-weight: 700; color: var(--green-dd); }
.modal-note { font-size: 12px; color: var(--text-3); margin: 14px 0; }
.modal-btn {
  width: 100%; background: var(--green); color: #fff; border: none; border-radius: 14px;
  padding: 14px; font-weight: 800; cursor: pointer; font-family: inherit;
}
