@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --radius: 1rem;
  --background: oklch(0.985 0.008 300);
  --foreground: oklch(0.22 0.08 300);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.22 0.08 300);
  --primary: oklch(0.32 0.16 300);
  --primary-foreground: oklch(0.985 0.008 300);
  --secondary: oklch(0.96 0.02 300);
  --muted: oklch(0.96 0.02 300);
  --muted-foreground: oklch(0.5 0.06 300);
  --accent: oklch(0.45 0.27 305);
  --accent-foreground: oklch(1 0 0);
  --brand: oklch(0.32 0.16 300);
  --surface: oklch(0.985 0.008 300);
  --border: oklch(0.929 0.013 255.508);
  --shadow-elegant: 0 25px 60px -25px oklch(0.32 0.16 300 / 0.35);
  --shadow-glow: 0 20px 50px -15px oklch(0.65 0.24 300 / 0.45);
}

body {
  font-family: 'Manrope', 'Plus Jakarta Sans', sans-serif;
  background-color: var(--background);
  color: var(--brand);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 16px; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--background);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.header-logo { display: flex; align-items: center; color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 4px; }
.btn-cta {
  border-radius: 9999px;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.2s;
}
.btn-cta:hover { opacity: 0.9; }
.btn-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9999px;
  color: var(--accent);
  transition: background 0.2s;
}
.btn-icon:hover { background: oklch(0.45 0.27 305 / 0.1); }

/* ===== DRAWER OVERLAY ===== */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 60;
  background: oklch(0.32 0.16 300 / 0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* ===== DRAWER ===== */
.drawer {
  position: fixed; inset-y: 0; right: 0; z-index: 70;
  width: 100%; max-width: 448px;
  background: var(--background);
  box-shadow: -20px 0 60px -10px rgba(0,0,0,0.15);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer.open { transform: translateX(0); }
.drawer-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid oklch(0.32 0.16 300 / 0.05);
}
.drawer-body { flex: 1; overflow-y: auto; transition: transform 0.3s; }
.drawer-body.hidden-left { transform: translateX(-100%); }
.drawer-section { padding: 24px 20px; }
.drawer-section + .drawer-section { padding-top: 0; }
.drawer-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: oklch(0.32 0.16 300 / 0.5);
  margin-bottom: 12px;
}
.drawer-link {
  display: block; border-radius: 12px;
  padding: 12px 0; font-size: 15px; font-weight: 500;
  transition: background 0.15s;
}
.drawer-link:hover { background: oklch(0.32 0.16 300 / 0.05); padding-left: 8px; }
.drawer-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; border-radius: 16px;
  border: 1px solid oklch(0.32 0.16 300 / 0.05);
  padding: 16px; margin-bottom: 8px;
  transition: border-color 0.15s, background 0.15s;
  background: none; width: 100%; text-align: left;
}
.drawer-card:hover { border-color: oklch(0.45 0.27 305 / 0.4); background: oklch(0.45 0.27 305 / 0.05); }
.drawer-card-title { font-size: 15px; font-weight: 700; color: var(--brand); }
.drawer-card-desc { font-size: 13px; color: oklch(0.32 0.16 300 / 0.5); margin-top: 2px; }
.drawer-cta {
  display: block; border-radius: 16px;
  background: var(--accent); padding: 16px;
  text-align: center; font-size: 15px; font-weight: 700;
  color: var(--brand); margin: 24px 20px;
  transition: box-shadow 0.2s;
}
.drawer-cta:hover { box-shadow: var(--shadow-glow); }

/* Submenu panel */
.submenu-panel {
  position: absolute; inset: 0; top: 68px;
  background: var(--background);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s;
}
.submenu-panel.open { transform: translateX(0); }
.submenu-topbar {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid oklch(0.32 0.16 300 / 0.05);
}
.submenu-topbar h3 { font-size: 18px; font-weight: 700; }
.submenu-body { flex: 1; overflow-y: auto; padding: 24px 20px; }

