:root {
  --bg: #FFFFFF;
  --bg-soft: #FFF3F6;
  --heading: #1E5B43;
  --text: #262626;
  --text-muted: #5c5c5c;
  --cta: #28A745;
  --cta-dark: #1c7a34;
  --dark: #1E5B43;
  --dark-deep: #143d2c;
  --gold: #F0B429;
  --border-soft: rgba(30, 91, 67, 0.16);
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --shadow-pop: 6px 6px 0 rgba(30, 91, 67, 0.12);
  --shadow-pop-sm: 4px 4px 0 rgba(30, 91, 67, 0.1);
  --font-head: "Montserrat", Arial, sans-serif;
  --font-body: "Open Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--heading);
  line-height: 1.18;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(22px, 6.5vw, 40px); font-weight: 900; }
h2 { font-size: clamp(23px, 4vw, 32px); }
h3 { font-size: clamp(19px, 3vw, 23px); }
h4 { font-size: 17px; margin-bottom: 8px; }

mark {
  background: var(--gold);
  color: #26210a;
  padding: 0.02em 0.3em;
  border-radius: 3px;
  white-space: nowrap;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.section--dark mark { background: var(--gold); color: #26210a; }

p { margin: 0 0 16px; color: var(--text); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 760px; }

.section { padding: 64px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--dark); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.center { text-align: center; }
.text-light { color: #fff; }
.text-light-muted { color: rgba(255,255,255,0.82); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cta-dark);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--gold); }

.subtitle {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Stars */
.stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

/* Icons */
.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.15em;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.badge--outline {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
}
.badge--outline-dark {
  background: #fff;
  border: 2px solid var(--heading);
  color: var(--heading);
  text-transform: uppercase;
}
.badge--outline-light {
  background: rgba(255,255,255,0.14);
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
}
.badge--gold {
  background: var(--gold);
  color: #26210a;
  text-transform: uppercase;
}
.badge--num {
  background: var(--heading);
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 12px;
}
.badge--cta-soft {
  background: var(--gold);
  color: #26210a;
  text-transform: uppercase;
  font-size: 11px;
  margin: 0 auto 20px;
  display: block;
  width: fit-content;
}
.badge--ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  white-space: nowrap;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.25);
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 17px 32px;
  border-radius: 999px;
  text-align: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  border: none;
  cursor: pointer;
}
.btn--cta {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 5px 0 var(--cta-dark);
}
.btn--cta:hover { transform: translateY(2px); box-shadow: 0 3px 0 var(--cta-dark); }
.btn--outline {
  background: #fff;
  color: var(--heading);
  border: 2px solid var(--heading);
  box-shadow: 0 5px 0 rgba(30,91,67,0.25);
}
.btn--outline:hover { transform: translateY(2px); box-shadow: 0 3px 0 rgba(30,91,67,0.25); }
.btn--block { display: block; width: 100%; }

.hero__note {
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Hero */
.hero { position: relative; overflow: hidden; padding-top: 56px; padding-bottom: 56px; }
.hero__inner { position: relative; z-index: 1; max-width: 640px; text-align: center; }
.hero__inner .badge--outline { display: inline-block; }
.hero__subtitle { color: rgba(255,255,255,0.85); font-size: 17px; font-weight: 600; }
.hero__pen-bg {
  position: absolute;
  right: -70px;
  top: 50%;
  transform: translateY(-50%) rotate(18deg);
  width: 300px;
  height: 600px;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
.hero__pen-bg svg { width: 100%; height: 100%; fill: #fff; }

/* Checklist */
.checklist { list-style: none; margin: 24px 0; padding: 0; text-align: left; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15.5px;
  font-weight: 600;
}
.checklist__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-top: 1px;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.15);
}
.checklist__icon .icon { stroke-width: 3.5; }
.checklist--light li { color: rgba(255,255,255,0.95); }
.checklist--light .checklist__icon { background: var(--gold); color: #26210a; box-shadow: 2px 2px 0 rgba(0,0,0,0.3); }
.checklist--compact li { font-size: 14.5px; margin-bottom: 11px; }

/* Placeholder images */
.placeholder-img {
  border: 2px dashed var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 700;
  padding: 40px 20px;
  margin: 24px 0;
}
.placeholder-img__icon { width: 34px; height: 34px; stroke: var(--text-muted); fill: none; stroke-width: 1.6; }
.placeholder-img--hero { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); min-height: 220px; }
.placeholder-img--hero .placeholder-img__icon { stroke: rgba(255,255,255,0.65); }
.placeholder-img--portrait { min-height: 280px; }

/* Author photo */
.author-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--dark-deep);
  box-shadow: var(--shadow-pop);
  aspect-ratio: 4 / 5;
  max-width: 230px;
  margin: 0 auto;
}
.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.placeholder-img--wide { min-height: 260px; }

