:root {
  --blue: #081b58;
  --blue-2: #0d2d74;
  --green: #8bc653;
  --green-dark: #4a8a38;
  --orange: #f59a2f;
  --text: #0b1f57;
  --muted: #5e8747;
  --white: #ffffff;
  --light: #f7f7f7;
  --shadow: 0 20px 60px rgba(61, 125, 54, 0.2);
  --container: 1180px;
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img { display: block; max-width: 100%; }

.section-shell {
  width: min(100% - 44px, var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #071852;
  border-bottom: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 30px rgba(2,12,48,.18);
  overflow: visible;
  isolation: isolate;
}
.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 0%, rgba(139,198,83,.16), transparent 26%),
    linear-gradient(110deg, transparent 0%, rgba(255,255,255,.05) 42%, transparent 58%);
  background-size: 140% 100%, 220% 100%;
  background-position: 0 0, -130% 0;
  opacity: .75;
  animation: topbar-sheen 7s ease-in-out infinite;
}
.nav-wrap {
  width: min(100% - 44px, 1140px);
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  position: relative;
  z-index: 1;
}
.brand {
  display: inline-flex;
  align-items: center;
  transition: transform .24s ease, filter .24s ease;
}
.brand img {
  width: 112px;
  transition: transform .24s ease, filter .24s ease;
}
.brand:hover img {
  transform: translateY(-1px) scale(1.035);
  filter: drop-shadow(0 8px 14px rgba(139,198,83,.32));
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 33px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}
.nav-menu a {
  position: relative;
  transition: color .22s ease, transform .22s ease, text-shadow .22s ease;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .24s ease, opacity .24s ease;
  opacity: 0;
}
.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--green);
  transform: translateY(-1px);
  text-shadow: 0 0 18px rgba(139,198,83,.28);
}

.nav-menu a:hover::after,
.nav-menu a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-menu:has(a:hover) a.is-active:not(:hover) {
  color: var(--white);
  transform: none;
  text-shadow: none;
}

.nav-menu:has(a:hover) a.is-active:not(:hover)::after {
  transform: scaleX(0);
  opacity: 0;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--green);
  font-weight: 900;
}
.social { font-size: 20px; }
.client {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 12px;
  align-items: center;
  color: var(--white);
}
.client span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
  isolation: isolate;
}
.client span::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid rgba(139,198,83,.44);
  opacity: 0;
  transform: scale(.82);
  transition: opacity .22s ease;
}
.client strong { font-size: 14px; }
.client small { color: var(--green); font-size: 13px; font-weight: 700; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 6px;
  background: #eef8e7;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 4px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--green-dark);
}

.hero {
  min-height: 690px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7,24,82,.82), rgba(25,91,24,.88)),
    var(--bg-hero, url("assets/clone/bg-hero.jpg")) center/cover no-repeat;
}
.hero-shell {
  width: min(100% - 44px, 1050px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.03fr;
  gap: 48px;
  align-items: start;
  padding: 42px 0 105px;
}
.hero-copy h1 {
  margin: 0;
  max-width: 700px;
  font-size: 25px;
  line-height: 1.22;
  font-weight: 500;
  text-transform: uppercase;
}
.hero-copy h1 span { display: block; color: var(--green); font-weight: 900; }
.hero-copy p {
  margin: 22px 0 10px;
  font-size: 14px;
  line-height: 1.7;
}
.decor-line { display: flex; gap: 20px; align-items: center; height: 22px; }
.decor-line i {
  width: 4px; height: 4px; background: var(--green); border-radius: 50%;
}
.decor-line b {
  width: 25px; height: 4px; background: var(--green); border-radius: 4px;
}
.check-list {
  display: grid;
  gap: 12px;
  padding: 17px 0 0;
  margin: 0;
  list-style: none;
  font-size: 15px;
  font-weight: 800;
}
.check-list li {
  position: relative;
  padding-left: 30px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  color: var(--blue);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}
.video-call {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 58px;
  padding-left: 52px;
  text-align: center;
}
.video-call strong { font-size: 16px; line-height: 1.4; }
.video-call span { color: var(--green); font-size: 62px; line-height: 1; }
.hero-media { padding-top: 36px; text-align: center; }
.hero-logo {
  width: 155px;
  margin: 0 auto 82px;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.5);
  background: #1b703b;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 28px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.9);
  color: var(--white);
  background: var(--green);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}
