/* NRfix — styles.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #1a1a1a; -webkit-font-smoothing: antialiased; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: .75; }
img, svg { display: block; }

/* TYPOGRAPHY */
h1 { font-size: clamp(28px, 5vw, 52px); font-weight: 900; line-height: 1.12; }
h2 { font-size: clamp(22px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; }
h3 { font-size: clamp(16px, 2vw, 20px); font-weight: 700; line-height: 1.3; }
p { line-height: 1.75; }

/* LOGO */
.logo { font-size: 22px; font-weight: 900; letter-spacing: -.02em; cursor: pointer; }
.logo-nr { color: #1E3A20; }
.logo-fix { color: #C69C2A; }

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 0 24px;
}
.header-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; gap: 20px;
}
.header-nav { display: flex; gap: 24px; }
.header-nav a { font-size: 14px; color: #555; font-weight: 500; }
.header-nav a:hover { color: #2C5F2D; opacity: 1; }
.btn { display: inline-flex; align-items: center; gap: 6px; border-radius: 100px; font-weight: 700; cursor: pointer; border: none; font-family: 'Inter', sans-serif; transition: opacity .15s, transform .15s; }
.btn:hover { opacity: .87; transform: translateY(-1px); }
.btn-primary { background: #2C5F2D; color: #fff; padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: 100px; }
.btn-gold { background: #C69C2A; color: #1E3A20; }
.btn-outline { background: transparent; border: 2px solid #fff; color: #fff; padding: 12px 24px; font-size: 14px; }

/* ALERT STRIP */
.alert-strip {
  background: #C69C2A; padding: 10px 16px;
  text-align: center; margin-top: 60px;
  font-size: 12px; font-weight: 700; color: #1E3A20; letter-spacing: .04em;
}

/* SECTIONS */
.section { padding: 80px 24px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-dark { background: #1E3A20; color: #fff; }
.section-cream { background: #f9f5ed; }
.section-white { background: #fff; }
.section-center { text-align: center; }

/* TAG BADGE */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 100px; padding: 5px 14px 5px 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.tag-green { background: #eaf3ea; color: #2C5F2D; }
.tag-gold { background: rgba(198,156,42,.15); color: #C69C2A; }
.tag-cream { background: #e8e3d8; color: #2C5F2D; }
.tag-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.tag-dot-green { background: #2C5F2D; }
.tag-dot-gold { background: #C69C2A; }

/* CARDS */
.card { background: #fff; border-radius: 14px; padding: 28px 24px; }
.card-dark { background: #1a3d2b; border-radius: 14px; padding: 28px 24px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }

/* ICON BUBBLE */
.icon-bubble {
  width: 60px; height: 60px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-bottom: 18px;
}
.icon-bubble-green { background: #eaf3ea; }
.icon-bubble-gold { background: #fdf3dc; }

/* QUIZ */
#quiz-section { background: #112612; padding: 80px 24px; }
.quiz-inner { max-width: 680px; margin: 0 auto; }
.quiz-hero { text-align: center; margin-bottom: 48px; }
.quiz-hero h1 { color: #fff; margin-bottom: 14px; }
.quiz-hero p { color: rgba(255,255,255,.55); font-size: 16px; }
.quiz-hero .micro { color: rgba(198,156,42,.8); font-size: 13px; margin-top: 10px; font-weight: 600; }

.progress-bar-wrap { background: rgba(255,255,255,.1); border-radius: 100px; height: 4px; margin-bottom: 32px; }
.progress-bar-fill { background: #C69C2A; height: 4px; border-radius: 100px; transition: width .4s ease; }

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeUp .35s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.quiz-question { font-size: clamp(18px, 3vw, 24px); font-weight: 800; color: #fff; margin-bottom: 8px; }
.quiz-sub { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 24px; }

.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 16px 20px;
  color: rgba(255,255,255,.85); font-size: 15px; font-weight: 500;
  cursor: pointer; text-align: left; transition: background .15s, border-color .15s;
  font-family: 'Inter', sans-serif;
}
.quiz-option:hover { background: rgba(44,95,45,.3); border-color: #2C5F2D; }
.quiz-option.selected { background: #2C5F2D; border-color: #2C5F2D; color: #fff; }

.quiz-back { background: none; border: none; color: rgba(255,255,255,.4); font-size: 13px; cursor: pointer; font-family: 'Inter', sans-serif; margin-top: 16px; padding: 4px 0; }
.quiz-back:hover { color: rgba(255,255,255,.7); }

/* RESULT */
#quiz-result { display: none; }
.result-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 100px; padding: 6px 18px;
  font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 24px;
}
.badge-critical { background: #7b1e1e; color: #ffb3b3; }
.badge-high { background: #7b4a1e; color: #ffd9b3; }
.badge-ok { background: #1e4d1e; color: #a5e6a0; }
.result-headline { font-size: clamp(22px, 4vw, 34px); font-weight: 900; color: #fff; margin-bottom: 8px; }
.result-sub { font-size: 15px; color: rgba(255,255,255,.5); margin-bottom: 36px; }
.result-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-bottom: 32px; }
.result-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 22px 20px; }
.result-card-label { font-size: 10px; font-weight: 700; color: rgba(198,156,42,.7); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.result-card p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; }
.result-card strong { color: #fff; }

/* COMPARISON TABLE */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-col { border-radius: 14px; padding: 32px 28px; }
.compare-col-bad { background: #f5f0f0; border: 2px solid #f0dede; }
.compare-col-good { background: #f0f7f0; border: 2px solid #c8e6c8; }
.compare-title { font-size: 15px; font-weight: 800; margin-bottom: 20px; }
.compare-title-bad { color: #8b3b3b; }
.compare-title-good { color: #2C5F2D; }
.compare-list { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.compare-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: #555; line-height: 1.6; }
.compare-list li::before { content: ''; flex-shrink: 0; margin-top: 6px; width: 8px; height: 8px; border-radius: 50%; }
.compare-col-bad .compare-list li::before { background: #c0392b; }
.compare-col-good .compare-list li::before { background: #2C5F2D; }

/* STEPS TIMELINE */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; border: 1.5px solid #e8e4da; border-radius: 14px; overflow: hidden; }
.step-item { padding: 28px 24px; }
.step-item:not(:last-child) { border-right: 1px solid #e8e4da; }
.step-num { font-size: 36px; font-weight: 900; color: #d4e8d4; line-height: 1; margin-bottom: 16px; font-family: Georgia, serif; }
.step-item-dark { background: #1E3A20; }
.step-item-dark .step-num { color: rgba(198,156,42,.3); }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.price-card { border: 1.5px solid #e8e4da; border-radius: 14px; padding: 32px 24px; background: #f9f5ed; position: relative; }
.price-card-featured { background: #1E3A20; border-color: #1E3A20; }
.price-badge { position: absolute; top: -12px; left: 24px; background: #C69C2A; color: #1E3A20; font-size: 10px; font-weight: 800; padding: 4px 12px; border-radius: 20px; letter-spacing: .06em; white-space: nowrap; }
.price-tier { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.price-tier-light { color: #2C5F2D; }
.price-tier-dark { color: rgba(198,156,42,.7); }
.price-amount { font-size: 42px; font-weight: 900; line-height: 1; }
.price-amount-light { color: #1E3A20; }
.price-amount-dark { color: #fff; }
.price-note { font-size: 12px; color: #aaa; margin-top: 6px; }
.price-note-dark { color: rgba(255,255,255,.35); }
.price-features { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,.06); }
.price-features-dark { border-color: rgba(255,255,255,.08); }
.price-feature { font-size: 13px; color: #555; display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.price-feature-dark { color: rgba(255,255,255,.5); }
.price-feature::before { content: '✓'; color: #2C5F2D; font-weight: 700; flex-shrink: 0; }
.price-feature-dark::before { color: #C69C2A; }
.guarantee-bar { background: #eaf3ea; border-radius: 10px; padding: 16px 20px; text-align: center; margin-top: 24px; font-size: 14px; color: #2C5F2D; font-weight: 600; }
.compare-line { text-align: center; font-size: 13px; color: #aaa; margin-top: 16px; }
.program-card { background: #f9f5ed; border: 1.5px solid #e8e4da; border-radius: 14px; padding: 28px; margin-top: 20px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.program-card h3 { font-size: 17px; font-weight: 700; color: #1E3A20; margin-bottom: 6px; }
.program-card p { font-size: 14px; color: #666; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 700px; margin: 0 auto; }
.faq-item { border: 1.5px solid #eeebe4; border-radius: 10px; overflow: hidden; background: #fff; }
.faq-btn { width: 100%; background: none; border: none; padding: 20px 24px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: 'Inter', sans-serif; }
.faq-question { font-size: 15px; font-weight: 600; color: #1E3A20; }
.faq-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: #eaf3ea; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #2C5F2D; transition: transform .25s; font-weight: 700; line-height: 1; }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-panel p { font-size: 14px; color: #666; line-height: 1.8; padding: 0 24px 20px; }

/* FORM */
.form-wrap { background: #fff; border-radius: 16px; padding: 36px 32px; max-width: 560px; margin: 0 auto; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-size: 13px; font-weight: 600; color: #333; }
.form-input {
  border: 1.5px solid #e0e0e0; border-radius: 8px;
  padding: 12px 14px; font-size: 14px; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color .2s, box-shadow .2s;
  background: #fff; width: 100%;
}
.form-input:focus { border-color: #2C5F2D; box-shadow: 0 0 0 3px rgba(44,95,45,.1); }
.form-error { font-size: 12px; color: #c0392b; display: none; }
.form-error.visible { display: block; }
.form-submit { width: 100%; background: #2C5F2D; color: #fff; border: none; border-radius: 100px; padding: 15px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'Inter', sans-serif; margin-top: 8px; transition: opacity .15s; }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-micro { font-size: 12px; color: #aaa; text-align: center; margin-top: 12px; line-height: 1.6; }
.form-inline-error { display: none; background: #fff0f0; border: 1px solid #f5c6c6; border-radius: 8px; padding: 12px 16px; font-size: 14px; color: #c0392b; margin-top: 12px; }
.form-inline-error.visible { display: block; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* FOOTER */
.site-footer { background: #0d2010; padding: 48px 24px 32px; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-col-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.3); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.5); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.25); }
.lgpd-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.06); padding: 6px 14px; border-radius: 20px; font-size: 11px; color: rgba(255,255,255,.4); }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,.2); line-height: 1.7; margin-top: 24px; max-width: 700px; }

/* OBRIGADO */
.obrigado-center { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 80px 24px; }
.obrigado-box { max-width: 560px; text-align: center; }
.obrigado-icon { width: 80px; height: 80px; background: #eaf3ea; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; }
.obrigado-box h1 { color: #1E3A20; margin-bottom: 14px; }
.obrigado-box p { color: #666; margin-bottom: 28px; }
.obrigado-list { text-align: left; background: #f9f5ed; border-radius: 12px; padding: 24px 28px; margin-bottom: 32px; }
.obrigado-list li { font-size: 14px; color: #444; padding: 8px 0; border-bottom: 1px solid #ede9e1; line-height: 1.6; display: flex; gap: 10px; }
.obrigado-list li:last-child { border-bottom: none; }
.obrigado-list li::before { content: '→'; color: #C69C2A; font-weight: 700; flex-shrink: 0; }

/* PRIVACY */
.privacy-content { max-width: 760px; margin: 0 auto; padding: 80px 24px; }
.privacy-content h1 { color: #1E3A20; margin-bottom: 8px; }
.privacy-content .updated { font-size: 13px; color: #aaa; margin-bottom: 40px; }
.privacy-content h2 { font-size: 18px; color: #1E3A20; margin: 36px 0 12px; }
.privacy-content p { font-size: 15px; color: #444; margin-bottom: 14px; }
.privacy-content ul { padding-left: 20px; margin-bottom: 14px; }
.privacy-content ul li { font-size: 15px; color: #444; margin-bottom: 6px; line-height: 1.7; }
.privacy-disclaimer { background: #fff8e8; border-left: 3px solid #C69C2A; padding: 16px 20px; border-radius: 0 8px 8px 0; font-size: 14px; color: #7a6020; margin: 32px 0; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .compare-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-item:not(:last-child) { border-right: none; border-bottom: 1px solid #e8e4da; }
  .step-item-dark { border-bottom: none !important; }
  .form-wrap { padding: 28px 20px; }
  .program-card { flex-direction: column; gap: 14px; }
}
