:root {
  --ink: #17221b;
  --muted: #647068;
  --cream: #fff8f1;
  --cream-deep: #f8eee3;
  --paper: #ffffff;
  --orange: #ff7112;
  --orange-dark: #e95800;
  --orange-soft: #ffb16e;
  --green: #0d6b42;
  --green-dark: #08462e;
  --whatsapp: #21c769;
  --line: rgba(23, 34, 27, .12);
  --shadow: 0 24px 70px rgba(63, 35, 13, .14);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body,
a,
button {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

h1,
h2 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 6vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .95;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

h1 em,
h2 em {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.pixel-fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.top-note {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px;
  color: #fff;
  background: var(--green-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.top-note__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 5px rgba(33, 199, 105, .16);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 241, .92);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .05em;
}

.brand small {
  margin-top: 4px;
  color: var(--orange);
  font-size: .57rem;
  font-weight: 900;
  letter-spacing: .28em;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  font-size: .9rem;
  font-weight: 800;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, .74), transparent 48%),
    var(--cream);
}

.hero::after {
  position: absolute;
  z-index: -2;
  right: -12vw;
  bottom: -32vw;
  width: 74vw;
  height: 74vw;
  max-width: 1050px;
  max-height: 1050px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--orange-soft), var(--orange));
  content: "";
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .55;
}

.hero__glow--one {
  top: 10%;
  left: -110px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 113, 18, .34);
}

.hero__glow--two {
  top: 14%;
  right: 34%;
  width: 32px;
  height: 32px;
  background: var(--green);
  box-shadow: 0 0 0 15px rgba(13, 107, 66, .09);
}

.hero__grid {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, .96fr);
  align-items: center;
  gap: 44px;
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding: 74px 0 86px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--orange);
}

.eyebrow--light {
  color: rgba(255, 255, 255, .78);
}

.eyebrow--light span {
  color: var(--whatsapp);
}

.hero__lead {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.cta {
  display: inline-flex;
  min-height: 74px;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(13, 107, 66, .18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(13, 107, 66, .24);
}

.cta:focus-visible,
.mobile-sticky:focus-visible,
.nav__link:focus-visible {
  outline: 3px solid rgba(33, 199, 105, .5);
  outline-offset: 4px;
}

.cta--primary {
  color: #fff;
  background: var(--green);
}

.cta--primary:hover {
  background: var(--green-dark);
}

.cta__icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, .14);
}

.cta__icon svg {
  width: 25px;
  fill: currentColor;
}

.cta__text {
  display: grid;
  min-width: 190px;
  line-height: 1.15;
  text-align: left;
}

.cta__text strong {
  font-size: 1rem;
}

.cta__text small {
  margin-top: 5px;
  font-size: .72rem;
  font-weight: 500;
  opacity: .72;
}

.cta__arrow {
  margin-left: 8px;
  font-size: 1.55rem;
  line-height: 1;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-list span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: rgba(13, 107, 66, .1);
  font-size: .7rem;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 690px;
}

.hero__person {
  position: absolute;
  z-index: 2;
  right: -4%;
  bottom: -2px;
  width: min(91%, 520px);
  max-height: 735px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 28px 28px rgba(60, 27, 6, .18));
}

.hero__stamp {
  position: absolute;
  z-index: 3;
  top: 86px;
  right: 6px;
  display: grid;
  width: 126px;
  height: 126px;
  place-content: center;
  border: 1px dashed rgba(255, 255, 255, .72);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  transform: rotate(8deg);
}

.hero__stamp::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: inherit;
  content: "";
}

.hero__stamp strong {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1;
}

.hero__stamp span {
  margin-top: 6px;
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero__card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 16px;
  background: rgba(255, 255, 255, .87);
  box-shadow: 0 18px 44px rgba(73, 37, 9, .16);
  backdrop-filter: blur(15px);
}

.hero__card--top {
  top: 190px;
  left: -28px;
}

.hero__card--bottom {
  right: -10px;
  bottom: 110px;
}

.hero__card-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}

.hero__card-icon--green {
  background: var(--green);
}

.hero__card > span:last-child {
  display: grid;
  line-height: 1.2;
}

