@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
  --primary: #FF6B35;
  --primary-dark: #E05520;
  --primary-light: #FFF0E9;
  --secondary: #1A1A2E;
  --accent: #FFD166;
  --bg: #FAFAFA;
  --bg-card: #FFFFFF;
  --surface: #F4F4F5;
  --surface2: #E8E8ED;
  --text: #1A1A2E;
  --text2: #374151;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E0E0E6;
  --green: #059669;
  --green-light: #ECFDF5;
  --red: #DC2626;
  --red-light: #FEF2F2;
  --amber: #D97706;
  --amber-light: #FFFBEB;
  --blue: #2563EB;
  --blue-light: #EFF6FF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  padding-top: 56px;
}

/* ══════════════════════════════════════════
   HEADER (layout.js)
   ══════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.logo {
  font-family: 'Sora', sans-serif; font-size: .95rem; font-weight: 800;
  color: var(--text); text-decoration: none; white-space: nowrap;
}
.logo span { color: var(--primary); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  color: var(--text-muted); text-decoration: none; font-size: .82rem;
  font-weight: 500; padding: 6px 12px; border-radius: 20px; transition: all .2s;
}
.nav-menu a:hover { color: var(--text); background: rgba(0,0,0,.04); }
.nav-menu a.active { color: var(--primary); font-weight: 700; }
.nav-menu a.nav-cta {
  background: var(--primary); color: #fff !important; font-weight: 700;
  padding: 6px 16px !important; margin-left: 4px;
}
.nav-menu a.nav-cta:hover { background: var(--primary-dark); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 8px; z-index: 110;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════════
   FOOTER (layout.js)
   ══════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border); background: var(--secondary);
  padding: 0; margin-top: 60px; color: #E5E7EB;
}
.community-bar {
  max-width: 900px; margin: 0 auto; padding: 20px 24px;
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.community-bar .community-label { font-size: .78rem; font-weight: 600; color: #9CA3AF; }
.community-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 50px; font-size: .82rem; font-weight: 700;
  text-decoration: none; transition: all .25s; border: none; cursor: pointer;
}
.community-btn:hover { transform: translateY(-2px); }
.community-btn.whatsapp { background: #25D366; color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,.3); }
.community-btn.whatsapp:hover { background: #1DB954; box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.community-btn.telegram { background: #0088CC; color: #fff; box-shadow: 0 4px 14px rgba(0,136,204,.3); }
.community-btn.telegram:hover { background: #006DAA; box-shadow: 0 6px 20px rgba(0,136,204,.4); }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 14px rgba(37,211,102,.3); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
}
.community-btn.whatsapp { animation: pulse-glow 3s ease-in-out infinite; }
.footer-content {
  max-width: 900px; margin: 0 auto; padding: 40px 24px 24px;
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.footer-brand { max-width: 280px; }
.footer-brand .logo { font-size: .9rem; display: inline-block; margin-bottom: 8px; color: #fff; }
.footer-brand .logo span { color: var(--primary); }
.footer-desc { font-size: .78rem; color: #9CA3AF; line-height: 1.6; }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 6px; }
.footer-col h4 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #9CA3AF; margin-bottom: 4px; }
.footer-col a { font-size: .8rem; color: #D1D5DB; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { max-width: 900px; margin: 0 auto; padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { font-size: .72rem; color: #6B7280; text-align: center; }

/* ══════════════════════════════════════════
   PAGE HEADER (sub-pages)
   ══════════════════════════════════════════ */
.page-header {
  padding: 56px 20px 20px; text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.06), transparent 70%);
  pointer-events: none;
}
.page-header h1 { font-family: 'Sora', sans-serif; font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; margin-bottom: 6px; }
.page-header h1 em { color: var(--primary); font-style: normal; }
.page-header p { color: var(--text-muted); font-size: .85rem; max-width: 480px; margin: 0 auto; line-height: 1.6; }
.hero-tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--primary); background: var(--primary-light);
  padding: 5px 14px; border-radius: 30px; margin-bottom: 16px;
}

/* ══════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════ */
.stats-bar {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  padding: 16px 20px; margin: 0 auto; max-width: 500px;
}
.stat { text-align: center; }
.stat-value { font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: .65rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 1px; }

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; font-size: .92rem; font-weight: 700;
  cursor: pointer; border: none; text-decoration: none; transition: all .25s;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 20px rgba(255,107,53,0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,53,0.35); }