/* ===== HERO / CAROUSEL ===== */
.hero-section {
  background: var(--background);
  padding: 24px 16px;
  text-align: center;
}
.hero-inner {
  max-width: 360px; margin: 0 auto;
}
.hero-title {
  font-size: 28px; font-weight: 800;
  line-height: 1; letter-spacing: -0.03em;
  color: var(--brand); margin-top: 12px;
}
.hero-title span { color: var(--accent); }
.hero-subtitle {
  font-size: 15px; font-weight: 600;
  line-height: 1.4; color: oklch(0.32 0.16 300 / 0.8);
  margin-top: 12px;
}
.hero-subtitle strong { font-size: 18px; font-weight: 800; color: var(--accent); }
.hero-img-wrap {
  display: flex; align-items: center; justify-content: center;
  margin-top: 8px;
}
.hero-img {
  width: 100%; max-width: 230px;
  height: auto; object-fit: contain;
  animation: float 4s ease-in-out infinite;
}
.hero-benefits {
  max-width: 320px; margin: 24px auto 0;
  display: flex; flex-direction: column; gap: 12px;
  text-align: left;
}
.benefit-item {
  display: flex; align-items: flex-start; gap: 12px;
  border-radius: 16px;
  background: oklch(0.45 0.27 305 / 0.05);
  padding: 12px;
  ring: 1px solid oklch(0.45 0.27 305 / 0.15);
  border: 1px solid oklch(0.45 0.27 305 / 0.15);
}
.benefit-check {
  margin-top: 2px;
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9999px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 13px; font-weight: 800;
}
.benefit-text { font-size: 14px; line-height: 1.4; color: var(--brand); }
.benefit-text strong { font-weight: 800; color: var(--accent); }
.hero-btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9999px; background: var(--accent);
  padding: 16px 32px; font-size: 15px; font-weight: 700;
  color: var(--accent-foreground); margin-top: 32px;
  transition: opacity 0.2s;
}
.hero-btn:hover { opacity: 0.9; }
.hero-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 24px;
}
.nav-arrow {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9999px;
  background: var(--muted); color: oklch(0.32 0.16 300 / 0.7);
  transition: background 0.2s;
}
.nav-arrow:hover { background: oklch(0.32 0.16 300 / 0.1); }

/* ===== STEPS CAROUSEL ===== */
.steps-section {
  background: var(--background);
  padding: 8px 20px 32px;
}
.steps-card {
  max-width: 384px; margin: 0 auto;
  border-radius: 24px; background: var(--background);
  padding: 24px; border: 1px solid oklch(0.32 0.16 300 / 0.05);
}
.steps-title {
  text-align: center; font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em; color: var(--brand);
}
.steps-progress {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 8px; margin-top: 24px;
}
.step-num {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9999px; font-size: 14px; font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.step-num.active { background: var(--accent); color: var(--accent-foreground); }
.step-num.inactive {
  border: 1px solid oklch(0.32 0.16 300 / 0.15);
  background: var(--background); color: oklch(0.32 0.16 300 / 0.4);
}
.step-line {
  height: 3px; width: 48px; border-radius: 9999px;
  transition: background 0.2s;
}
.step-line.done { background: var(--accent); }
.step-line.undone { background: oklch(0.32 0.16 300 / 0.1); }
.steps-slide-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin-top: 24px;
}
.slide-btn {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9999px; background: var(--background);
  color: var(--accent); box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.2s;
}
.slide-btn:hover { background: oklch(0.45 0.27 305 / 0.1); }
.steps-img-container {
  position: relative; height: 280px; flex: 1;
}
.step-img {
  position: absolute; inset: 0; margin: auto;
  height: 100%; width: 100%; object-fit: contain;
  transition: opacity 0.3s;
}
.step-img.hidden { opacity: 0; pointer-events: none; }
.steps-caption {
  max-width: 280px; margin: 20px auto 0;
  text-align: center; font-size: 15px; font-weight: 600;
  line-height: 1.4; color: var(--brand);
}
.steps-dots {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 20px;
}
.step-dot {
  width: 8px; height: 8px; border-radius: 9999px;
  transition: background 0.2s; border: none;
}
.step-dot.active { background: var(--accent); }
.step-dot.inactive { background: oklch(0.32 0.16 300 / 0.15); }