.btn-main { margin-top: 18px; }
.btn-soft {
  align-self: end;
  margin-left: 18px;
  min-height: 42px;
  box-shadow: 0 0 85px rgba(139,198,83,.55);
}
.btn-outline { background: transparent; min-height: 46px; }
.btn-orange { background: var(--orange); border: 0; min-height: 36px; font-size: 12px; font-weight: 800; }

.benefits-section { padding: 82px 0 78px; background: #fff; }
.section-title h2 {
  margin: 0;
  font-size: 42px;
  line-height: .9;
  font-weight: 900;
  color: var(--text);
}
.section-title p {
  margin: 4px 0 0;
  color: var(--green);
  font-size: 24px;
  font-weight: 800;
}
.benefits-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 38px;
  margin-top: 42px;
}
.benefit-photo {
  width: 360px;
  height: 640px;
  object-fit: cover;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 18px;
  align-items: stretch;
}
.benefit-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  min-height: 128px;
  padding: 18px 22px 18px 12px;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  background: var(--white);
}
.benefit-item span {
  color: var(--green);
  font-size: 37px;
  line-height: 1;
  font-weight: 900;
}
.benefit-item h3 {
  margin: 0 0 13px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.05;
  font-weight: 900;
}
.benefit-item p {
  margin: 0;
  color: #5d9541;
  font-size: 13px;
  line-height: 1.7;
}

.how-section {
  color: var(--white);
  background:
    linear-gradient(rgba(8,27,88,.93), rgba(8,27,88,.96)),
    var(--bg-blue, url("assets/clone/bg-blue.webp")) center/cover no-repeat;
  padding: 32px 0 36px;
}
.narrow { width: min(100% - 44px, 850px); }
.section-title.center { text-align: center; }
.section-title.light h2 { color: var(--white); font-size: 34px; }
.section-title.light p { color: var(--green); font-size: 17px; }
.how-grid {
  display: grid;
  gap: 14px;
  justify-content: center;
}
.how-grid.top { grid-template-columns: repeat(3, 1fr); margin-top: 55px; }
.how-grid.bottom { grid-template-columns: repeat(2, 1fr); width: 520px; margin: 44px auto 0; }
.how-grid article {
  position: relative;
  min-height: 122px;
  padding: 47px 18px 22px;
  color: var(--text);
  background: var(--white);
  border-radius: 5px;
  text-align: center;
}
.how-grid span {
  position: absolute;
  left: 50%;
  top: -27px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--green);
  color: var(--white);
  border-radius: 5px;
  font-size: 26px;
}
.how-grid h3 { margin: 0 0 8px; font-size: 16px; font-weight: 900; }
.how-grid p { margin: 0; color: #1d326a; font-size: 10px; line-height: 1.7; font-weight: 700; }
.how-cta { margin-top: 38px; text-align: center; }
.how-cta h3 { margin: 0 0 5px; font-size: 16px; font-weight: 900; }
.how-cta p { margin: 0 0 25px; font-size: 11px; font-weight: 700; }
.how-cta img {
  width: 500px;
  margin: 0 auto 20px;
  border-radius: 6px;
}

.about-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(34,94,28,.95), rgba(92,137,66,.93)),
    var(--bg-map, url("assets/clone/bg-map.webp")) center/cover no-repeat;
  padding: 80px 0 58px;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.about-copy h2 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: 43px;
  font-weight: 900;
}
.about-copy p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}
.globe {
  margin: 62px auto 0;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 60px;
  opacity: .65;
}
.about-map { text-align: center; }
.about-map > img:first-child { width: 500px; margin: 0 auto; }
.white-logo { width: 180px; margin: 48px auto 0; }

