:root {
  --green: #11a05f;
  --green-dark: #073b2b;
  --green-deep: #041f18;
  --dark: #041f18;
  --gold: #d2a84c;
  --ink: #101412;
  --muted: #647067;
  --paper: #f7f3ea;
  --white: #ffffff;
  --line: rgba(16, 20, 18, 0.12);
  --shadow: 0 24px 70px rgba(4, 31, 24, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.portfolio-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px) 14px;
  background: #05a75a;
  color: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.portfolio-bar p {
  margin: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: #d71920;
  color: #fff;
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.28),
    0 10px 24px rgba(64, 0, 0, 0.2);
  font-size: clamp(15px, 1.85vw, 20px);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  -webkit-text-stroke: 0.45px #07110d;
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #07110d,
    -1px 1px 0 #07110d,
    0 2px 8px rgba(0, 0, 0, 0.22);
}

.portfolio-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #082119;
  color: #f7fff9;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  animation: ctaPulse 2.4s ease-in-out infinite;
}

.portfolio-cta svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  flex: 0 0 auto;
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(8, 33, 25, 0.28);
  }

  50% {
    transform: scale(1.035);
    box-shadow: 0 0 0 9px rgba(8, 33, 25, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-cta {
    animation: none;
  }
}

.hero {
  min-height: 820px;
  background:
    radial-gradient(circle at 70% 20%, rgba(210, 168, 76, 0.2), transparent 32%),
    linear-gradient(135deg, #061710 0%, #10251d 50%, #030706 100%);
  color: var(--white);
  overflow: hidden;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding: 28px clamp(20px, 5vw, 72px) 0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-grid {
  width: min(1440px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(480px, 1fr);
  gap: clamp(36px, 5vw, 88px);
  align-items: center;
  padding: 70px 0 92px;
}

.micro {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  text-align: justify;
}

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.7vw, 56px);
  line-height: 1.1;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.55;
}

@media (max-width: 1100px) and (min-width: 821px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 0.96fr 1.04fr;
    align-items: start;
    gap: 28px;
    padding: 56px 0 72px;
  }

  h1 {
    max-width: 620px;
    font-size: clamp(46px, 5.4vw, 58px);
  }

  .lead {
    max-width: 560px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-media {
    width: 100%;
    margin: 36px 0 0;
  }

  .nav {
    justify-content: center;
  }
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(17, 160, 95, 0.26);
}

.btn.primary:hover {
  background: #14b86d;
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn.wide {
  width: 100%;
}

.trust-row {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}

.hero-media {
  position: relative;
  margin-top: 20px;
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.fade-up-anim {
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(28px, 6vw, 86px);
}

.intro {
  padding: 108px 0 92px;
}

.long-copy p,
.image-copy p,
.mechanism-copy p,
.offer-copy p,
.guarantee p,
.final-cta p,
.faq p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.dark-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    var(--green-deep);
  color: var(--white);
}

.mechanism {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  padding: 98px 0;
}

.mechanism-copy p,
.dark-band .center-copy,
.guarantee p {
  color: rgba(255, 255, 255, 0.7);
}

.mechanism-cards {
  display: grid;
  gap: 16px;
}

.mechanism-cards article,
.formula-grid article,
.bonus-list article,
.testimonial-grid article,
.price-box {
  border: 1px solid rgba(16, 20, 18, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 48px rgba(4, 31, 24, 0.04);
}

.mechanism-cards article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.mechanism-cards span,
.bonus-list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mechanism-cards p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.image-copy {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 58px;
  align-items: center;
  padding: 116px 0 96px;
}

.image-copy img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.formula,
.testimonials,
.bonuses,
.faq {
  padding: 98px 0;
}

.formula > h2,
.testimonials > h2,
.bonuses > h2,
.faq > h2 {
  max-width: 920px;
}

.formula-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.formula-grid article {
  padding: 32px 26px;
}

.formula-grid p,
.bonus-list p,
.testimonial-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.proof .section-shell {
  padding: 100px 0;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 34px 0 28px;
}

.comparison div {
  min-height: 210px;
  padding: 32px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.comparison p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.7;
}

.center-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-size: 19px;
  line-height: 1.7;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  gap: 16px;
  margin-top: 42px;
}

.carousel-track-container {
  overflow: hidden;
  flex: 1;
}

.testimonial-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}

.testimonial-grid article {
  flex: 0 0 calc(33.333% - 13.33px);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.carousel-btn {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
  z-index: 2;
  flex-shrink: 0;
  color: var(--primary);
}

.carousel-btn:hover {
  background: var(--bg);
  transform: scale(1.05);
}

.testimonial-grid .role {
  display: block;
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.avatar { width: 74px; height: 74px; border-radius: 50%; margin-bottom: 16px; background-size: cover; background-position: center; border: 3px solid var(--white); box-shadow: 0 10px 28px rgba(4, 31, 24, 0.18); }

.avatar-4 { background-image: url('./assets/avatar-marcos.png'); }
.avatar-1 { background-image: url('./assets/avatar-renata.png'); }
.avatar-5 { background-image: url('./assets/avatar-roberto.png'); }
.avatar-2 { background-image: url('./assets/avatar-kenji.png'); }
.avatar-3 { background-image: url('./assets/avatar-maria.png'); }
.avatar-6 { background-image: url('./assets/avatar-claudia.png'); }

.offer {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 50px;
  align-items: start;
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  color: var(--dark);
  border-radius: 0 8px 8px 0;
}

.check-list svg {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
}

.price-box {
  position: sticky;
  top: 104px;
  padding: 36px 30px 30px;
  background: var(--white);
}

.guarantee-badge-container {
  display: flex;
  justify-content: center;
  margin-top: -54px;
  margin-bottom: 24px;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dark);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(4, 31, 24, 0.2);
}

.price-box .old-price {
  display: block;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 800;
  text-align: center;
}

.price-box .new-price {
  display: block;
  margin: 10px 0;
  color: var(--green-dark);
  font-size: 38px;
  line-height: 1.05;
  text-align: center;
}

.price-box .cash-price {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.price-box small {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.scarcity-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 800;
  color: #d71920;
}

.dot {
  width: 8px;
  height: 8px;
  background: #d71920;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(215, 25, 32, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(215, 25, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(215, 25, 32, 0); }
}

.pulse-effect {
  animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
  0% { box-shadow: 0 0 0 0 rgba(17, 160, 95, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(17, 160, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(17, 160, 95, 0); }
}

.bonus-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.bonus-list article {
  padding: 32px 28px;
}

.bonus-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--dark);
  color: var(--gold);
  margin-bottom: 20px;
}

.guarantee .section-shell {
  padding: 96px 0;
  text-align: center;
}

.guarantee h2 {
  margin-inline: auto;
  max-width: 980px;
}

.guarantee p {
  max-width: 840px;
  margin: 0 auto 28px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.faq summary::marker {
  color: var(--green);
}

.faq details p {
  max-width: 760px;
  margin: 16px 0 0;
}

.final-cta {
  padding: 100px 0;
  background:
    linear-gradient(135deg, rgba(210, 168, 76, 0.14), transparent 38%),
    var(--green-dark);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  max-width: 980px;
  margin-inline: auto;
}

.final-cta p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.74);
}

.footer {
  padding: 0 0 40px;
  background: #020504;
}

.portfolio-footer-warning {
  width: 100%;
  margin-bottom: 26px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: #f4c542;
  color: #1c1602;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.footer p {
  max-width: 1120px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .mechanism,
  .image-copy,
  .offer {
    grid-template-columns: 1fr;
  }

  .portfolio-bar {
    min-height: auto;
    padding-block: 12px;
  }

  .portfolio-bar p {
    font-size: 14px;
  }

  .portfolio-cta {
    min-height: 40px;
    padding: 9px 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 30px;
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .hero-media {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .formula-grid,
  .bonus-list,
  .comparison,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .image-copy img {
    order: 2;
  }

  .price-box {
    position: static;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 28px, 1160px);
  }

  .portfolio-bar {
    gap: 8px;
    padding: 10px 12px;
  }

  .portfolio-bar p {
    margin: 0;
    padding: 8px 10px;
    font-size: 12px;
  }

  .portfolio-cta {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .nav {
    justify-content: center;
    gap: 18px;
    padding-inline: 14px;
    font-size: 11px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.02;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-grid {
    padding-top: 36px;
  }

  .hero-media img {
    min-height: 220px;
    object-fit: cover;
    object-position: center;
  }

  .intro,
  .formula,
  .testimonials,
  .bonuses,
  .faq,
  .offer {
    padding: 72px 0;
  }

  .mechanism,
  .proof .section-shell,
  .guarantee .section-shell,
  .final-cta {
    padding: 72px 0;
  }
}