/* ===== STATS ===== */
.stats-section { background: var(--background); padding: 0 20px 24px; }
.stats-grid {
  max-width: 384px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; border-radius: 20px; background: var(--background);
  padding: 20px; border: 1px solid oklch(0.32 0.16 300 / 0.05);
}
.stat-item { text-align: center; }
.stat-number { font-size: 20px; font-weight: 800; line-height: 1; color: var(--accent); }
.stat-label { margin-top: 8px; font-size: 12px; color: oklch(0.32 0.16 300 / 0.7); }

/* ===== VER LIMITE ===== */
.limit-section { background: var(--background); padding: 0 20px 24px; }
.limit-card {
  max-width: 384px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
  border-radius: 20px; background: var(--background);
  padding: 20px; border: 1px solid oklch(0.32 0.16 300 / 0.05);
  transition: background 0.2s;
}
.limit-card:hover { background: oklch(0.45 0.27 305 / 0.05); }
.limit-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px; background: oklch(0.45 0.27 305 / 0.1);
}
.limit-icon svg { color: var(--accent); }
.limit-text { flex: 1; }
.limit-text strong { font-size: 15px; font-weight: 700; color: var(--brand); }
.limit-text p { font-size: 13px; color: oklch(0.32 0.16 300 / 0.7); }
.limit-chevron { color: var(--accent); }

/* ===== TESTIMONIAL ===== */
.testimonial-section { background: var(--background); padding: 0 20px 40px; }
.testimonial-card {
  max-width: 384px; margin: 0 auto;
  border-radius: 20px; background: var(--background);
  padding: 20px; border: 1px solid oklch(0.32 0.16 300 / 0.05);
}
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testimonial-icon-wrap {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9999px; background: oklch(0.45 0.27 305 / 0.1);
}
.testimonial-title { font-size: 15px; font-weight: 700; color: var(--brand); }
.testimonial-body { border-left: 4px solid var(--accent); padding-left: 16px; }
.testimonial-text {
  font-style: italic; font-size: 14px;
  line-height: 1.6; color: oklch(0.32 0.16 300 / 0.8);
}
.testimonial-author { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--brand); }
.stars { display: flex; gap: 2px; color: var(--accent); }
.stars svg { fill: var(--accent); }

