/* ═══════════════════════════════════════════════════════════════
   Meu portal NFe — style.css
   Estilos exclusivos da landing de contadores (wave-landing.html).
   Requer: shared.css carregado antes.
   ═══════════════════════════════════════════════════════════════ */

/* ─── HERO (versão contadores — grid 2 colunas com card) ─────── */
.hero { padding-top: calc(var(--nav-h) + 80px); padding-bottom: 100px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 60% 60% at 90% 20%, rgba(200,16,46,.07) 0%, transparent 70%), radial-gradient(ellipse 40% 50% at 10% 80%, rgba(200,16,46,.05) 0%, transparent 70%); }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: var(--red-light); color: var(--red-dark); font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 6px 14px; border-radius: 50px; margin-bottom: 24px; }
.hero__badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.hero__headline { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 900; line-height: 1.1; letter-spacing: -.03em; color: var(--ink); margin-bottom: 20px; }
.hero__sub { font-size: 1.05rem; line-height: 1.7; color: var(--ink-soft); max-width: 480px; margin-bottom: 36px; }
.hero__checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }
.hero__check { display: flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 500; color: var(--ink-soft); }
.hero__check svg { width: 20px; height: 20px; flex-shrink: 0; background: var(--red); border-radius: 50%; padding: 4px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 52px; }
.hero__stats { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border); }
.hero__stat-value { font-family: var(--font-display); font-size: 1.7rem; font-weight: 900; color: var(--ink); line-height: 1; }
.hero__stat-label { font-size: .78rem; font-weight: 500; color: var(--ink-muted); margin-top: 4px; }
.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__card-main { background: var(--white); border-radius: var(--r-lg); padding: 28px; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); position: relative; z-index: 2; }
.hero__card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hero__card-title { font-weight: 700; font-size: 1rem; color: var(--ink); }
.hero__card-badge { background: #E8F5E9; color: #2E7D32; font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; letter-spacing: .04em; }
.hero__card-metric { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: var(--ink); line-height: 1; margin-bottom: 6px; }
.hero__card-sub { font-size: .82rem; color: var(--ink-muted); margin-bottom: 20px; }
.hero__card-bar { height: 6px; background: var(--red-light); border-radius: 99px; overflow: hidden; margin-bottom: 16px; }
.hero__card-bar-fill { height: 100%; background: var(--red); border-radius: 99px; width: 0; transition: width 1.4s cubic-bezier(.4,0,.2,1); }
.hero__card-clients { display: flex; align-items: center; gap: 8px; }
.hero__card-avatars { display: flex; }
.hero__card-avatars span { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--white); background: var(--red); display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; color: var(--white); margin-left: -8px; }
.hero__card-avatars span:first-child { margin-left: 0; }
.hero__card-client-text { font-size: .8rem; color: var(--ink-soft); font-weight: 500; }
.hero__float-1, .hero__float-2 { position: absolute; z-index: 3; background: var(--white); border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.hero__float-1 { bottom: -10px; left: -20px; }
.hero__float-2 { top: 30px; right: -20px; }
.hero__float-label { font-size: .7rem; color: var(--ink-muted); font-weight: 500; margin-bottom: 2px; }
.hero__float-val { font-weight: 700; font-size: .95rem; color: var(--ink); }
.hero__float-val span { color: var(--red); }

/* ─── HOW (fundo cream nesta página) ────────────────────────── */
.how__step { background: var(--cream); }

/* ─── WHY ────────────────────────────────────────────────────── */
.why { padding: 100px 0; background: var(--cream); }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why__features { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.why__feature { display: flex; gap: 18px; align-items: flex-start; }
.why__feature-icon { width: 48px; height: 48px; flex-shrink: 0; background: var(--red-light); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--red); transition: background .25s; }
.why__feature:hover .why__feature-icon { background: var(--red); color: var(--white); }
.why__feature-icon svg { width: 22px; height: 22px; }
.why__feature-title { font-weight: 700; font-size: .98rem; margin-bottom: 4px; }
.why__feature-text { font-size: .88rem; line-height: 1.6; color: var(--ink-soft); }
.why__visual { position: relative; }
.why__mockup { background: var(--ink); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; display: flex; flex-direction: column; }
.why__mockup-bar { height: 36px; background: #2A2520; display: flex; align-items: center; padding: 0 16px; gap: 8px; flex-shrink: 0; }
.why__mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.why__mockup-body { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.why__mockup-row { display: flex; gap: 10px; }
.why__mockup-block { background: rgba(255,255,255,.06); border-radius: 8px; height: 40px; }
.why__mockup-block.wide { flex: 3; }
.why__mockup-block.narrow { flex: 1; }
.why__mockup-block.full { flex: 1; height: 60px; }
.why__mockup-block.red { background: rgba(200,16,46,.5); }
.why__mockup-block.green { background: rgba(46,125,50,.4); height: 28px; }
.why__mockup-table { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.why__mockup-tr { display: flex; gap: 8px; align-items: center; }
.why__mockup-td { background: rgba(255,255,255,.05); border-radius: 4px; height: 22px; flex: 1; }
.why__mockup-td.highlight { background: rgba(200,16,46,.25); }
.why__badge-float { position: absolute; bottom: -20px; right: -20px; background: var(--red); color: var(--white); border-radius: var(--r-md); padding: 18px 22px; box-shadow: var(--shadow-md); text-align: center; }
.why__badge-float strong { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; display: block; line-height: 1; }
.why__badge-float span { font-size: .75rem; opacity: .85; }

/* ─── TESTIMONIALS (.testimonial-card) ───────────────────────── */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonial-card { background: var(--cream); border-radius: var(--r-lg); padding: 28px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 16px; transition: transform .3s, box-shadow .3s; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card.featured { background: var(--red); color: var(--white); border-color: var(--red); }
.testimonial-card.featured .tc-text,
.testimonial-card.featured .tc-author { color: rgba(255,255,255,.85); }
.tc-stars svg { width: 16px; height: 16px; fill: #F59E0B; }
.testimonial-card.featured .tc-stars svg { fill: #FFF9C4; }
.tc-text { font-size: .9rem; line-height: 1.7; color: var(--ink-soft); flex: 1; }
.tc-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--red-light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; font-size: .95rem; color: var(--red); }
.testimonial-card.featured .tc-avatar { background: rgba(255,255,255,.2); color: var(--white); }
.tc-name { font-weight: 700; font-size: .9rem; }
.tc-author { font-size: .78rem; color: var(--ink-muted); }

/* ─── FAQ (fundo cream nesta página) ────────────────────────── */
.faq { padding: 100px 0; background: var(--cream); }
.faq__item { background: var(--white); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; }
  .hero__card-main { max-width: 380px; margin: 0 auto; }
  .hero__float-1, .hero__float-2 { display: none; }
  .why__grid { grid-template-columns: 1fr; gap: 48px; }
  .why__badge-float { bottom: -10px; right: 0; }
  .testimonials__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .how__steps { grid-template-columns: 1fr 1fr; }
  .how__steps::before { display: none; }
}
@media (max-width: 480px) {
  .how__steps { grid-template-columns: 1fr; }
  .hero__stats { gap: 20px; }
}
