:root {
  color-scheme: dark;
  --green-950: #03291d;
  --green-900: #073d2b;
  --green-800: #07563a;
  --green-600: #0b9a54;
  --yellow: #ffd51f;
  --yellow-2: #ffed57;
  --cream: #fffbea;
  --muted: #b9d2c5;
  --card: rgba(10, 77, 52, .58);
  --line: rgba(255, 255, 255, .12);
  --shadow: 0 24px 65px rgba(0, 0, 0, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--cream);
  background:
    radial-gradient(circle at 88% 5%, rgba(13, 154, 84, .2), transparent 26rem),
    linear-gradient(145deg, #021d15 0%, var(--green-950) 50%, #052f21 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; }
.hero {
  position: relative;
  isolation: isolate;
  width: min(1180px, calc(100% - 40px));
  min-height: 760px;
  margin: 0 auto;
  padding: 72px 0 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .82fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.glow { position: absolute; border-radius: 50%; filter: blur(2px); z-index: -1; pointer-events: none; }
.glow-one { width: 340px; height: 340px; left: -180px; top: 180px; background: rgba(255, 213, 31, .06); }
.glow-two { width: 420px; height: 420px; right: -220px; bottom: 80px; background: rgba(0, 194, 94, .09); }

.brand {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 54px;
  text-decoration: none;
  line-height: .8;
  letter-spacing: -.04em;
}
.brand-tag {
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  transform: rotate(-8deg);
  border-radius: 14px 18px 18px 14px;
  color: var(--green-950);
  background: var(--yellow);
  font-size: 1.4rem;
  font-weight: 1000;
  box-shadow: 0 8px 24px rgba(255, 213, 31, .16);
}
.brand strong, .brand b { display: block; font-size: 1.42rem; }
.brand b { color: var(--yellow); font-size: 1.68rem; }

.eyebrow, .section-heading p, .final-cta > div > p {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .15em;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 6vw, 5.3rem);
  line-height: .98;
  letter-spacing: -.065em;
}
h1 span { color: var(--yellow); }
.lead { max-width: 650px; margin-bottom: 30px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.3rem); }

.cta {
  min-height: 58px;
  padding: 16px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid rgba(255, 255, 255, .22);
  border-radius: 16px;
  color: #07291e;
  background: linear-gradient(135deg, var(--yellow-2), var(--yellow));
  box-shadow: 0 14px 35px rgba(255, 213, 31, .17);
  font-size: 1rem;
  font-weight: 1000;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.cta:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(255, 213, 31, .27); filter: brightness(1.04); }
.cta:focus-visible { outline: 3px solid white; outline-offset: 4px; }
.whatsapp { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; color: white; background: #0a9f54; }
.arrow { font-size: 1.35rem; }
.cta-note { margin: 12px 0 26px; color: #91b6a3; font-size: .9rem; }
.quick-benefits { margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 18px; color: #d9e9e0; list-style: none; font-size: .93rem; }
.quick-benefits span { color: var(--yellow); font-weight: 900; }

.hero-visual { position: relative; max-width: 450px; justify-self: end; }
.visual-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 34px;
  background: #07563a;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.visual-card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); pointer-events: none; }
.visual-card img { width: 100%; height: 100%; display: block; object-fit: cover; }
.deal-badge {
  position: absolute;
  right: -28px;
  bottom: 42px;
  padding: 15px 20px;
  transform: rotate(-5deg);
  border-radius: 16px;
  color: #062c1f;
  background: var(--yellow);
  box-shadow: 0 12px 35px rgba(0,0,0,.3);
  text-align: center;
}
.deal-badge span, .deal-badge strong { display: block; line-height: 1; }
.deal-badge span { font-size: .7rem; letter-spacing: .15em; font-weight: 900; }
.deal-badge strong { margin-top: 5px; font-size: 1.13rem; }

.benefits {
  padding: 86px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, .035);
  border-block: 1px solid var(--line);
}
.section-heading { max-width: 650px; margin-bottom: 34px; }
.section-heading h2, .final-cta h2 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -.045em; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-grid article { min-height: 210px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--card); box-shadow: 0 12px 34px rgba(0, 0, 0, .12); }
.benefit-grid .icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 14px; background: rgba(255, 213, 31, .13); font-size: 1.5rem; }
.benefit-grid h3 { margin-bottom: 8px; font-size: 1.28rem; }
.benefit-grid p { margin-bottom: 0; color: var(--muted); }

.final-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 72px auto;
  padding: clamp(28px, 5vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border: 1px solid rgba(255, 213, 31, .3);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(7, 86, 58, .88), rgba(4, 51, 36, .95));
  box-shadow: var(--shadow);
}
.final-cta h2 { margin-bottom: 10px; }
.final-cta > div > span { color: var(--muted); }
.final-cta .cta { flex: 0 0 auto; }

footer { padding: 0 20px 38px; color: #86a997; text-align: center; }
footer strong { display: block; margin-bottom: 5px; color: #d6e8de; }
footer p { margin-bottom: 4px; font-size: .86rem; }
footer small { font-size: .76rem; }
.mobile-sticky { display: none; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 34px; text-align: center; }
  .brand { margin: 0 auto 38px; text-align: left; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .lead { max-width: 580px; }
  .quick-benefits { justify-content: center; }
  .hero-visual { width: min(100%, 440px); justify-self: center; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article { min-height: 0; }
  .final-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  body { padding-bottom: 82px; }
  .hero { width: min(100% - 28px, 1180px); min-height: 0; padding-bottom: 48px; gap: 38px; }
  .brand-tag { width: 46px; height: 46px; }
  .brand strong { font-size: 1.18rem; }
  .brand b { font-size: 1.4rem; }
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  .lead { font-size: 1.05rem; }
  .cta-main { width: 100%; font-size: .94rem; }
  .quick-benefits { flex-direction: column; align-items: flex-start; text-align: left; }
  .hero-visual { width: calc(100% - 12px); }
  .visual-card { border-radius: 26px; transform: none; }
  .deal-badge { right: -8px; bottom: 28px; }
  .benefits { padding-block: 60px; }
  .benefit-grid article { padding: 24px; }
  .final-cta { width: calc(100% - 28px); margin-block: 48px; border-radius: 24px; text-align: center; align-items: stretch; }
  .final-cta .cta { width: 100%; }
  .mobile-sticky {
    position: fixed;
    z-index: 20;
    left: 50%;
    right: auto;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: calc(100% - 36px);
    max-width: 520px;
    min-height: 52px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,.42);
    border-radius: 15px;
    color: #062c1f;
    background: var(--yellow);
    box-shadow: 0 14px 40px rgba(0,0,0,.42);
    font-size: clamp(.76rem, 3.4vw, .9rem);
    font-weight: 1000;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cta { transition: none; }
}