/* ===== FOOTER ===== */
.site-footer { background: var(--background); padding: 32px 0 40px; color: var(--brand); }
.footer-inner {
  max-width: 384px; margin: 0 auto;
  padding: 0 20px;
  display: flex; flex-direction: column; gap: 24px;
  font-size: 14px;
}
.footer-block { border-bottom: 1px solid oklch(0.32 0.16 300 / 0.1); padding-bottom: 20px; }
.footer-block h4 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.footer-phone { font-size: 15px; font-weight: 700; color: var(--accent); margin-top: 4px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; color: oklch(0.32 0.16 300 / 0.7); margin-top: 8px; }
.footer-links a:hover { color: var(--accent); }
.footer-sub { font-size: 13px; color: oklch(0.32 0.16 300 / 0.7); }
.footer-email { font-size: 14px; font-weight: 700; color: var(--accent); }
.footer-email:hover { text-decoration: underline; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9999px;
  background: oklch(0.45 0.27 305 / 0.1);
  font-size: 12px; font-weight: 700; color: var(--accent);
  transition: background 0.2s;
}
.social-btn:hover { background: oklch(0.45 0.27 305 / 0.2); }
.footer-copy {
  font-size: 11px; line-height: 1.6;
  color: oklch(0.32 0.16 300 / 0.5);
  padding-top: 16px;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(1.3); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes progressFill {
  from { width: 0; }
}
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-spin { animation: spin 1s linear infinite; }
.animate-in { animation: fadeInUp 0.35s ease forwards; }

/* ===== SOLICITAR PAGE ===== */
.page-main { padding: 24px 20px 64px; }
.form-card {
  max-width: 448px; margin: 0 auto;
  border-radius: 24px; background: var(--background);
  padding: 20px;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.12);
  border: 1px solid oklch(0.32 0.16 300 / 0.05);
}
.progress-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; margin-bottom: 8px;
}
.progress-row span:first-child { font-weight: 600; color: oklch(0.32 0.16 300 / 0.7); }
.progress-row span:last-child { font-weight: 700; color: var(--accent); }
.progress-bar-track {
  height: 6px; width: 100%; border-radius: 9999px;
  background: var(--muted); overflow: hidden; margin-bottom: 20px;
}
.progress-bar-fill {
  height: 100%; border-radius: 9999px; background: var(--accent);
  transition: width 0.5s ease;
}
.form-title {
  font-size: 19px; font-weight: 800;
  line-height: 1.3; color: var(--brand); margin-bottom: 20px;
}
.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.option-btn-grid {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; border-radius: 16px;
  background: oklch(0.96 0.02 300 / 0.6);
  padding: 16px; text-align: center;
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
}
.option-btn-grid:hover { background: oklch(0.45 0.27 305 / 0.1); box-shadow: 0 0 0 2px var(--accent); }
.option-btn-grid:active { transform: scale(0.98); }
.option-icon-wrap {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9999px; background: oklch(0.45 0.27 305 / 0.15);
}
.option-icon-wrap svg { color: var(--accent); width: 22px; height: 22px; }
.option-label { font-size: 13.5px; font-weight: 700; line-height: 1.2; color: var(--brand); }
.options-list { display: flex; flex-direction: column; gap: 8px; }
.option-btn-list {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; border-radius: 9999px;
  border: 1px solid var(--muted); background: var(--background);
  padding: 14px 20px; font-size: 14.5px; font-weight: 700; color: var(--brand);
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}
.option-btn-list svg { color: var(--accent); width: 18px; height: 18px; }
.option-btn-list:hover { border-color: var(--accent); background: oklch(0.45 0.27 305 / 0.05); }
.option-btn-list:active { transform: scale(0.99); }
.form-hint { margin-top: 20px; text-align: center; font-size: 12px; color: oklch(0.32 0.16 300 / 0.6); }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 50;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 16px; background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  width: 100%; max-width: 384px;
  border-radius: 24px; background: var(--background);
  padding: 28px; text-align: center;
  box-shadow: var(--shadow-elegant);
  animation: fadeInUp 0.35s ease forwards;
}
@media (min-width: 640px) { .modal-overlay { align-items: center; } }
.modal-icon {
  width: 80px; height: 80px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9999px; background: oklch(0.45 0.27 305 / 0.15);
}
.modal-icon svg { color: var(--accent); width: 40px; height: 40px; }
.modal-title { font-size: 22px; font-weight: 800; line-height: 1.3; color: var(--brand); margin-bottom: 12px; }
.modal-desc { font-size: 15px; line-height: 1.6; color: oklch(0.32 0.16 300 / 0.7); margin-bottom: 24px; }
.modal-btn {
  width: 100%; border-radius: 9999px; background: var(--accent);
  padding: 16px 24px; font-size: 16px; font-weight: 700;
  color: var(--accent-foreground); transition: opacity 0.2s;
}
.modal-btn:hover { opacity: 0.9; }

/* ===== CADASTRO / CONSENT ===== */
.consent-title {
  font-size: 26px; font-weight: 800; line-height: 1.2;
  text-align: center; color: var(--brand); margin-bottom: 12px;
}
.consent-sub {
  font-size: 15px; color: oklch(0.32 0.16 300 / 0.7);
  text-align: center; margin-bottom: 32px;
}
.consent-list { display: flex; flex-direction: column; gap: 12px; }
.consent-item {
  display: flex; align-items: flex-start; gap: 16px;
  border-radius: 16px; background: oklch(0.96 0.02 300 / 0.6);
  padding: 20px;
}
.consent-item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); width: 28px; height: 28px; }
.consent-item p { font-size: 14px; line-height: 1.6; color: oklch(0.32 0.16 300 / 0.85); }
.btn-primary {
  display: block; width: 100%; border-radius: 9999px; background: var(--accent);
  padding: 16px 24px; text-align: center; font-size: 16px; font-weight: 700;
  color: var(--accent-foreground); transition: opacity 0.2s; margin-top: 32px;
}
.btn-primary:hover { opacity: 0.9; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; background: var(--muted); color: oklch(0.32 0.16 300 / 0.4); }