.btn-outline { background: var(--bg-card); color: var(--text); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-secondary {
  background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 28px; border-radius: 50px; font-size: 1rem; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: all .2s; backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-afiliado {
  display: block; text-align: center; background: var(--primary); color: #fff;
  text-decoration: none; padding: 10px 18px; font-size: .82rem; font-weight: 700;
  border-radius: 50px; transition: all .2s; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.btn-afiliado:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ══════════════════════════════════════════
   FILTERS
   ══════════════════════════════════════════ */
.filters-section { max-width: 960px; margin: 0 auto; padding: 0 20px 20px; }
.filter-row { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.filter-btn {
  background: var(--surface); border: 1.5px solid transparent;
  color: var(--text-muted); font-size: .76rem; font-weight: 600;
  padding: 6px 14px; border-radius: 30px; cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary-light); border-color: var(--primary); color: var(--primary-dark); font-weight: 700; }
.filter-btn.disabled { opacity: .4; pointer-events: none; }
.filter-group {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  margin-bottom: 8px; overflow: hidden;
}
.filter-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; cursor: pointer; user-select: none;
}
.filter-header-left { display: flex; align-items: center; gap: 6px; }
.filter-label { font-size: .78rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .5px; }
.filter-active-tag { font-size: .68rem; font-weight: 600; color: var(--primary); background: var(--primary-light); padding: 2px 8px; border-radius: 10px; }
.filter-arrow { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: transform .25s; font-size: .85rem; }
.filter-group.open .filter-arrow { transform: rotate(180deg); }
.filter-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 16px; }
.filter-group.open .filter-body { max-height: 200px; padding: 0 16px 14px; }
.filter-hint { font-size: .7rem; color: var(--text-muted); margin-top: 6px; font-style: italic; display: none; }
.filter-hint.show { display: block; }

/* Filter pills (produtos page) */
.filter-pills { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; padding: 0 24px 24px; max-width: 700px; margin: 0 auto; }
.pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 30px;
  font-size: .82rem; font-weight: 600; cursor: pointer; border: 1.5px solid var(--border);
  background: var(--bg-card); color: var(--text); transition: all .2s; white-space: nowrap;
}
.pill:hover { border-color: var(--primary); color: var(--primary); }
.pill.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.pill .pill-count { font-size: .65rem; font-weight: 800; background: rgba(0,0,0,.08); padding: 2px 6px; border-radius: 10px; }
.pill.active .pill-count { background: rgba(255,255,255,.25); }

/* ══════════════════════════════════════════
   PRODUCT CARDS
   ══════════════════════════════════════════ */