.hero__card strong {
  font-size: .8rem;
}

.hero__card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .66rem;
}

.inside {
  position: relative;
  overflow: hidden;
  padding: 120px 0 105px;
  color: #fff;
  background: var(--green-dark);
}

.inside::before {
  position: absolute;
  top: -280px;
  right: -190px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255, 255, 255, .025), 0 0 0 130px rgba(255, 255, 255, .018);
  content: "";
}

.section-heading {
  max-width: 780px;
  margin-bottom: 58px;
}

.section-heading p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading--light p:last-child {
  color: rgba(255, 255, 255, .67);
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.phone-card {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 30px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 28px 65px rgba(0, 0, 0, .22);
}

.phone-card--one {
  transform: rotate(-2.5deg);
}

.phone-card--two {
  transform: translateY(-26px);
}

.phone-card--three {
  transform: rotate(2.5deg);
}

.phone-card img {
  width: 100%;
  border-radius: 20px;
}

.phone-card__tag {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .91);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.phone-card__tag span {
  color: var(--orange);
}

.inside__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 64px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.inside__cta p {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.inside__cta p strong {
  display: block;
  color: #fff;
  font-size: 1.18rem;
}

.cta--light {
  color: var(--ink);
  background: var(--whatsapp);
}

.cta--light .cta__icon {
  color: #fff;
  background: var(--green-dark);
}

.benefits {
  padding: 125px 0;
  background: #fffaf5;
}

.benefits__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: start;
  gap: 80px;
}

.benefits__intro {
  position: sticky;
  top: 30px;
}

.benefits__intro h2 {
  font-size: clamp(2.7rem, 4.7vw, 4.9rem);
}

.benefits__intro > p:last-child {
  max-width: 420px;
  color: var(--muted);
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  position: relative;
  min-height: 275px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 55px rgba(70, 42, 20, .07);
}

.benefit-card--orange {
  color: #fff;
  background: var(--orange);
}

.benefit-card--green {
  color: #fff;
  background: var(--green);
}

.benefit-card__number {
  position: absolute;
  top: 25px;
  right: 25px;
  color: currentColor;
  font-size: .7rem;
  font-weight: 900;
  opacity: .35;
}

.benefit-card__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 50px;
  place-items: center;
  border-radius: 16px;
  color: var(--orange);
  background: var(--cream-deep);
  font-size: 1.2rem;
  font-weight: 900;
}

.benefit-card--orange .benefit-card__icon,
.benefit-card--green .benefit-card__icon {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.benefit-card h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  letter-spacing: -.02em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.benefit-card--orange p,
.benefit-card--green p {
  color: rgba(255, 255, 255, .72);
}

.steps {
  padding: 115px 0 120px;
  border-top: 1px solid var(--line);
  background: var(--cream-deep);
}

.steps .section-heading {
  margin-bottom: 44px;
}

.steps__list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.steps__list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 25px;
  padding: 26px 10px;
  border-bottom: 1px solid var(--line);
}

.steps__list li > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
}

.steps__list div {
  display: grid;
  grid-template-columns: minmax(180px, .45fr) 1fr;
  align-items: center;
  gap: 20px;
}

.steps__list strong {
  font-size: 1.05rem;
}

.steps__list small {
  color: var(--muted);
  font-size: .9rem;
}

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 105px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange) 58%, #ff9748);
}

.final-cta__orb {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
}

.final-cta__orb--one {
  top: -250px;
  left: -170px;
  width: 530px;
  height: 530px;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, .025);
}

.final-cta__orb--two {
  right: -210px;
  bottom: -310px;
  width: 660px;
  height: 660px;
  box-shadow: 0 0 0 75px rgba(255, 255, 255, .025);
}

.final-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-cta__content > img {
  width: 92px;
  height: 74px;
  margin-bottom: 25px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
}

.final-cta h2 {
  max-width: 970px;
  margin-bottom: 22px;
}

.final-cta h2 em {
  color: #fff;
}

.final-cta__content > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.08rem;
}

.cta--white {
  color: var(--green-dark);
  background: #fff;
  box-shadow: 0 20px 48px rgba(80, 23, 0, .2);
}

