/* ===========================================================
   Carro na Rua em 7 Dias — Landing Page
   Paleta: vermelho #AD1F1F | neutro #E7E7E7 | escuro #303030 | CTA verde #049A6A
   =========================================================== */

:root {
  --red: #AD1F1F;
  --red-dark: #8A1818;
  --neutral: #E7E7E7;
  --dark: #303030;
  --green: #049A6A;
  --green-dark: #037D56;
  --white: #FFFFFF;
  --text: #262626;
  --text-muted: #6B6B6B;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(0,0,0,.08);
  --container-w: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 760px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .3px;
  padding: 18px 36px;
  border-radius: 50px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
}
.btn--cta {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(4,154,106,.35);
}
.btn--cta:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn--large { font-size: 19px; padding: 20px 48px; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section--light { background: var(--neutral); }
.section--white { background: var(--white); }
.section--dark { background: var(--dark); color: var(--white); }
.section--price {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 56px 0;
}

.section__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 32px;
}
.section__title--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__title--white { color: var(--white); }
.section__subtitle {
  font-size: 22px;
  font-weight: 600;
  margin: 48px 0 28px;
}
.section__subtitle--center { text-align: center; }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 14px;
}

.lead { font-size: 18px; color: var(--text-muted); margin-bottom: 20px; }
.lead--white { color: #D9D9D9; }

.tag-line { font-weight: 700; font-size: 17px; margin-bottom: 16px; }
.tag-line--center { text-align: center; }
.tag-line--white { color: var(--white); }

.closing-line { font-size: 19px; font-weight: 500; margin-top: 24px; }
.closing-line--center { text-align: center; }
.closing-line--white { color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, #FFF 0%, var(--neutral) 100%);
  padding: 72px 0 56px;
  text-align: center;
}
.hero__inner { max-width: 820px; margin: 0 auto; }
.hero__title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.28;
  color: var(--dark);
  margin-bottom: 32px;
}
.hero__title .hl { color: var(--red); }
.hero__note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
}
.testimonial-card__stars { color: #F5B400; font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card__quote { font-size: 15px; color: var(--text-muted); font-style: italic; margin-bottom: 16px; }
.testimonial-card__author { font-weight: 700; font-size: 15px; }
.testimonial-card__author span { font-weight: 400; color: var(--text-muted); }

/* ---------- Quote box ---------- */
.quote-box {
  background: rgba(255,255,255,.06);
  border-left: 4px solid var(--red);
  padding: 24px 28px;
  font-size: 19px;
  font-style: italic;
  line-height: 1.5;
  margin: 24px 0;
  border-radius: 0 10px 10px 0;
}

/* ---------- Steps (passo a passo) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
  border-radius: 50%;
  margin-bottom: 18px;
}
.step-card__title { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.step-card__text { font-size: 15px; color: var(--text-muted); }

/* ---------- Benefits ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
}
.benefit-card__icon { font-size: 30px; display: block; margin-bottom: 12px; }
.benefit-card__title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.benefit-card__text { font-size: 13.5px; color: var(--text-muted); }

/* ---------- Deliverables / bônus ---------- */
.deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.deliverables--bonus { grid-template-columns: repeat(3, 1fr); margin-bottom: 0; }
.deliverable-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
}
.deliverable-card__icon { font-size: 28px; display: block; margin-bottom: 10px; }
.deliverable-card__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.deliverable-card__text { font-size: 14.5px; color: var(--text-muted); }

.cta-block { text-align: center; margin-top: 40px; }

/* ---------- Check list (para quem serve) ---------- */
.check-list { list-style: none; margin: 8px 0 32px; }
.check-list li {
  position: relative;
  padding: 12px 0 12px 34px;
  font-size: 16px;
  border-bottom: 1px solid #eee;
}
.check-list li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 12px;
}