/* TRUST BADGE */
.trust-badge {
  margin-top: 20px; display: flex; align-items: flex-start; gap: 12px;
  border-radius: 16px; background: #ecfdf5; padding: 16px;
  border: 1px solid #bbf7d0;
}
.trust-badge svg { flex-shrink: 0; margin-top: 2px; color: #16a34a; width: 20px; height: 20px; }
.trust-badge p { font-size: 13px; line-height: 1.5; color: #14532d; }
.trust-hint { margin-top: 12px; text-align: center; font-size: 12px; color: oklch(0.32 0.16 300 / 0.6); }

/* CARD SHELL */
.card-shell {
  border-radius: 24px; background: var(--background);
  padding: 24px;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.12);
  border: 1px solid oklch(0.32 0.16 300 / 0.05);
}

/* FIELD */
.field-label-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.field-label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: oklch(0.32 0.16 300 / 0.6); }
.field-edit { font-size: 13px; font-weight: 700; color: var(--accent); }
.field-edit:hover { text-decoration: underline; }
.field-input-wrap {
  display: flex; align-items: center; gap: 12px;
  border-radius: 16px; border: 1px solid var(--muted);
  background: var(--background); padding: 14px 16px;
  transition: border-color 0.2s;
}
.field-input-wrap:focus-within { border-color: var(--accent); }
.field-input-wrap.readonly { opacity: 0.9; }
.field-input-wrap svg { width: 18px; height: 18px; color: oklch(0.32 0.16 300 / 0.5); flex-shrink: 0; }
.field-input-wrap input {
  flex: 1; background: transparent; border: none; outline: none;
  font-size: 16px; font-weight: 600; color: var(--brand);
}
.field-input-wrap input::placeholder { font-weight: 400; color: oklch(0.32 0.16 300 / 0.4); }