.cta--white .cta__icon {
  color: #fff;
  background: var(--whatsapp);
}

.final-cta__note {
  margin-top: 18px;
  color: rgba(255, 255, 255, .65);
  font-size: .75rem;
}

.footer {
  padding: 45px 0;
  color: rgba(255, 255, 255, .68);
  background: #102117;
}

.footer__content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 44px;
}

.brand--footer {
  color: #fff;
}

.footer p {
  max-width: 610px;
  margin: 0;
  font-size: .72rem;
}

.footer__legal {
  display: flex;
  max-width: 330px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 14px;
  font-size: .72rem;
}

.footer__legal a,
.footer__legal button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.footer__legal span {
  width: 100%;
  text-align: right;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 100;
  right: 18px;
  bottom: 18px;
  left: 18px;
}

.cookie-banner__content {
  display: grid;
  width: min(1080px, 100%);
  margin-inline: auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  color: #fff;
  background: rgba(8, 70, 46, .97);
  box-shadow: 0 24px 70px rgba(8, 35, 23, .35);
  backdrop-filter: blur(18px);
}

.cookie-banner__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--green-dark);
  background: var(--whatsapp);
  font-size: 1.35rem;
  font-weight: 900;
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 3px;
  font-size: .94rem;
}

.cookie-banner__copy p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: .76rem;
}

.cookie-banner__copy a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  gap: 9px;
}

.cookie-button {
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 12px;
  font-size: .74rem;
  font-weight: 800;
  cursor: pointer;
}

.cookie-button--secondary {
  color: #fff;
  background: transparent;
}

.cookie-button--primary {
  border-color: var(--whatsapp);
  color: var(--green-dark);
  background: var(--whatsapp);
}

body.cookie-consent-open .mobile-sticky,
body.cookie-consent-open .join-confirmation {
  opacity: 0;
  pointer-events: none;
}