.app-section {
  color: var(--white);
  background:
    linear-gradient(rgba(8,27,88,.97), rgba(8,27,88,.97)),
    var(--bg-blue, url("assets/clone/bg-blue.webp")) center/cover no-repeat;
  padding: 75px 0 55px;
  overflow: hidden;
}
.app-layout {
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.app-phone { width: 330px; justify-self: end; }
.app-copy h2 {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 42px;
  font-weight: 900;
}
.app-copy > p { margin: 0 0 46px; font-size: 15px; font-weight: 700; }
.app-cards {
  display: grid;
  grid-template-columns: repeat(2, 240px);
  gap: 18px;
}
.app-cards article {
  position: relative;
  min-height: 170px;
  padding: 62px 20px 22px;
  border: 1px solid var(--green);
  border-radius: 6px;
  text-align: center;
}
.app-cards span {
  position: absolute;
  left: 50%;
  top: -34px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
  font-size: 34px;
}
.app-cards p { margin: 0; font-size: 14px; line-height: 1.5; font-weight: 600; }
.store-row { display: flex; gap: 18px; margin-top: 34px; justify-content: center; width: 500px; }
.store-row img { height: 51px; width: auto; }

.club-section {
  background:
    linear-gradient(rgba(238,153,78,.92), rgba(238,153,78,.92)),
    var(--bg-club, url("assets/clone/bg-club.jpg")) center/cover no-repeat;
  padding: 70px 0 72px;
  overflow: hidden;
}
.club-layout { position: relative; display: grid; grid-template-columns: 520px 1fr; }
.club-copy small { color: var(--white); font-size: 14px; font-weight: 900; }
.club-copy h2 { margin: 2px 0 22px; font-size: 42px; color: var(--text); font-weight: 900; }
.club-card {
  width: 450px;
  padding: 28px 20px;
  background: var(--white);
  border-radius: 14px;
}
.club-card h3 { margin: 0 0 16px; font-size: 21px; line-height: 1.25; }
.club-card p { margin: 0; font-size: 14px; line-height: 1.5; }
.club-copy > strong { display: block; margin-top: 20px; font-size: 14px; }
.club-people {
  position: absolute;
  right: 100px;
  top: 10px;
  width: 360px;
}
.partners {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  margin-top: 70px;
}
.partners img {
  width: 100%;
  height: 118px;
  object-fit: contain;
  padding: 20px;
  background: #73b44f;
  border-radius: 9px;
}

.cashback-section {
  background:
    linear-gradient(rgba(126,190,88,.94), rgba(126,190,88,.94)),
    var(--bg-cashback, url("assets/clone/bg-cashback.jpg")) center/cover no-repeat;
  padding: 75px 0 90px;
}
.cashback-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 80px;
}
.cash-logo { width: 300px; justify-self: center; }
.cash-copy small { color: var(--white); font-size: 14px; font-weight: 900; }
.cash-copy h2 { margin: 0 0 18px; font-size: 43px; color: var(--text); font-weight: 900; }
.cash-card {
  width: 450px;
  padding: 22px;
  background: var(--white);
  border-radius: 7px;
}
.cash-card p { margin: 0 0 22px; font-size: 14px; line-height: 1.5; }
.cash-card strong { font-size: 18px; font-weight: 900; }
.cash-copy .btn { margin-top: 58px; }

.associate-section {
  color: var(--white);
  background:
    linear-gradient(rgba(15,55,152,.92), rgba(15,55,152,.94)),
    var(--bg-associate, url("assets/clone/bg-associado.webp")) center/cover no-repeat;
  padding: 70px 0 66px;
}
.associate-layout { position: relative; }
.associate-copy { width: 520px; margin-left: 170px; }
.associate-copy small { font-weight: 900; }
.associate-copy h2 { margin: 0 0 12px; color: var(--green); font-size: 43px; font-weight: 900; }
.associate-copy h3 { margin: 0 0 20px; font-size: 16px; }
.associate-copy p { font-size: 12px; line-height: 1.7; font-weight: 700; }
.associate-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.associate-cards article {
  min-height: 124px;
  padding: 50px 16px 16px;
  border: 1px solid var(--green);
  border-radius: 5px;
  position: relative;
  text-align: center;
}
.associate-cards span {
  position: absolute;
  left: 50%;
  top: -26px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--green);
  border-radius: 5px;
  font-size: 24px;
}
.associate-cards p { margin: 0; font-size: 10px; line-height: 1.6; }
.associate-img {
  position: absolute;
  right: 235px;
  top: 10px;
  width: 270px;
}
.associate-video {
  width: 520px;
  margin: 72px auto 0;
  text-align: center;
}
.associate-video h3 { margin: 0 0 20px; font-size: 20px; line-height: 1.35; }
.associate-video iframe {
  width: 380px;
  aspect-ratio: 16 / 9;
  border: 0;
}
.associate-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.associate-actions .btn {
  margin-top: 0;
  min-width: 190px;
}