/* ---------- Price anchor list ---------- */
.price-anchor { list-style: none; max-width: 560px; margin: 0 auto; }
.price-anchor li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,.25);
  font-size: 16px;
}
.price-anchor li strong { color: #F5B400; font-weight: 700; }
.price-anchor li em { color: #9BDBC3; font-style: normal; font-size: 13px; }
.price-anchor__note {
  text-align: center;
  font-size: 13.5px;
  color: #B8B8B8;
  margin-top: 14px;
}

.price-total {
  text-align: center;
  margin: 40px auto 20px;
}
.price-total p:first-child { font-size: 15px; font-weight: 600; letter-spacing: .5px; color: #B8B8B8; }
.price-total__value {
  font-size: 42px;
  font-weight: 800;
  text-decoration: line-through;
  color: #8a8a8a;
  margin-top: 6px;
}

/* ---------- Price / CTA block ---------- */
.price-block__label { font-size: 18px; font-weight: 500; margin-bottom: 6px; opacity: .9; }
.price-block__installments { font-size: 36px; font-weight: 800; margin-bottom: 4px; }
.price-block__cash { font-size: 17px; margin-bottom: 28px; opacity: .95; }
.price-block__guarantee { margin-top: 20px; font-size: 13.5px; opacity: .9; }
.section--price .btn--cta { background: var(--green); box-shadow: 0 10px 28px rgba(0,0,0,.25); }
.section--price .btn--cta:hover { background: var(--green-dark); }

/* ---------- Access steps ---------- */
.access-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.access-step { text-align: left; }
.access-step__icon { font-size: 30px; display: block; margin-bottom: 10px; }
.access-step__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.access-step__text { font-size: 14.5px; color: var(--text-muted); }

.trust-badges { text-align: center; margin-top: 24px; }
.trust-badges img { margin: 0 auto; max-width: 460px; width: 100%; }

/* ---------- Autoridade ---------- */
.autor { text-align: center; }
.autor__avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.autor__name { font-size: 22px; font-weight: 800; color: var(--dark); letter-spacing: .5px; }
.autor__role { font-size: 14.5px; color: var(--red); font-weight: 600; margin: 6px 0 18px; }
.autor__bio { font-size: 16px; color: var(--text-muted); margin-bottom: 14px; }
.autor__bio a { color: var(--red); font-weight: 600; text-decoration: none; }
.autor__contact { font-size: 14px; color: var(--text-muted); }
.autor__contact a { color: var(--red); text-decoration: none; }

/* ---------- Options (conversa séria) ---------- */
.options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0;
}
.option-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 24px;
}
.option-card--highlight {
  background: rgba(4,154,106,.12);
  border-color: var(--green);
}
.option-card__label { font-weight: 700; margin-bottom: 8px; }
.option-card__text { font-size: 15px; color: #D9D9D9; }

/* ---------- FAQ Accordion ---------- */
.accordion-item {
  border-bottom: 1px solid #e2e2e2;
}
.accordion-item__trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  padding: 20px 36px 20px 0;
  cursor: pointer;
  position: relative;
}
.accordion-item__trigger::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--red);
  transition: transform .2s ease;
}
.accordion-item.is-open .accordion-item__trigger::after {
  transform: translateY(-50%) rotate(45deg);
}
.accordion-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.accordion-item__panel p {
  padding: 0 0 20px;
  font-size: 14.5px;
  color: var(--text-muted);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: #9a9a9a;
  padding: 40px 0 90px;
  text-align: center;
  font-size: 12.5px;
}
.footer__legal { font-weight: 700; letter-spacing: .5px; margin-bottom: 14px; color: #cfcfcf; }
.footer__disclaimer { max-width: 720px; margin: 0 auto 16px; line-height: 1.6; }
.footer__copyright { color: #7a7a7a; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 -6px 20px rgba(0,0,0,.12);
  padding: 12px 16px;
  display: none;
  z-index: 50;
}
.btn--sticky { width: 100%; font-size: 16px; padding: 15px; }

/* ===========================================================
   Responsive — mobile-first breakpoints
   =========================================================== */
@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .deliverables { grid-template-columns: 1fr; }
  .deliverables--bonus { grid-template-columns: 1fr; }
  .access-steps { grid-template-columns: 1fr; }
  .options { grid-template-columns: 1fr; }
  .hero__title { font-size: 27px; }
  .section__title { font-size: 23px; }
  .price-block__installments { font-size: 28px; }
  .price-total__value { font-size: 32px; }
  .sticky-cta { display: block; }
  .footer { padding-bottom: 96px; }
}

@media (max-width: 520px) {
  .section { padding: 44px 0; }
  .benefits { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
  .hero__title { font-size: 23px; }
  .btn--cta { width: 100%; }
  .quote-box { font-size: 16px; padding: 18px 20px; }
}