/* Carousel */
.carousel {
  overflow: hidden;
  margin: 32px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.carousel__track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: carousel-scroll 26s linear infinite;
  animation-play-state: paused;
}
.carousel.is-visible .carousel__track {
  animation-play-state: running;
}
.carousel__track img {
  height: 460px;
  width: auto;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pop-sm);
  border: 2px solid var(--border-soft);
}
@keyframes carousel-scroll {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .carousel__track { animation: none; }
}
@media (max-width: 560px) {
  .carousel__track img { height: 300px; }
}
.placeholder-img--dark { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.7); }
.placeholder-img--dark .placeholder-img__icon { stroke: rgba(255,255,255,0.65); }
.placeholder-img--bonus { min-height: 130px; margin: 0 0 16px; }
.placeholder-img--plan { min-height: 160px; }

/* Mockup images */
.mockup-img {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}
.mockup-img img {
  max-width: 100%;
  height: auto;
  display: block;
}
.mockup-img--hero img { max-width: 340px; }
.mockup-img--plan img { max-width: 320px; }
.mockup-img--completo img { max-width: 100%; width: 100%; }
.mockup-img--bonus { margin: 0 0 16px; }
.mockup-img--bonus img { max-width: 100%; width: 100%; }

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}
.two-col--reverse { grid-template-columns: 0.6fr 1.4fr; }

/* Dark card */
.dark-card {
  background: var(--dark);
  border: 3px solid var(--dark-deep);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 32px 0;
  text-align: left;
  box-shadow: var(--shadow-pop);
}
.dark-card--product { text-align: center; max-width: 860px; margin-left: auto; margin-right: auto; }
.dark-card--product h3 { max-width: 640px; margin-left: auto; margin-right: auto; }
.dark-card--product > p.text-light-muted { max-width: 560px; margin-left: auto; margin-right: auto; }
.dark-card--product .checklist { text-align: left; max-width: 420px; margin-left: auto; margin-right: auto; }
.mockup-img--product img { max-width: 320px; }

/* Grids */
.grid { display: grid; gap: 24px; margin-top: 32px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.card {
  background: #fff;
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-pop-sm);
  text-align: left;
}
.card--ideal h4 { font-size: 16.5px; }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--heading);
  color: #fff;
  font-size: 19px;
  margin-bottom: 14px;
}
.card--ideal p { color: var(--text-muted); font-size: 14.5px; margin: 0; font-weight: 600; }