.grid-section { max-width: 960px; margin: 0 auto; padding: 0 20px 50px; }
.products-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all .25s; display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.06); transform: translateY(-2px); border-color: rgba(255,107,53,.2); }
.product-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.product-card:hover .product-img img { transform: scale(1.03); }
.product-body { padding: 14px; display: flex; flex-direction: column; flex: 1; }
.product-comodo { font-size: .7rem; font-weight: 700; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .5px; }
.product-name { font-size: .88rem; font-weight: 700; margin-bottom: 3px; line-height: 1.3; }
.product-desc { font-size: .75rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px; flex: 1; }
.product-economia { font-size: .75rem; color: var(--green); font-weight: 700; margin-bottom: 6px; }
.product-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.price-atual { font-size: 1.05rem; font-weight: 800; color: var(--text); }
.price-de { font-size: .76rem; color: var(--text-muted); text-decoration: line-through; }
.price-off { font-size: .7rem; font-weight: 800; color: var(--red); background: var(--red-light); padding: 2px 7px; border-radius: 10px; }
.score-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.score-pill { font-size: .65rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.score-cb { background: var(--green-light); color: var(--green); }
.score-ap { background: var(--primary-light); color: var(--primary); }

/* Badges */
.badge-promo { position: absolute; top: 10px; left: 10px; background: var(--red); color: #fff; font-size: .68rem; font-weight: 800; padding: 3px 9px; border-radius: 20px; }
.badge-cb { position: absolute; top: 10px; right: 10px; background: var(--green); color: #fff; font-size: .68rem; font-weight: 800; padding: 3px 9px; border-radius: 20px; }
.badge-comodo { position: absolute; bottom: 10px; left: 10px; background: rgba(255,255,255,0.92); backdrop-filter: blur(4px); color: var(--text); font-size: .65rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.badge-estagio { position: absolute; top: 10px; right: 10px; font-size: .65rem; font-weight: 700; padding: 4px 10px; border-radius: 8px; }
.badge-estagio.dia-1 { background: var(--red-light); color: var(--red); }
.badge-estagio.semana-1 { background: var(--amber-light); color: var(--amber); }
.badge-estagio.mes-1 { background: var(--blue-light); color: var(--blue); }

/* ══════════════════════════════════════════
   KIT CARDS
   ══════════════════════════════════════════ */
.kits-section { max-width: 960px; margin: 0 auto; padding: 0 20px 50px; }
.kits-grid { display: grid; gap: 24px; }
.kit-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .25s; }
.kit-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.06); transform: translateY(-2px); }
.kit-top { padding: 24px 24px 16px; border-bottom: 1px solid var(--border); }
.kit-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.kit-nome { font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--text); }
.kit-badge { font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; white-space: nowrap; background: var(--green-light); color: var(--green); }
.kit-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }
.kit-items { padding: 12px 24px 16px; }
.kit-item { display: flex; align-items: center; gap: 14px; padding: 12px; margin-bottom: 8px; background: var(--surface); border-radius: 12px; transition: all .2s; }
.kit-item:last-child { margin-bottom: 0; }
.kit-item:hover { background: var(--primary-light); }
.kit-item-img { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--surface2); }
.kit-item-img img { width: 100%; height: 100%; object-fit: cover; }
.kit-item-info { flex: 1; min-width: 0; }
.kit-item-name { font-size: .85rem; font-weight: 700; color: var(--text); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kit-item-brand { font-size: .7rem; color: var(--text-muted); font-weight: 500; }
.kit-item-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.kit-item-prices { text-align: right; }
.kit-item-price { font-size: .9rem; font-weight: 800; color: var(--text); }
.kit-item-old { font-size: .7rem; color: var(--text-muted); text-decoration: line-through; }
.kit-item-off { font-size: .65rem; font-weight: 700; color: var(--red); background: var(--red-light); padding: 2px 6px; border-radius: 8px; margin-left: 4px; }
.kit-item-btn { display: inline-flex; align-items: center; gap: 4px; background: var(--primary); color: #fff; font-size: .72rem; font-weight: 700; padding: 7px 14px; border-radius: 20px; text-decoration: none; white-space: nowrap; transition: all .2s; border: none; cursor: pointer; }
.kit-item-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.kit-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; background: var(--surface); }
.kit-total-label { font-size: .72rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.kit-total-value { font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.kit-total-count { font-size: .72rem; color: var(--green); font-weight: 700; }
.btn-kit-all { display: inline-flex; align-items: center; gap: 6px; background: var(--text); color: #fff; font-size: .82rem; font-weight: 700; padding: 10px 20px; border-radius: 50px; text-decoration: none; border: none; cursor: pointer; transition: all .2s; }
.btn-kit-all:hover { background: var(--primary); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,107,53,0.25); }

/* ══════════════════════════════════════════
   BANNER CTA
   ══════════════════════════════════════════ */
.banner-cta { max-width: 960px; margin: 0 auto 50px; padding: 0 20px; }
.banner-inner {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px;
  padding: 28px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.banner-inner h2 { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 800; }
.banner-inner p { color: var(--text-muted); font-size: .85rem; }

/* ══════════════════════════════════════════
   HOME — WIZARD (index.html)
   ══════════════════════════════════════════ */
.view {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center; padding: 72px 24px 40px;
  position: relative; overflow: hidden;
}
.view::before { content: ''; position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,107,53,0.07), transparent 70%); pointer-events: none; }
.screen { display: none; flex-direction: column; align-items: center; width: 100%; max-width: 860px; animation: fadeUp .4s ease-out; }
.screen.active { display: flex; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.screen h1 { font-family: 'Sora', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.12; margin-bottom: 16px; color: var(--text); }
.screen h1 em { color: var(--primary); font-style: normal; }
.hero-sub { font-size: 1rem; color: var(--text-muted); max-width: 480px; line-height: 1.7; margin-bottom: 40px; }
.step-nav { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; width: 100%; }
.back-btn { display: flex; align-items: center; gap: 4px; background: none; border: 1px solid var(--border); color: var(--text-muted); font-size: .82rem; font-weight: 600; padding: 7px 14px; border-radius: 30px; cursor: pointer; transition: all .2s; }
.back-btn:hover { border-color: var(--text); color: var(--text); }
.step-indicator { font-size: .7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.progress-bar { display: flex; gap: 6px; justify-content: center; margin-bottom: 28px; }
.prog-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--surface2); transition: all .3s; }
.prog-dot.done { background: var(--primary); width: 20px; border-radius: 4px; }
.prog-dot.current { background: var(--primary); opacity: .5; }
.step-question { font-family: 'Sora', sans-serif; font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 800; margin-bottom: 32px; color: var(--text); }
.options-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); width: 100%; margin-bottom: 32px; }
.option-card { background: var(--bg-card); border: 2px solid var(--border); border-radius: var(--radius); padding: 22px 18px; cursor: pointer; transition: all .25s; text-align: left; }
.option-card:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(255,107,53,0.08); transform: translateY(-2px); }
.option-card.selected { border-color: var(--primary); background: var(--primary-light); }
.option-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.option-title { font-size: .92rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.option-desc { font-size: .76rem; color: var(--text-muted); line-height: 1.5; }
.step-promo { margin-top: 8px; }
.step-promo a { color: var(--text-muted); font-size: .82rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: color .2s; }
.step-promo a:hover { color: var(--primary); }
.actions-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.result-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; padding: 36px; width: 100%; text-align: left; margin-bottom: 24px; }
.result-tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green); background: var(--green-light); padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }
.result-title { font-family: 'Sora', sans-serif; font-size: 1.35rem; font-weight: 800; margin-bottom: 6px; }
.result-sub { color: var(--text-muted); font-size: .85rem; margin-bottom: 24px; }
.urgency-title { font-size: .78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.urgency-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.urgency-pill { display: flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: 20px; font-size: .78rem; font-weight: 600; }
.urg-dia { background: var(--red-light); color: var(--red); border: 1px solid rgba(220,38,38,.15); }
.urg-sem { background: var(--primary-light); color: var(--primary-dark); border: 1px solid rgba(255,107,53,.15); }
.urg-mes { background: var(--amber-light); color: var(--amber); border: 1px solid rgba(217,119,6,.15); }
.kits-label { font-size: .78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.result-kits { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-bottom: 24px; }
.kit-chip { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px; text-decoration: none; color: var(--text); transition: all .2s; display: block; }
.kit-chip:hover { border-color: var(--primary); background: var(--primary-light); }
.kit-chip-name { font-weight: 700; font-size: .88rem; margin-bottom: 2px; }
.kit-chip-meta { font-size: .75rem; color: var(--text-muted); }
.kit-chip-price { font-size: .95rem; font-weight: 800; color: var(--primary); margin-top: 6px; }
.result-cta { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--border); }

/* ══════════════════════════════════════════
   ESSENCIAIS PAGE
   ══════════════════════════════════════════ */
.progress-section { max-width: 700px; margin: 0 auto 32px; padding: 0 24px; }
.progress-section .progress-bar { display: flex; justify-content: space-between; position: relative; padding: 0 16px; gap: 0; }
.progress-section .progress-bar::before { content: ''; position: absolute; top: 16px; left: 60px; right: 60px; height: 3px; background: var(--border); z-index: 0; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 1; cursor: pointer; transition: all .2s; }
.progress-step:hover .step-icon { transform: scale(1.1); }
.step-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: .9rem; border: 2px solid var(--border); transition: all .3s; }
.step-label { font-size: .72rem; font-weight: 700; color: var(--text-muted); }
.progress-step.active .step-icon { background: var(--primary); border-color: var(--primary); color: #fff; }
.progress-step.active .step-label { color: var(--primary); }
.progress-step.done .step-icon { background: var(--green); border-color: var(--green); color: #fff; }
.stage-section { max-width: 860px; margin: 0 auto 40px; padding: 0 24px; }
.stage-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.stage-emoji { font-size: 1.8rem; }
.stage-title h2 { font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 800; line-height: 1.2; }
.stage-title p { font-size: .82rem; color: var(--text-muted); margin-top: 2px; }
.stage-count { margin-left: auto; font-size: .7rem; font-weight: 700; background: var(--primary-light); color: var(--primary); padding: 4px 12px; border-radius: 20px; }

/* ══════════════════════════════════════════
   PRODUTOS PAGE (catalog)
   ══════════════════════════════════════════ */
.catalog { max-width: 960px; margin: 0 auto; padding: 0 24px 40px; }
.comodo-section { margin-bottom: 16px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg-card); transition: border-color .2s; }
.comodo-section:hover { border-color: rgba(255,107,53,.2); }
.comodo-section.open { border-color: var(--primary); }
.comodo-header { display: flex; align-items: center; gap: 14px; padding: 18px 20px; cursor: pointer; user-select: none; transition: background .2s; }
.comodo-header:hover { background: var(--primary-light); }
.comodo-icon { font-size: 1.6rem; flex-shrink: 0; }
.comodo-info { flex: 1; min-width: 0; }
.comodo-title { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 800; }
.comodo-subtitle { font-size: .75rem; color: var(--text-muted); margin-top: 2px; }
.comodo-count { font-size: .7rem; font-weight: 700; background: var(--primary-light); color: var(--primary); padding: 4px 12px; border-radius: 20px; flex-shrink: 0; }
.comodo-arrow { font-size: .9rem; color: var(--text-muted); transition: transform .3s; flex-shrink: 0; }
.comodo-section.open .comodo-arrow { transform: rotate(180deg); }
.comodo-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.comodo-section.open .comodo-body { max-height: 5000px; }
.cat-group { padding: 0 20px 20px; }
.cat-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.cat-label { font-size: .82rem; font-weight: 700; color: var(--text); }
.cat-count { font-size: .65rem; font-weight: 700; color: var(--text-muted); background: var(--surface); padding: 2px 8px; border-radius: 10px; }
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.prod-card { background: var(--surface); border: 1px solid transparent; border-radius: 14px; overflow: hidden; transition: all .2s; display: flex; flex-direction: column; }
.prod-card:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(255,107,53,.08); transform: translateY(-2px); }
.prod-card-img { height: 140px; background: var(--bg-card); display: flex; align-items: center; justify-content: center; padding: 12px; position: relative; overflow: hidden; }
.prod-card-img img { max-width: 100%; max-height: 110px; object-fit: contain; }
.prod-badge { position: absolute; top: 8px; left: 8px; background: var(--red); color: #fff; font-size: .6rem; font-weight: 800; padding: 3px 8px; border-radius: 6px; }
.prod-card-body { padding: 12px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.prod-card-name { font-size: .78rem; font-weight: 700; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prod-card-brand { font-size: .65rem; color: var(--text-muted); }
.prod-card-prices { display: flex; align-items: baseline; gap: 6px; margin-top: auto; padding-top: 6px; }
.prod-price-now { font-size: .9rem; font-weight: 800; color: var(--text); }
.prod-price-old { font-size: .68rem; text-decoration: line-through; color: var(--text-muted); }
.prod-price-off { font-size: .6rem; font-weight: 800; color: var(--green); background: var(--green-light); padding: 2px 6px; border-radius: 4px; }
.prod-card-cta { display: block; text-align: center; padding: 8px; background: var(--primary); color: #fff; border-radius: 8px; text-decoration: none; font-size: .75rem; font-weight: 700; transition: all .2s; margin-top: 8px; }
.prod-card-cta:hover { background: var(--primary-dark); }

/* ══════════════════════════════════════════
   GUIA PDF PAGE
   ══════════════════════════════════════════ */
.document-container {
  max-width: 850px; margin: 40px auto; padding: 60px;
  background: #fff; box-shadow: var(--shadow-lg); border-radius: var(--radius-sm);
}
@media print {
  body { background: #fff; }
  .document-container { margin: 0; padding: 0; box-shadow: none; max-width: 100%; }
  .page-break { page-break-before: always; }
  .no-print { display: none !important; }
}
.guide-cover {
  text-align: center; padding: 80px 40px;
  background: linear-gradient(135deg, var(--secondary) 0%, #2D2B55 100%);
  color: white; border-radius: var(--radius); margin-bottom: 50px;
}
.guide-cover h1 { font-family: 'Sora', sans-serif; font-size: 3rem; margin-bottom: 16px; line-height: 1.2; }
.guide-cover h1 em { color: var(--primary); font-style: normal; }
.guide-cover p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.section-title {
  font-family: 'Sora', sans-serif; color: var(--primary); font-size: 1.8rem;
  border-bottom: 2px solid var(--border); padding-bottom: 12px;
  margin-top: 50px; margin-bottom: 24px;
}
.subsection-title { font-size: 1.3rem; color: var(--secondary); margin-top: 30px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.checklist { list-style: none; padding: 0; }
.checklist li {
  position: relative; padding-left: 36px; margin-bottom: 16px; line-height: 1.6;
  background: var(--bg); padding-top: 12px; padding-bottom: 12px; padding-right: 16px;
  border-radius: var(--radius-sm);
}
.checklist li::before { content: '\2610'; position: absolute; left: 12px; top: 12px; font-size: 1.4rem; color: var(--text-muted); font-weight: bold; }
.checklist li strong { color: var(--secondary); }
.document-container table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 0.95rem; }
.document-container th, .document-container td { padding: 14px; text-align: left; border-bottom: 1px solid var(--border); }
.document-container th { background: rgba(255,107,53,0.1); font-weight: 700; color: var(--primary-dark); }
.document-container tr:nth-child(even) { background-color: #fafafa; }
.alert-box { background: rgba(255,209,102,0.15); border-left: 4px solid var(--accent); padding: 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; }
.alert-box.danger { background: rgba(239, 68, 68, 0.1); border-left-color: #EF4444; }
.alert-box strong { color: var(--secondary); display: block; margin-bottom: 8px; }
.print-button {
  display: block; width: fit-content; margin: 0 auto 40px auto;
  background: var(--primary); color: #fff; padding: 12px 24px; border-radius: 50px;
  text-decoration: none; font-weight: bold; text-align: center; cursor: pointer;
  border: none; font-size: 1rem;
}
.print-button:hover { background: var(--primary-dark); }
.lead-gate {
  max-width: 520px; margin: 40px auto; padding: 40px 32px;
  background: #fff; border-radius: 20px; box-shadow: 0 8px 40px rgba(0,0,0,.08);
  text-align: center;
}
.lead-gate .gate-icon { font-size: 3rem; margin-bottom: 12px; }
.lead-gate h2 { font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.lead-gate h2 em { color: var(--primary); font-style: normal; }
.lead-gate .gate-desc { font-size: .88rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.lead-form { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.lead-form label { font-size: .78rem; font-weight: 600; color: var(--text); }
.lead-form input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: .9rem; font-family: 'Inter', sans-serif; transition: border-color .2s; }
.lead-form input:focus { outline: none; border-color: var(--primary); }
.lead-form .field-group { display: flex; flex-direction: column; gap: 4px; }
.lead-submit { width: 100%; padding: 14px; background: var(--primary); color: #fff; border: none; border-radius: 12px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all .2s; font-family: 'Inter', sans-serif; margin-top: 8px; }
.lead-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.lead-privacy { font-size: .72rem; color: var(--text-muted); text-align: center; margin-top: 8px; }
.lead-error { color: #DC2626; font-size: .75rem; display: none; }
.guide-hidden { display: none; }
.guide-visible { display: block; }

/* ══════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════ */
.empty-state { grid-column: 1/-1; text-align: center; padding: 50px 20px; color: var(--text-muted); font-size: .88rem; }
.empty { text-align: center; padding: 48px; color: var(--text-muted); font-size: .9rem; }
.empty-cat { text-align: center; padding: 24px; color: var(--text-muted); font-size: .82rem; }
.bg-alt { background: #EFECEA; }
.hidden { display: none !important; }
.text-center { text-align: center; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 700px) {
  .hamburger { display: flex; }
  .nav-menu {
    display: none; position: fixed; top: 56px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(14px);
    flex-direction: column; padding: 16px 24px; gap: 4px;
    border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 10px 16px; font-size: .9rem; width: 100%; }
  .footer-content { flex-direction: column; gap: 24px; }
  .footer-links { gap: 32px; }
}
@media (max-width: 640px) {
  .options-grid { grid-template-columns: 1fr; }
  .result-panel { padding: 20px; }
  .result-cta { flex-direction: column; }
  .result-kits { grid-template-columns: 1fr; }
  .actions-row { flex-direction: column; width: 100%; }
  .actions-row .btn { justify-content: center; width: 100%; }
  .page-header { padding: 32px 16px 16px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .prod-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
  .prod-card-img { height: 110px; }
  .comodo-header { padding: 14px 16px; gap: 10px; }
  .comodo-title { font-size: .9rem; }
  .cat-group { padding: 0 16px 16px; }
  .filter-pills { gap: 6px; padding: 0 16px 16px; }
  .pill { padding: 6px 12px; font-size: .75rem; }
  .stage-section { padding: 0 16px; }
  .progress-section .progress-bar { padding: 0; }
  .progress-section .progress-bar::before { left: 30px; right: 30px; }
  .kit-footer { padding: 12px 16px; }
  .kit-total-value { font-size: 1.2rem; }
  .banner-cta { padding: 0 16px; }
  .banner-inner { padding: 20px; }
}
@media (min-width: 641px) {
  .filter-body { max-height: 200px !important; padding: 0 16px 14px !important; }
  .filter-arrow { display: none; }
  .filter-header { cursor: default; }
}