.legal-page {
  min-height: 100vh;
  background: var(--cream);
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.legal-header__content {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-header__back {
  color: var(--green);
  font-size: .82rem;
  font-weight: 800;
}

.legal-main {
  padding: 80px 0 105px;
}

.legal-article {
  max-width: 850px;
}

.legal-article h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
}

.legal-article__updated {
  margin-bottom: 48px;
  color: var(--muted);
  font-size: .82rem;
}

.legal-article section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-article h2 {
  margin-bottom: 15px;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.legal-article p,
.legal-article li {
  color: #4f5c54;
}

.legal-article ul {
  display: grid;
  gap: 9px;
  padding-left: 22px;
}

.legal-note {
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  border-radius: 0 14px 14px 0;
  background: #fff;
}

.mobile-sticky {
  display: none;
}

@media (max-width: 1020px) {
  .hero__grid {
    grid-template-columns: 1fr .8fr;
    gap: 10px;
  }

  .hero__card--top {
    left: -10px;
  }

  .hero__card--bottom {
    right: -5px;
  }

  .benefits__grid {
    gap: 42px;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 76px;
  }

  .shell {
    width: min(100% - 30px, 680px);
  }

  .nav {
    min-height: 70px;
  }

  .hero,
  .hero__grid {
    min-height: 0;
  }

  .hero::after {
    right: -33%;
    bottom: -20%;
    width: 116vw;
    height: 116vw;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 630px;
    padding: 68px 0 24px;
    text-align: center;
  }

  .hero__copy .eyebrow {
    justify-content: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .trust-list {
    justify-content: center;
  }

  .hero__visual {
    min-height: 590px;
  }

  .hero__person {
    right: 50%;
    width: min(82%, 450px);
    max-height: 570px;
    transform: translateX(50%);
  }

  .hero__stamp {
    top: 54px;
    right: 3%;
  }

  .hero__card--top {
    top: 145px;
    left: 3%;
  }

  .hero__card--bottom {
    right: 2%;
    bottom: 95px;
  }

  .inside,
  .benefits,
  .steps,
  .final-cta {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .phone-grid {
    gap: 16px;
  }

  .phone-card {
    padding: 8px;
    border-radius: 20px;
  }

  .phone-card img {
    border-radius: 14px;
  }

  .phone-card__tag {
    top: 16px;
    left: 16px;
    padding: 6px 9px;
    font-size: .56rem;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .benefits__intro {
    position: static;
  }

  .footer__content {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }

  .footer__legal span {
    text-align: center;
  }

  .cookie-banner__content {
    grid-template-columns: auto 1fr;
  }

  .cookie-banner__actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .mobile-sticky {
    position: fixed;
    z-index: 50;
    right: 12px;
    bottom: 10px;
    left: 12px;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 16px;
    color: #fff;
    background: var(--green);
    box-shadow: 0 15px 40px rgba(8, 70, 46, .34);
    font-size: .9rem;
    font-weight: 900;
  }

  .mobile-sticky span,
  .mobile-sticky svg {
    width: 24px;
    height: 24px;
  }

  .mobile-sticky svg {
    fill: currentColor;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: clamp(2.75rem, 13vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }

  .top-note {
    min-height: 32px;
    font-size: .65rem;
  }

  .nav__link {
    font-size: .8rem;
  }

  .hero__copy {
    padding-top: 54px;
  }

  .cta {
    width: 100%;
    max-width: 390px;
    justify-content: flex-start;
  }

  .cta__text {
    min-width: 0;
    flex: 1;
  }

  .cta__arrow {
    margin-left: auto;
  }

  .trust-list {
    gap: 9px 14px;
    font-size: .7rem;
  }

  .hero__visual {
    min-height: 510px;
  }

  .hero__person {
    max-height: 500px;
  }

  .hero__stamp {
    top: 30px;
    right: -8px;
    width: 102px;
    height: 102px;
  }

  .hero__stamp strong {
    font-size: 1.15rem;
  }

  .hero__card {
    padding: 8px 10px 8px 8px;
  }

  .hero__card--top {
    top: 135px;
    left: -5px;
  }

  .hero__card--bottom {
    right: -5px;
    bottom: 60px;
  }

  .hero__card-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .hero__card strong {
    font-size: .7rem;
  }

  .hero__card small {
    font-size: .58rem;
  }

  .inside,
  .benefits,
  .steps,
  .final-cta {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .phone-grid {
    display: flex;
    margin-inline: -15px;
    padding: 10px 20px 30px;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .phone-grid::-webkit-scrollbar {
    display: none;
  }

  .phone-card {
    min-width: 78vw;
    max-width: 310px;
    scroll-snap-align: center;
    transform: none;
  }

  .inside__cta {
    align-items: stretch;
    flex-direction: column;
    margin-top: 32px;
  }

  .benefit-cards {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 230px;
  }

  .benefit-card__icon {
    margin-bottom: 32px;
  }

  .steps__list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .steps__list li {
    grid-template-columns: 55px 1fr;
    gap: 14px;
  }

  .final-cta__content > img {
    width: 80px;
    height: 64px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .cookie-banner__content {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
    border-radius: 18px;
  }

  .cookie-banner__icon {
    display: none;
  }

  .cookie-banner__actions {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-button {
    padding-inline: 9px;
    font-size: .68rem;
  }

  .legal-main {
    padding: 58px 0 80px;
  }
}

/* Tema premium escuro */
:root {
  --ink: #f4f7f5;
  --muted: #a9b5ad;
  --cream: #09120d;
  --cream-deep: #0f1d15;
  --paper: #15251b;
  --green: #108452;
  --green-dark: #05160d;
  --line: rgba(255, 255, 255, .11);
  --shadow: 0 26px 75px rgba(0, 0, 0, .34);
}

body {
  color: var(--ink);
  background: #07100b;
}

.site-header {
  border-color: rgba(255, 255, 255, .08);
  background: rgba(7, 16, 11, .92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .14);
}

.nav__link,
.brand {
  color: #fff;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(255, 113, 18, .22);
}

.hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 113, 18, .2), transparent 34%),
    radial-gradient(circle at 12% 5%, rgba(21, 208, 107, .1), transparent 28%),
    linear-gradient(135deg, #13271c 0%, #0d1d14 52%, #17291d 100%);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: url("images/0c5dd4_6d041d2b63f74ae394ade3603c59ba25~mv2.png");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .5;
  filter: saturate(.92) brightness(.9) contrast(1.02);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .3) 26%, #000 58%, #000 100%);
  content: "";
}

.hero::after {
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(7, 16, 11, .86) 0%, rgba(7, 16, 11, .74) 38%, rgba(7, 16, 11, .4) 70%, rgba(7, 16, 11, .2) 100%);
  box-shadow: none;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 8px 34px rgba(0, 0, 0, .22);
}

.hero__lead,
.trust-list {
  color: #b7c2ba;
}

.trust-list span {
  color: #7bffb6;
  background: rgba(33, 199, 105, .14);
}

.hero__glow--one {
  border-color: rgba(255, 113, 18, .38);
}

.hero__glow--two {
  background: var(--whatsapp);
  box-shadow: 0 0 0 15px rgba(33, 199, 105, .09), 0 0 35px rgba(33, 199, 105, .28);
}

.hero__card {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(16, 29, 21, .9);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .34);
}

.hero__card small {
  color: #a9b5ad;
}

.cta--primary {
  position: relative;
  overflow: hidden;
  border-color: rgba(147, 255, 193, .48);
  color: #052215;
  background: linear-gradient(135deg, #65f59f 0%, #24dc76 50%, #15bd60 100%);
  box-shadow: 0 18px 48px rgba(20, 205, 103, .28), 0 0 0 1px rgba(116, 255, 176, .16) inset;
  animation: ctaPulse 2.15s ease-in-out infinite;
}

.cta--primary::after {
  position: absolute;
  top: -80%;
  left: -35%;
  width: 24%;
  height: 260%;
  background: rgba(255, 255, 255, .3);
  content: "";
  transform: rotate(18deg);
  transition: left .55s ease;
}

.cta--primary:hover {
  color: #031b10;
  background: linear-gradient(135deg, #86ffb9, #2be680 55%, #17c967);
  box-shadow: 0 24px 58px rgba(20, 205, 103, .4);
}

.cta--primary:hover::after {
  left: 120%;
}

.cta--primary .cta__icon {
  color: #fff;
  background: #087342;
  box-shadow: 0 8px 24px rgba(4, 80, 43, .25);
}

.cta--primary .cta__text strong {
  font-size: 1.04rem;
  letter-spacing: .015em;
  text-transform: uppercase;
}

.cta--primary .cta__text small {
  color: #064b2c;
  opacity: .9;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 18px 48px rgba(20, 205, 103, .26), 0 0 0 0 rgba(79, 245, 149, .38);
  }
  50% {
    box-shadow: 0 24px 58px rgba(20, 205, 103, .42), 0 0 0 13px rgba(79, 245, 149, 0);
  }
}

.inside {
  background:
    radial-gradient(circle at 90% 5%, rgba(33, 199, 105, .1), transparent 26%),
    #04130b;
}

.phone-card {
  background: rgba(255, 255, 255, .045);
}

.phone-card__tag {
  color: #17221b;
}

.cta--light {
  color: #041d10;
  background: linear-gradient(135deg, #58f29a, #20cf6e);
  box-shadow: 0 18px 50px rgba(32, 207, 110, .24);
}

.benefits {
  background:
    radial-gradient(circle at 5% 30%, rgba(255, 113, 18, .07), transparent 24%),
    #09140e;
}

.benefit-card {
  border-color: rgba(255, 255, 255, .09);
  background: linear-gradient(145deg, #17271d, #101d16);
  box-shadow: 0 20px 58px rgba(0, 0, 0, .22);
}

.benefit-card--orange {
  background: linear-gradient(145deg, #ff7a1e, #dd5100);
}

.benefit-card--green {
  background: linear-gradient(145deg, #128653, #075a35);
}

.benefit-card p {
  color: #a9b5ad;
}

.benefit-card__icon {
  background: rgba(255, 255, 255, .08);
}

.steps {
  border-color: rgba(255, 255, 255, .08);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 113, 18, .09), transparent 28%),
    #0d1b13;
}

.steps__list li > span {
  background: linear-gradient(145deg, #28d877, #0a7746);
  box-shadow: 0 10px 28px rgba(23, 198, 102, .18);
}

.final-cta {
  background: linear-gradient(135deg, #d94c00 0%, var(--orange) 52%, #ff9c4c 100%);
}

.cta--white {
  border-color: rgba(255, 255, 255, .7);
  box-shadow: 0 20px 54px rgba(77, 18, 0, .28), 0 0 0 7px rgba(255, 255, 255, .08);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: #030b07;
}

.cookie-banner__content {
  border-color: rgba(101, 245, 159, .24);
  background: rgba(5, 22, 13, .98);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .54), 0 0 0 1px rgba(101, 245, 159, .08) inset;
}

.legal-page {
  background: #09140e;
}

.legal-header {
  border-color: rgba(255, 255, 255, .08);
  background: #07110c;
}

.legal-article p,
.legal-article li {
  color: #b2bdb5;
}

.legal-note {
  background: #15251b;
}

code {
  color: #8affba;
}

@media (min-width: 821px) {
  .mobile-sticky {
    position: fixed;
    z-index: 50;
    right: 24px;
    bottom: 24px;
    left: auto;
    display: inline-flex;
    width: auto;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 15px 23px;
    border: 1px solid rgba(132, 255, 184, .56);
    border-radius: 999px;
    color: #041d10;
    background: linear-gradient(135deg, #65f59f, #20cf6e);
    box-shadow: 0 18px 48px rgba(21, 205, 103, .36), 0 0 0 1px rgba(255, 255, 255, .18) inset;
    font-size: .9rem;
    font-weight: 950;
    letter-spacing: .02em;
    text-transform: uppercase;
    animation: ctaPulse 2.15s ease-in-out infinite;
  }

  .mobile-sticky span,
  .mobile-sticky svg {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
  }

  .mobile-sticky svg {
    fill: currentColor;
  }

  .mobile-sticky:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 820px) {
  .hero::before {
    background-position: 64% center;
    opacity: .34;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .85) 34%, #000 100%);
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(7, 16, 11, .86) 0%, rgba(7, 16, 11, .67) 46%, rgba(7, 16, 11, .34) 100%);
  }

  .mobile-sticky {
    border-color: rgba(132, 255, 184, .5);
    color: #041d10;
    background: linear-gradient(135deg, #60f49d, #20cf6e);
    box-shadow: 0 16px 45px rgba(21, 205, 103, .34), 0 0 0 1px rgba(255, 255, 255, .16) inset;
    text-transform: uppercase;
    animation: ctaPulse 2.15s ease-in-out infinite;
  }
}

.join-confirmation[hidden] {
  display: none;
}

.join-confirmation {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 104px;
  display: grid;
  width: min(430px, calc(100vw - 48px));
  grid-template-columns: auto 1fr;
  gap: 12px 14px;
  padding: 18px;
  border: 1px solid rgba(132, 255, 184, .42);
  border-radius: 20px;
  color: #f7fff9;
  background: rgba(7, 25, 15, .96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38), 0 0 0 1px rgba(255, 255, 255, .05) inset;
  backdrop-filter: blur(18px);
}

.join-confirmation__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: #062313;
  background: linear-gradient(135deg, #65f59f, #20cf6e);
  font-size: 1.2rem;
  font-weight: 950;
}

.join-confirmation__copy {
  display: grid;
  gap: 3px;
}

.join-confirmation__copy strong {
  font-size: 1rem;
}

.join-confirmation__copy span {
  color: #b9cbbf;
  font-size: .82rem;
  line-height: 1.45;
}

.join-confirmation__actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.join-confirmation__actions button {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-size: .8rem;
  font-weight: 900;
  cursor: pointer;
}

.join-confirmation__later {
  border-color: rgba(255, 255, 255, .16) !important;
  color: #dbe7de;
  background: transparent;
}

.join-confirmation__confirm {
  color: #052215;
  background: linear-gradient(135deg, #65f59f, #20cf6e);
  box-shadow: 0 10px 28px rgba(21, 205, 103, .24);
}

@media (max-width: 820px) {
  .join-confirmation {
    right: 12px;
    bottom: 84px;
    left: 12px;
    width: auto;
    padding: 15px;
  }

  .join-confirmation__actions {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