.faq-section { padding: 90px 0 90px; background: #f7f7f7; }
.faq-layout { width: min(100% - 44px, 900px); }
.faq-title {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 64px;
}
.faq-title h2 { margin: 0; font-size: 24px; font-weight: 800; }
.faq-title strong { color: var(--green); font-size: 64px; font-weight: 900; }
.faq-list { display: grid; gap: 18px; }
.faq-list details { font-size: 18px; color: #213775; }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "⌄";
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}
.faq-list p {
  margin: 8px 0 0 20px;
  color: #4f5f83;
  font-size: 14px;
  line-height: 1.6;
}

.footer {
  color: var(--white);
  background:
    linear-gradient(rgba(7,24,82,.94), rgba(7,24,82,.98)),
    var(--bg-footer, url("assets/clone/bg-footer.webp")) center/cover no-repeat;
  padding: 100px 0 42px;
  text-align: center;
}
.footer img { width: 130px; margin: 0 auto 52px; }
.footer hr {
  border: 0;
  border-top: 1px solid rgba(139,198,83,.45);
  margin: 0 auto 40px;
  width: 74%;
}
.footer p { margin: 0 0 22px; font-size: 13px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
  font-size: 13px;
  font-weight: 700;
}
.back-top {
  position: fixed;
  left: 20px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--green);
  border-radius: 2px;
  font-size: 22px;
  font-weight: 900;
}
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 15px 28px rgba(0,0,0,.18);
}

@media (max-width: 980px) {
  .nav-menu, .nav-social { display: none; }
  .nav-toggle { display: block; }
  .topbar.nav-active .nav-menu {
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: var(--blue);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 6px;
  }
  .topbar.nav-active .nav-menu a { padding: 14px; }
  .hero-shell,
  .benefits-layout,
  .about-layout,
  .app-layout,
  .cashback-layout {
    grid-template-columns: 1fr;
  }
  .hero-media { padding-top: 0; }
  .hero-logo { margin-bottom: 26px; }
  .benefit-photo { display: none; }
  .app-phone { justify-self: center; }
  .club-layout { grid-template-columns: 1fr; }
  .club-people, .associate-img { position: static; margin: 20px auto; }
  .associate-copy { width: auto; margin-left: 0; }
}

@media (max-width: 680px) {
  .section-shell, .nav-wrap, .hero-shell, .narrow, .faq-layout { width: min(100% - 24px, var(--container)); }
  .brand img { width: 104px; }
  .hero { min-height: 0; }
  .hero-shell { padding: 22px 0 42px; gap: 24px; }
  .hero-copy h1 { font-size: 20px; text-align: center; }
  .hero-copy p { text-align: center; font-size: 13px; }
  .check-list { font-size: 13px; }
  .video-call { display: none; }
  .hero-logo { display: none; }
  .benefits-section, .about-section, .app-section, .club-section, .cashback-section, .associate-section, .faq-section { padding: 52px 0; }
  .section-title h2, .about-copy h2, .app-copy h2, .club-copy h2, .cash-copy h2, .associate-copy h2 { font-size: 34px; }
  .section-title p { font-size: 20px; }
  .benefit-grid, .how-grid.top, .how-grid.bottom, .app-cards, .partners, .associate-cards {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .benefit-item { grid-template-columns: 42px 1fr; }
  .how-grid.top { margin-top: 42px; }
  .how-grid.bottom { margin-top: 42px; }
  .how-cta img { width: 100%; }
  .club-card, .cash-card { width: 100%; }
  .club-people { width: 280px; }
  .partners { gap: 12px; }
  .partners img { height: 92px; }
  .app-cards { gap: 48px; }
  .store-row { width: 100%; flex-direction: column; align-items: center; }
  .cash-logo { width: 240px; }
  .associate-video { width: 100%; }
  .associate-video iframe { width: 100%; }
  .associate-actions { flex-direction: column; }
  .associate-actions .btn { width: min(100%, 300px); }
  .faq-title { gap: 18px; margin-bottom: 38px; }
  .faq-title strong { font-size: 52px; }
  .faq-list details { font-size: 15px; }
  .footer-bottom { flex-direction: column; gap: 18px; }
}

.revealable {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity .55s ease var(--reveal-delay, 0ms),
    transform .55s ease var(--reveal-delay, 0ms),
    box-shadow .24s ease,
    border-color .24s ease,
    filter .24s ease;
  will-change: opacity, transform;
}

.revealable.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Icon system and subtle interaction polish */
.bi {
  display: block;
  line-height: 1;
}

.social {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  font-size: 21px;
  transition: color .22s ease, transform .22s ease, filter .22s ease;
  position: relative;
  border-radius: 50%;
}

.social::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  background: rgba(139,198,83,.11);
  box-shadow: inset 0 0 0 1px rgba(139,198,83,.22);
  opacity: 0;
  transform: scale(.72);
  transition: opacity .22s ease, transform .22s ease;
}

.social:hover {
  color: var(--white);
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 10px rgba(139,198,83,.35));
}

.social:hover::before {
  opacity: 1;
  transform: scale(1);
}

