/* Easy Alert — base compartilhada das LPs de captação (lp02/lp03/lp04).
   Identidade: #B21D1D / preto / branco + cinzas neutros, Poppins. */

@font-face{font-family:Poppins;src:url(assets/fonts/Poppins-Regular.woff2) format('woff2');font-weight:400;font-display:swap}
@font-face{font-family:Poppins;src:url(assets/fonts/Poppins-Medium.woff2) format('woff2');font-weight:500;font-display:swap}
@font-face{font-family:Poppins;src:url(assets/fonts/Poppins-SemiBold.woff2) format('woff2');font-weight:600;font-display:swap}
@font-face{font-family:Poppins;src:url(assets/fonts/Poppins-Bold.woff2) format('woff2');font-weight:700;font-display:swap}

:root {
  --primary: #B21D1D;
  --primary-dark: #8E1414;
  --primary-deep: #7A1414;
  --ink: #0C0C0C;
  --text: #535353;
  --gray: #8A8A8A;
  --line: #E8E8E8;
  --line-dark: #2A2A2A;
  --bg-soft: #F6F6F6;
  --white: #fff;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 10px 34px rgba(30,30,30,.09);
  --container: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 100px; }
body {
  font-family: Poppins, system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-weight: 700; color: var(--ink); line-height: 1.18; letter-spacing: -.02em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.red { color: var(--primary); }
.overline {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 14px;
}

/* ---- botões ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px; border-radius: 999px; border: 0; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 1rem; text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 10px 26px rgba(178,29,29,.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(178,29,29,.4); }
.btn-glow { box-shadow: 0 0 44px rgba(178,29,29,.42), 0 10px 26px rgba(178,29,29,.3); }
.btn-white { background: var(--white); color: var(--primary); box-shadow: 0 8px 22px rgba(0,0,0,.2); }
.btn-white:hover { background: #ffecec; color: var(--primary-dark); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-lg { padding: 18px 40px; font-size: 1.06rem; }
.btn svg { flex: 0 0 auto; }

/* ---- formulário de lead ---- */
.lead-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 34px 30px;
  box-shadow: 0 24px 70px rgba(0,0,0,.16); max-width: 460px; width: 100%;
}
.lead-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.lead-card .form-sub { font-size: .92rem; color: var(--text); margin-bottom: 20px; }
.lead-form { display: grid; gap: 14px; }
.lead-form label { display: grid; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--ink); text-align: left; }
.lead-form input, .lead-form select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: .98rem; color: var(--ink); background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.lead-form input:focus, .lead-form select:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(178,29,29,.13);
}
.lead-form button { width: 100%; margin-top: 4px; }
.lead-form .lgpd { font-size: .74rem; color: var(--gray); line-height: 1.5; margin-top: 2px; }
.lead-form .form-error { display: none; font-size: .85rem; color: var(--primary); font-weight: 600; }
.lead-form.has-error .form-error { display: block; }
.lead-form button[disabled] { opacity: .65; cursor: wait; }
.form-wa-alt { margin-top: 14px; font-size: .9rem; text-align: center; }
.form-wa-alt a { color: var(--primary); font-weight: 600; }

/* ---- stats/contadores ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.stat b { display: block; font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 700; color: var(--ink); line-height: 1.1; }
.stat span { font-size: .88rem; color: var(--text); }
.stats-note { font-size: .78rem; color: var(--gray); margin-top: 16px; }

/* ---- FAQ ---- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px;
  align-items: center; padding: 18px 0; font-weight: 600; color: var(--ink); font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--primary); transition: transform .2s ease; flex: 0 0 auto; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 0 20px; font-size: .96rem; }

/* ---- depoimentos ---- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.quote { border-radius: var(--radius-lg); padding: 28px; position: relative; }
.quote p { font-size: .96rem; }
.quote .who { margin-top: 16px; font-weight: 600; color: var(--ink); font-size: .92rem; }
.quote .who small { display: block; font-weight: 400; color: var(--gray); }
.quote::before { content: "\201C"; font-size: 3.2rem; line-height: 1; color: var(--primary); font-weight: 700; display: block; margin-bottom: 6px; }

/* ---- marquee ---- */
.marquee { overflow: hidden; position: relative; }
.marquee .track { display: flex; gap: 48px; width: max-content; animation: marquee 30s linear infinite; align-items: center; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee .track { animation: none; } }

/* ---- WhatsApp flutuante (mobile e desktop) ---- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 58px; height: 58px;
  border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(178,29,29,.45); transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; }

/* ---- reveal ---- */
html.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
html.js [data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ---- footer ---- */
.lp-footer { padding: 34px 0; font-size: .82rem; }
.lp-footer .container { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: space-between; }
.lp-footer img { height: 30px; width: auto; }
.lp-footer p { line-height: 1.6; }

/* ---- seções ---- */
.sec { padding: 84px 0; }
.sec-head { max-width: 720px; margin: 0 auto 46px; text-align: center; }
.sec-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.sec-head .lead { margin-top: 12px; font-size: 1.04rem; }

/* ---- responsivo ---- */
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .sec { padding: 62px 0; }
}
@media (max-width: 560px) {
  body { font-size: 15px; }
  .btn-lg { width: 100%; }
  .lead-card { padding: 26px 20px; }
}