.card--testimonial { text-align: center; }
.testimonial__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px dashed var(--border-soft);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.testimonial__avatar .placeholder-img__icon { width: 30px; height: 30px; stroke: var(--text-muted); fill: none; stroke-width: 1.6; }
.testimonial__avatar--photo {
  border-style: solid;
  border-color: var(--dark-deep);
  overflow: hidden;
}
.testimonial__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stars--sm { font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial__quote { font-size: 14.5px; font-style: italic; color: var(--text); }
.testimonial__author { font-family: var(--font-head); font-weight: 800; color: var(--heading); font-size: 14.5px; margin: 0; }

.card--bonus { display: flex; flex-direction: column; }
.card--bonus h4 { font-size: 15.5px; }
.card--bonus p { color: var(--text-muted); font-size: 14px; flex-grow: 1; }
.tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
}
.tag--free { background: none; color: #6b6b6b; padding-left: 0; }
.tag__old {
  color: #D93A3C;
  text-decoration: line-through;
  font-weight: 800;
  margin: 0 2px;
}
.tag__free {
  color: var(--cta-dark);
  font-weight: 800;
}

/* Antes/depois compare */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 36px auto 24px;
  max-width: 900px;
}
.compare__col {
  border-radius: var(--radius-md);
  padding: 28px;
  border: 2px solid rgba(0,0,0,0.06);
}
.compare__col--before { background: #FBEAEA; }
.compare__col--after { background: #E9F5EC; }
.tilt-left { transform: rotate(-1.2deg); }
.tilt-right { transform: rotate(1.2deg); }
.compare__col h3 { margin-bottom: 16px; }
.compare__col--before h3 { color: #B5453D; }
.compare__col--after h3 { color: var(--heading); }
.compare__col ul { list-style: none; margin: 0; padding: 0; }
.compare__col li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text);
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
  align-items: start;
}
.card--pricing {
  text-align: left;
  padding: 34px;
  position: relative;
  background: #EAF6EC;
  border-color: rgba(30, 91, 67, 0.2);
}
.card--pricing--featured {
  background: var(--dark);
  border: 3px solid var(--dark-deep);
  box-shadow: 8px 8px 0 rgba(30,91,67,0.18);
}
.card--pricing--featured h3,
.card--pricing--featured .pricing__label { color: #fff; }
.pricing__label { font-weight: 800; margin-bottom: 8px; font-family: var(--font-head); font-size: 14px; text-transform: uppercase; }
.pricing__price { margin: 22px 0; }
.pricing__old { display: block; text-decoration: line-through; color: var(--text-muted); font-size: 14px; font-weight: 700; }
.pricing__old--light { color: rgba(255,255,255,0.6); }
.pricing__new { display: block; font-family: var(--font-head); font-size: 38px; font-weight: 900; color: var(--heading); }
.pricing__new--light { color: var(--gold); }
.pricing__installments { display: block; font-size: 13px; color: var(--text-muted); font-weight: 700; }
.pricing__installments--light { color: rgba(255,255,255,0.7); }
.payment-icons {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Seal */
.seal--img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.seal--img img {
  width: 220px;
  max-width: 100%;
  height: auto;
}

/* Steps */
.steps { text-align: center; }
.step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--heading);
  color: #fff;
  font-size: 23px;
  margin: 0 auto 16px;
}
.step h4 { font-size: 16px; }
.step p { color: var(--text-muted); font-size: 14px; font-weight: 600; }

/* FAQ */
.faq__item { border-bottom: 2px solid var(--border-soft); }
.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq__toggle {
  flex-shrink: 0;
  color: #fff;
  background: var(--heading);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq__item.is-open .faq__toggle { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq__answer p { color: var(--text-muted); padding-bottom: 18px; margin: 0; font-size: 14.5px; font-weight: 600; }

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 28px;
}
.countdown__box {
  background: rgba(0,0,0,0.28);
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  min-width: 74px;
  padding: 8px 6px 6px;
  text-align: center;
}
.countdown__box span {
  display: block;
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.countdown__box small {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.countdown__sep {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
}

/* Plan note */
.plan-note {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 15.5px;
  line-height: 1.35;
  color: #fff;
  background: var(--gold);
  border: 2px solid #26210a;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin: 16px 0 0;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.18);
  animation: plan-note-pulse 1.4s ease-in-out infinite;
}
.plan-arrow {
  display: block;
  width: 30px;
  height: 30px;
  margin: 12px auto 0;
  fill: none;
  stroke: var(--heading);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: plan-note-bounce 1s ease-in-out infinite;
}
@keyframes plan-note-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}
@keyframes plan-note-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .plan-note, .plan-arrow { animation: none; }
}

/* Footer */
.footer {
  background: var(--dark-deep);
  color: rgba(255,255,255,0.7);
  padding: 44px 0;
}
.footer__title { color: #fff; font-family: var(--font-head); font-weight: 800; margin-bottom: 12px; }
.footer__legal { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 720px; margin: 0 auto; }

/* Responsive */
@media (max-width: 900px) {
  .two-col, .two-col--reverse { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .tilt-left, .tilt-right { transform: none; }
}

@media (max-width: 560px) {
  .section { padding: 48px 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .dark-card, .card--pricing { padding: 22px; }
  .hero__pen-bg { display: none; }
}