.client,
.nav-toggle,
.back-top,
.floating-whatsapp {
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.client span {
  color: var(--white);
  font-size: 25px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.client:hover span {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 0 8px rgba(139,198,83,.13), 0 12px 24px rgba(0,0,0,.16);
}

.client:hover span::before {
  opacity: 1;
  animation: header-whatsapp-ring 1.35s ease-out infinite;
}

.client:hover strong {
  color: var(--green);
  transition: color .22s ease;
}

.nav-toggle:hover,
.back-top:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.check-list li::before {
  content: "\2713";
}

.video-call span .bi {
  font-size: 70px;
  filter: drop-shadow(0 10px 14px rgba(139,198,83,.22));
  animation: arrow-nudge 1.8s ease-in-out infinite;
}

.video-frame {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.video-frame:hover {
  transform: translateY(-3px);
  border-color: rgba(139,198,83,.7);
  box-shadow: 0 18px 38px rgba(0,0,0,.24);
}

.btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(87,151,60,.18);
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease, background .22s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.24) 42%, rgba(255,255,255,.42) 50%, rgba(255,255,255,.18) 58%, transparent 100%);
  transform: translateX(-125%);
  transition: transform .65s ease;
}

.btn > span {
  position: relative;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(87,151,60,.28);
  filter: saturate(1.08);
}

.btn:hover::before {
  transform: translateX(125%);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-main,
.btn-soft {
  animation: soft-pulse 2.9s ease-in-out infinite;
}

.btn-outline {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), 0 12px 28px rgba(255,255,255,.08);
}

.btn-orange {
  box-shadow: 0 12px 30px rgba(245,154,47,.28);
}

.benefit-item,
.how-grid article,
.app-cards article,
.associate-cards article,
.partners img {
  transition:
    opacity .55s ease var(--reveal-delay, 0ms),
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease,
    filter .24s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  border-color: rgba(139,198,83,.55);
  box-shadow: 0 18px 42px rgba(61,125,54,.14);
}

.benefit-item span,
.how-grid span,
.app-cards span,
.associate-cards span {
  transition: transform .24s ease, box-shadow .24s ease, color .24s ease;
}

.benefit-item span .bi {
  font-size: 37px;
}

.benefit-item:hover span {
  transform: scale(1.08) rotate(-3deg);
}

.how-grid article:hover,
.app-cards article:hover,
.associate-cards article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
}

.how-grid span .bi,
.associate-cards span .bi {
  font-size: 29px;
}

.app-cards span .bi {
  font-size: 36px;
}

.how-grid article:hover span,
.app-cards article:hover span,
.associate-cards article:hover span {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 10px 22px rgba(139,198,83,.28);
}

.globe {
  color: rgba(255,255,255,.82);
  transition: transform .3s ease, opacity .3s ease;
}

.globe .bi {
  font-size: 74px;
}

.globe:hover {
  opacity: .95;
  transform: rotate(8deg) scale(1.03);
}

.partners img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,.12);
  filter: brightness(1.06);
}

.faq-list details {
  transition: color .2s ease;
}

.faq-list details:hover {
  color: var(--blue);
}

.faq-list summary::after {
  display: none;
}

.faq-chevron {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 11px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.faq-list details[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-list summary:hover .faq-chevron {
  box-shadow: 0 0 0 5px rgba(139,198,83,.14);
}

.back-top .bi {
  font-size: 22px;
}

.floating-whatsapp {
  color: var(--white);
  font-size: 27px;
}

.floating-whatsapp .bi {
  font-size: 27px;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(139,198,83,.55);
  animation: whatsapp-ring 1.9s ease-out infinite;
}

.floating-whatsapp:hover {
  box-shadow: 0 18px 34px rgba(0,0,0,.22), 0 0 0 8px rgba(139,198,83,.14);
}

@keyframes soft-pulse {
  0%, 100% {
    box-shadow: 0 12px 28px rgba(87,151,60,.18), 0 0 0 0 rgba(139,198,83,.2);
  }
  50% {
    box-shadow: 0 18px 38px rgba(87,151,60,.26), 0 0 0 8px rgba(139,198,83,0);
  }
}

@keyframes whatsapp-ring {
  0% { transform: scale(.86); opacity: .85; }
  100% { transform: scale(1.25); opacity: 0; }
}

@keyframes header-whatsapp-ring {
  0% { transform: scale(.86); opacity: .72; }
  100% { transform: scale(1.22); opacity: 0; }
}

@keyframes topbar-sheen {
  0%, 100% { background-position: 0 0, -130% 0; opacity: .62; }
  50% { background-position: 100% 0, 130% 0; opacity: .95; }
}

@keyframes arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