/* INFO / STATUS boxes */
.info-box {
  display: flex; align-items: flex-start; gap: 8px;
  border-radius: 12px; padding: 12px;
  background: oklch(0.45 0.27 305 / 0.1);
}
.info-box svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.info-box p { font-size: 12.5px; line-height: 1.5; color: oklch(0.32 0.16 300 / 0.8); }
.error-box {
  display: flex; align-items: flex-start; gap: 8px;
  border-radius: 12px; padding: 12px;
  background: #fef2f2; border: 1px solid #fecaca;
}
.error-box svg { width: 16px; height: 16px; color: #dc2626; flex-shrink: 0; margin-top: 2px; }
.error-box p { font-size: 12.5px; line-height: 1.5; color: #7f1d1d; }
.success-box {
  display: flex; align-items: flex-start; gap: 8px;
  border-radius: 12px; padding: 12px;
  background: #ecfdf5; border: 1px solid #bbf7d0;
}
.success-box svg { width: 16px; height: 16px; color: #16a34a; flex-shrink: 0; margin-top: 2px; }
.success-box p { font-size: 12.5px; line-height: 1.5; color: #14532d; }

/* LOADER SPINNER */
.spinner {
  width: 18px; height: 18px;
  border-radius: 9999px;
  border: 2px solid var(--accent);
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

/* CARD MOCK */
.card-mock {
  position: relative; aspect-ratio: 1.586 / 1; width: 100%;
  overflow: hidden; border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.card-mock img { width: 100%; height: 100%; object-fit: cover; }

/* PROCESSING / CALC SCREEN */
.processing-card {
  border-radius: 24px; background: var(--background); padding: 24px;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.12);
  border: 1px solid oklch(0.32 0.16 300 / 0.05);
}
.processing-title { text-align: center; font-size: 22px; font-weight: 800; line-height: 1.3; color: var(--brand); }
.processing-sub { margin-top: 8px; text-align: center; font-size: 14px; line-height: 1.5; color: oklch(0.32 0.16 300 / 0.7); }
.processing-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.processing-item { display: flex; align-items: center; gap: 12px; }
.processing-item-icon { flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 9999px; }
.processing-item-icon.done { background: #22c55e; }
.processing-item-icon.done svg { color: #fff; width: 16px; height: 16px; }
.processing-item-icon.active { box-shadow: 0 0 0 2px var(--accent); }
.processing-item-icon.active svg { width: 14px; height: 14px; }
.processing-item-icon.pending { box-shadow: 0 0 0 2px oklch(0.32 0.16 300 / 0.15); }
.processing-item-label { font-size: 14.5px; color: var(--brand); }
.processing-item-label.dim { color: oklch(0.32 0.16 300 / 0.4); }

/* APPROVED */
.approved-limit-box {
  margin-top: 16px; border-radius: 16px;
  background: linear-gradient(135deg, oklch(0.45 0.27 305 / 0.2), oklch(0.45 0.27 305 / 0.1), oklch(0.45 0.27 305 / 0.2));
  padding: 20px; text-align: center;
  border: 1px solid oklch(0.45 0.27 305 / 0.3);
}

/* SHIPPING OPTIONS */
.shipping-option {
  position: relative; display: flex; align-items: flex-start; gap: 12px;
  border-radius: 16px; background: var(--background);
  padding: 16px; text-align: left; width: 100%;
  transition: box-shadow 0.15s;
  margin-top: 8px;
}
.shipping-option.picked { box-shadow: 0 0 0 2px var(--accent), 0 4px 20px -8px rgba(0,0,0,0.15); }
.shipping-option.unpicked { border: 1px solid oklch(0.32 0.16 300 / 0.1); }
.shipping-badge {
  position: absolute; top: -8px; right: 16px;
  border-radius: 9999px; background: #f97316;
  padding: 2px 12px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: #fff;
}
.shipping-icon-wrap {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9999px; background: oklch(0.45 0.27 305 / 0.15);
}
.shipping-icon-wrap svg { color: var(--accent); width: 20px; height: 20px; }
.shipping-title { font-size: 15px; font-weight: 700; color: var(--brand); }
.shipping-desc { margin-top: 2px; font-size: 13px; line-height: 1.5; color: oklch(0.32 0.16 300 / 0.7); }
.shipping-time { margin-top: 4px; display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: oklch(0.32 0.16 300 / 0.8); }
.shipping-time svg { width: 14px; height: 14px; }
.shipping-price { font-size: 16px; font-weight: 800; color: var(--brand); flex-shrink: 0; }

/* ADDON CARD */
.addon-card { margin-top: 12px; border-radius: 16px; padding: 12px; border: 1px solid oklch(0.32 0.16 300 / 0.1); background: var(--background); }
.addon-row { display: flex; align-items: flex-start; gap: 12px; }
.addon-check {
  margin-top: 2px; width: 16px; height: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 3px;
}
.addon-check.checked { background: #1d7afc; color: #fff; }
.addon-check.unchecked { border: 2px solid oklch(0.32 0.16 300 / 0.3); background: var(--background); }
.addon-check svg { width: 12px; height: 12px; }
.addon-title { font-size: 14.5px; font-weight: 800; color: var(--brand); }
.addon-desc { margin-top: 2px; font-size: 13px; line-height: 1.5; color: oklch(0.32 0.16 300 / 0.7); }
.addon-price { font-size: 15px; font-weight: 800; color: #15803d; }
.addon-tag {
  margin-top: 8px; display: inline-block;
  border-radius: 9999px; background: oklch(0.45 0.27 305 / 0.15);
  padding: 2px 10px; font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent);
}

/* ADDRESS FORM */
.addr-label { display: block; font-size: 13px; font-weight: 600; color: oklch(0.32 0.16 300 / 0.8); margin-bottom: 6px; }
.addr-input {
  height: 44px; width: 100%; border-radius: 12px;
  border: 1px solid oklch(0.32 0.16 300 / 0.15);
  background: var(--background); padding: 0 12px;
  font-size: 16px; font-family: inherit; outline: none;
  transition: border-color 0.2s; color: var(--brand);
}
.addr-input:focus { border-color: var(--accent); }
.addr-input:disabled { opacity: 0.6; }
.addr-grid-3 { display: grid; grid-template-columns: 1fr 2fr; gap: 12px; }

/* FAQ */
.faq-item {
  border-radius: 16px; background: var(--background); padding: 16px;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.08);
  border: 1px solid oklch(0.32 0.16 300 / 0.05);
}
.faq-btn { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 8px; text-align: left; }
.faq-q { font-size: 14.5px; font-weight: 700; color: var(--brand); }
.faq-chevron { flex-shrink: 0; color: oklch(0.32 0.16 300 / 0.6); transition: transform 0.2s; }
.faq-chevron.open { transform: rotate(180deg); }
.faq-a { margin-top: 8px; font-size: 13.5px; line-height: 1.5; color: oklch(0.32 0.16 300 / 0.8); display: none; }
.faq-a.open { display: block; }

/* PAGAMENTO */
.payment-section {
  border-radius: 16px; background: var(--background); padding: 20px;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.08);
  border: 1px solid oklch(0.32 0.16 300 / 0.05);
}
.payment-section h2 { font-size: 18px; font-weight: 800; color: var(--brand); margin-bottom: 12px; }
.payment-item {
  border-radius: 9999px; background: oklch(0.96 0.02 300 / 0.5);
  padding: 10px 16px; font-size: 14px; color: oklch(0.32 0.16 300 / 0.8);
  border: 1px solid oklch(0.32 0.16 300 / 0.05); margin-bottom: 8px;
}
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.review-photo { position: relative; overflow: hidden; border-radius: 12px; border: 1px solid oklch(0.32 0.16 300 / 0.05); }
.review-photo img { aspect-ratio: 1/1; width: 100%; object-fit: cover; }
.review-photo-caption {
  position: absolute; inset-x: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 6px 8px; text-align: center;
}
.review-photo-caption p { font-size: 11px; font-weight: 700; color: #fff; }
.review-item { border-radius: 16px; background: var(--background); padding: 16px; border: 1px solid oklch(0.32 0.16 300 / 0.05); }
.review-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.review-name { font-size: 14px; font-weight: 700; color: var(--brand); }
.review-when { font-size: 12px; color: oklch(0.32 0.16 300 / 0.6); }
.review-text { margin-top: 6px; font-size: 13px; line-height: 1.5; color: oklch(0.32 0.16 300 / 0.75); }

/* HERO IMAGE (cadastro) */
.cadastro-hero {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 24px;
}
.cadastro-hero-img {
  width: 176px; height: 176px; border-radius: 9999px;
  overflow: hidden; object-fit: cover;
  background: linear-gradient(135deg, oklch(0.45 0.27 305 / 0.4), oklch(0.45 0.27 305 / 0.1), oklch(0.45 0.27 305 / 0.3));
  box-shadow: 0 0 0 4px oklch(0.45 0.27 305 / 0.1);
}
.cadastro-hero p { margin-top: 12px; text-align: center; font-size: 13px; color: oklch(0.32 0.16 300 / 0.6); }

/* TIMER */
.timer-box {
  border-radius: 16px; background: #fef2f2; padding: 12px;
  text-align: center; border: 1px solid #fecaca;
}
.timer-num { font-size: 16px; font-weight: 800; color: #b91c1c; }
.timer-msg { font-size: 12.5px; line-height: 1.5; color: oklch(0.7 0.191 22.216 / 0.9); }

/* MELI+ BANNER */
.meli-banner {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(to right, #4a0a6b, #6b1391, #8a1bb8);
  padding: 10px 12px; border-radius: 16px 16px 0 0;
}
.meli-promo {
  border-radius: 9999px; background: rgba(255,255,255,0.95);
  padding: 2px 10px; font-size: 11px; font-weight: 800;
  letter-spacing: 0.05em; color: #4a0a6b;
}

/* CONSOLIDADO TABLE */
.consolidado-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-size: 14px; }
.consolidado-label { color: oklch(0.32 0.16 300 / 0.7); }
.consolidado-value { font-weight: 700; color: var(--brand); text-align: right; }
.consolidado-value.green { color: #15803d; }
.consolidado-old { font-size: 12px; color: oklch(0.32 0.16 300 / 0.4); text-decoration: line-through; margin-left: 8px; }
.total-box {
  margin-top: 12px; border-radius: 12px; background: #ecfdf5; padding: 12px;
  border: 1px solid #bbf7d0;
}
.total-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.total-label { font-size: 13.5px; font-weight: 700; line-height: 1.4; color: var(--brand); }
.total-label small { font-size: 12px; font-weight: 600; color: oklch(0.32 0.16 300 / 0.7); }
.total-value { font-size: 26px; font-weight: 800; color: var(--brand); }
.total-discount { margin-top: 4px; font-size: 12.5px; font-weight: 600; color: #15803d; }

/* UTILIDADES */
.hidden { display: none !important; }
.space-y-3 > * + * { margin-top: 12px; }
.space-y-4 > * + * { margin-top: 16px; }
