:root {
  --header-bg: #f1faff;
  --hero-bg: #ffffff;
  --header-border: #ebf6fc;
  --header-shadow: none;
  --brand-name: #2c3640;
  --brand-tag: #9aa4ae;
  --nav-link: #3d5a6c;
  --nav-link-hover: #1a3344;
  --page-bg: #ffffff;
  --text: #334155;
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-display: "Krub", sans-serif;
  --font-body: "Lexend", sans-serif;
  --hero-blue: #089dd9;
  --hero-teal: #41b8b2;
  --hero-text: #52646d;
  --header-height: 120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--page-bg);
}

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

/* ——— Header fixo no topo ——— */
.site-header {
  position: relative;
  z-index: 100;
  height: var(--header-height);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0 28px 0 36px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand__logo {
  display: block;
  height: 92px;
  width: auto;
  object-fit: contain;
}

/* Desktop nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--nav-link);
  white-space: nowrap;
  transition: color 0.18s ease;
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--hero-blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav__list a:hover,
.nav__list a:focus-visible {
  color: var(--nav-link-hover);
}

.nav__list a:hover::after,
.nav__list a:focus-visible::after {
  transform: scaleX(1);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--brand-name);
  border-radius: 2px;
}

.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--header-bg);
  border-top: 1px solid var(--header-border);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  padding: 8px 24px 16px;
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.nav-mobile a {
  display: block;
  padding: 12px 8px;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--nav-link);
  border-radius: 8px;
}

.nav-mobile a:hover {
  background: rgba(15, 23, 42, 0.04);
  color: var(--nav-link-hover);
}

/* Page content */
main {
  padding-top: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  /* Deixa a próxima dobra (#e6f8ff) aparecer no rodapé da 1ª tela, como no site */
  min-height: calc(100vh - var(--header-height) - 96px);
  display: flex;
  align-items: center;
  padding: 40px 0 56px;
  background: var(--hero-bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/bg-hero.png") right top / contain no-repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
  align-items: center;
  gap: 40px 48px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px 0 22px;
}

.hero__content {
  max-width: 520px;
}

.hero__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--hero-text);
}

.hero__eyebrow span {
  color: var(--hero-blue);
  font-weight: 700;
}

.hero__media {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__media--collage {
  width: 100%;
}

.hero__collage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: auto auto;
  gap: 12px;
  width: 100%;
  max-width: 620px;
}

.hero__collage-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0;
  animation: heroMediaIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__collage-img--tall {
  grid-row: 1 / span 2;
  min-height: 360px;
  animation-delay: 0.08s;
}

.hero__collage-img--wide {
  min-height: 160px;
  animation-delay: 0.18s;
}

.hero__collage-img--mid {
  min-height: 180px;
  animation-delay: 0.28s;
}

@media (prefers-reduced-motion: reduce) {
  .hero__collage-img {
    opacity: 1;
    animation: none;
  }
}

.hero__media img {
  display: block;
  width: 88%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
  opacity: 0;
  animation: heroMediaIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

@keyframes heroMediaIn {
  from {
    opacity: 0;
    transform: translateY(-120px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media img {
    opacity: 1;
    animation: none;
  }
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: normal;
  color: var(--hero-blue);
}

.hero__copy {
  margin-top: 20px;
  max-width: 420px;
}

.hero__copy p {
  margin: 0 0 14.4px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--hero-text);
}

.hero__copy p:last-child {
  margin-bottom: 0;
}

.hero__copy strong {
  font-weight: 400;
}

.hero__cta {
  display: inline-block;
  margin-top: 44px;
  padding: 20px 64px;
  border-radius: 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, var(--hero-blue) 0%, var(--hero-teal) 100%);
  transition: opacity 0.2s ease;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  opacity: 0.92;
}

/* ——— Segunda dobra: 24h ——— */
.fold-24h {
  background: #e6f8ff;
  padding: 72px 0;
}

.fold-24h__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 1fr);
  align-items: center;
  gap: 48px 56px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.fold-24h__media {
  min-width: 0;
}

.fold-24h__media img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
  border-radius: 24px;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fold-24h__content {
  max-width: 460px;
}

.fold-24h__title,
.fold-24h__copy,
.fold-24h__cta {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fold-24h__copy {
  transition-delay: 0s;
}

.fold-24h__cta {
  transition-delay: 0s;
}

.fold-24h.is-visible .fold-24h__media img {
  opacity: 1;
  transform: translateY(0);
  animation: mediaFloat 5.5s ease-in-out 1.5s infinite;
}

.fold-24h.is-visible .fold-24h__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}

.fold-24h.is-visible .fold-24h__copy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.36s;
}

.fold-24h.is-visible .fold-24h__cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.52s;
}

@keyframes mediaFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fold-24h__media img,
  .fold-24h__title,
  .fold-24h__copy,
  .fold-24h__cta {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

.fold-24h__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--hero-blue);
}

.fold-24h__title span {
  display: block;
}

.fold-24h__copy {
  margin-top: 28px;
}

.fold-24h__copy p {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
  color: #5b5755;
}

.fold-24h__copy p:last-child {
  margin-bottom: 0;
}

.fold-24h__cta {
  display: inline-block;
  margin-top: 36px;
  padding: 18px 70px;
  border-radius: 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  background: linear-gradient(90deg, var(--hero-teal) 0%, var(--hero-blue) 100%);
  transition: opacity 0.2s ease;
}

.fold-24h__cta:hover,
.fold-24h__cta:focus-visible {
  opacity: 0.92;
}

/* ——— Terceira dobra: A melhor escolha ——— */
.fold-escolha {
  --escolha-bg: #52646d;
  --escolha-blue: #2fc3ff;
  --escolha-blue-soft: #a0e3ff;
  --escolha-blue-mid: #42c9ff;
  --escolha-lead: #afddf0;
  --escolha-muted: #c1c5c7;
  position: relative;
  overflow: hidden;
  background: var(--escolha-bg);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 0 96px;
  text-align: center;
}

.fold-escolha::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/bg-escolha.png") center / cover no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

.fold-escolha__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 28px;
}

.fold-escolha__eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--escolha-blue-soft);
}

.fold-escolha__headline {
  margin: 0 auto;
  max-width: 720px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--escolha-blue);
}

.fold-escolha__lead {
  margin: 24px auto 0;
  max-width: 700px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--escolha-lead);
}

.fold-escolha__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  margin-top: 48px;
  text-align: left;
}

.fold-escolha__card h3 {
  margin: 14px 0 12px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--escolha-blue-mid);
}

.fold-escolha__card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
  color: var(--escolha-muted);
}

.fold-escolha__icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  color: var(--escolha-blue-mid);
}

.fold-escolha__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.fold-escolha__cta {
  display: inline-block;
  margin-top: 48px;
  padding: 18px 40px;
  border-radius: 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(90deg, var(--hero-teal) 0%, var(--hero-blue) 100%);
  transition: opacity 0.2s ease;
}

.fold-escolha__cta:hover,
.fold-escolha__cta:focus-visible {
  opacity: 0.92;
}

/* ——— Quarta dobra: Mix & tecnologia ——— */
.fold-mix {
  background: #ffffff;
  padding: 80px 0;
}

.fold-mix__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
  align-items: center;
  gap: 48px 56px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.fold-mix__media {
  min-width: 0;
}

.fold-mix__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fold-mix.is-visible .fold-mix__media img {
  opacity: 1;
  transform: translateY(0);
  animation: mediaFloat 6s ease-in-out 1.5s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .fold-mix__media img {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

.fold-mix__content {
  position: relative;
  max-width: 520px;
  z-index: 0;
}

.fold-mix__content::before {
  content: "";
  position: absolute;
  right: -8%;
  top: -6%;
  width: min(340px, 90%);
  height: min(340px, 90%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Crect x='28' y='18' width='72' height='72' rx='16' stroke='%23089dd9' stroke-width='1.5' opacity='0.22'/%3E%3Crect x='72' y='48' width='72' height='72' rx='16' stroke='%2341b8b2' stroke-width='1.5' opacity='0.2'/%3E%3Crect x='48' y='88' width='72' height='72' rx='16' stroke='%23089dd9' stroke-width='1.5' opacity='0.16'/%3E%3Crect x='110' y='20' width='56' height='56' rx='14' stroke='%2341b8b2' stroke-width='1.5' opacity='0.14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
}

.fold-mix__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--hero-blue);
}

.fold-mix__copy {
  margin-top: 22px;
}

.fold-mix__copy p {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
  color: #7a7a7a;
}

.fold-mix__copy p:last-child {
  margin-bottom: 0;
}

.fold-mix__cta {
  display: inline-block;
  margin-top: 32px;
  padding: 18px 48px;
  border-radius: 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(90deg, var(--hero-teal) 0%, var(--hero-blue) 100%);
  transition: opacity 0.2s ease;
}

.fold-mix__cta:hover,
.fold-mix__cta:focus-visible {
  opacity: 0.92;
}

/* ——— Parcerias / marcas ——— */
.fold-parceiros {
  background: #ffffff;
  padding: 56px 0 72px;
}

.fold-parceiros__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.fold-parceiros__rule {
  width: min(220px, 40%);
  height: 1px;
  margin: 0 auto 40px;
  background: rgba(8, 157, 217, 0.35);
}

.fold-parceiros__title {
  margin: 0 auto 48px;
  max-width: 720px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--hero-blue);
}

.fold-parceiros__carousel {
  width: 100%;
}

.fold-parceiros__viewport {
  overflow: hidden;
}

.fold-parceiros__slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 110px;
}

.fold-parceiros__slide[hidden] {
  display: none;
}

.fold-parceiros__slide img {
  display: block;
  height: 80px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  flex: 1 1 0;
  image-rendering: -webkit-optimize-contrast;
}

.fold-parceiros__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}

.fold-parceiros__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d5dbe0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.fold-parceiros__dots button.is-active {
  background: var(--hero-blue);
  transform: scale(1.15);
}

/* ——— Quinta dobra: Diferenciais ——— */
.fold-diferenciais {
  background: #ecf9ff;
  padding: 80px 0 96px;
}

.fold-diferenciais__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

.fold-diferenciais__title {
  margin: 0 0 56px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: #1f98c9;
}

.fold-diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 40px;
}

.fold-diferenciais__item {
  text-align: left;
}

.fold-diferenciais__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #1f98c9;
}

.fold-diferenciais__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.fold-diferenciais__item h3 {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: #1f98c9;
}

.fold-diferenciais__item p {
  margin: 0;
  max-width: 300px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
  color: #3a8fb8;
}

/* ——— Sexta dobra: Tecnologia ——— */
.fold-tech {
  background: #ffffff;
  padding: 80px 0;
}

.fold-tech__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px 64px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.fold-tech__content {
  max-width: 520px;
}

.fold-tech__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--hero-blue);
}

.fold-tech__copy {
  margin-top: 22px;
}

.fold-tech__copy p {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
  color: #666666;
}

.fold-tech__copy p:last-child {
  margin-bottom: 0;
}

.fold-tech__cta {
  display: inline-block;
  margin-top: 32px;
  padding: 18px 40px;
  border-radius: 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(180deg, var(--hero-teal) 0%, var(--hero-blue) 100%);
  transition: opacity 0.2s ease;
}

.fold-tech__cta:hover,
.fold-tech__cta:focus-visible {
  opacity: 0.92;
}

.fold-tech__media {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fold-tech__media img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
}

/* ——— Dobra: Fature 20 mil ——— */
.fold-fature {
  background: #f3fbff;
  padding: 80px 0 72px;
}

.fold-fature__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.fold-fature__top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 1fr);
  align-items: center;
  gap: 48px 56px;
}

.fold-fature__media {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.fold-fature__media img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
}

.fold-fature__content {
  max-width: 520px;
}

.fold-fature__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--hero-blue);
}

.fold-fature__copy {
  margin-top: 20px;
}

.fold-fature__copy p {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
  color: #666666;
}

.fold-fature__copy p:last-child {
  margin-bottom: 0;
}

.fold-fature__cta {
  display: inline-block;
  margin-top: 28px;
  padding: 18px 40px;
  border-radius: 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(90deg, var(--hero-teal) 0%, var(--hero-blue) 100%);
  transition: opacity 0.2s ease;
}

.fold-fature__cta:hover,
.fold-fature__cta:focus-visible {
  opacity: 0.92;
}

.fold-fature__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 40px;
  margin-top: 64px;
}

.fold-fature__item {
  text-align: left;
}

.fold-fature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--hero-blue);
}

.fold-fature__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.fold-fature__item h3 {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--hero-blue);
}

.fold-fature__item p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
  color: #7a7a7a;
}

/* ——— Stats + Síndico ——— */
.fold-stats {
  background: var(--hero-blue);
  padding: 48px 24px;
}

.fold-stats__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.fold-stats__item {
  text-align: center;
  padding: 8px 24px;
}

.fold-stats__item + .fold-stats__item {
  border-left: 1px solid rgba(255, 255, 255, 0.85);
}

.fold-stats__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
}

.fold-stats__label {
  margin: 10px 0 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #9de3ff;
}

.fold-sindico {
  background: #f7f8f9;
  padding: 80px 0;
}

.fold-sindico__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  align-items: center;
  gap: 48px 56px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.fold-sindico__media {
  min-width: 0;
}

.fold-sindico__media img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  border-radius: 20px;
  object-fit: cover;
}

.fold-sindico__content {
  max-width: 520px;
}

.fold-sindico__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--hero-blue);
}

.fold-sindico__copy {
  margin-top: 20px;
}

.fold-sindico__copy p {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: #7a7a7a;
}

.fold-sindico__copy p:last-child {
  margin-bottom: 0;
}

.fold-sindico__cta {
  display: inline-block;
  margin-top: 32px;
  padding: 22px 32px;
  border-radius: 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(90deg, var(--hero-teal) 0%, var(--hero-blue) 100%);
  transition: opacity 0.2s ease;
}

.fold-sindico__cta:hover,
.fold-sindico__cta:focus-visible {
  opacity: 0.92;
}

/* ——— Benefícios condomínio ——— */
.fold-condo-beneficios {
  background: #f2fbff;
  padding: 72px 0 88px;
}

.fold-condo-beneficios__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

.fold-condo-beneficios__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 40px;
}

.fold-condo-beneficios__item {
  text-align: left;
}

.fold-condo-beneficios__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--hero-blue);
}

.fold-condo-beneficios__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.fold-condo-beneficios__item h3 {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--hero-blue);
}

.fold-condo-beneficios__item p {
  margin: 0;
  max-width: 300px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
  color: #7a7a7a;
}

/* ——— Vídeo condomínio ——— */
.fold-video {
  background: #f2fbff;
  padding: 48px 0 88px;
}

.fold-video__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.fold-video__title {
  margin: 0 auto 40px;
  max-width: 780px;
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.35;
  color: #7a7a7a;
}

.fold-video__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: #0f172a;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.fold-video__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ——— Para empresas ——— */
.fold-empresas {
  background: #ffffff;
  padding: 80px 0;
}

.fold-empresas__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 48px 56px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.fold-empresas__content {
  max-width: 540px;
}

.fold-empresas__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--hero-blue);
}

.fold-empresas__subtitle {
  margin: 16px 0 0;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  color: #52646d;
}

.fold-empresas__copy {
  margin-top: 20px;
}

.fold-empresas__copy p {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
  color: #7a7a7a;
}

.fold-empresas__copy p:last-child {
  margin-bottom: 0;
}

.fold-empresas__copy strong {
  font-weight: 400;
  color: #299254;
}

.fold-empresas__cta {
  display: inline-block;
  margin-top: 32px;
  padding: 18px 28px;
  border-radius: 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(90deg, var(--hero-blue) 0%, var(--hero-teal) 100%);
  transition: opacity 0.2s ease;
}

.fold-empresas__cta:hover,
.fold-empresas__cta:focus-visible {
  opacity: 0.92;
}

.fold-empresas__media {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fold-empresas__media img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  overflow: hidden;
}

/* ——— Benefícios empresas ——— */
.fold-empresa-beneficios {
  background: #ffffff;
  padding: 24px 0 88px;
}

.fold-empresa-beneficios__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

.fold-empresa-beneficios__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 48px;
}

.fold-empresa-beneficios__item {
  text-align: left;
}

.fold-empresa-beneficios__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--hero-blue);
}

.fold-empresa-beneficios__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.fold-empresa-beneficios__item h3 {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--hero-blue);
}

.fold-empresa-beneficios__item p {
  margin: 0;
  max-width: 320px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
  color: #7a7a7a;
}

/* ——— Basicoisas na mídia ——— */
.fold-midia {
  background: #ffffff;
  padding: 0 0 88px;
}

.fold-midia__banner {
  background: var(--hero-blue);
  padding: 28px 24px;
  text-align: center;
}

.fold-midia__banner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.fold-midia__inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 28px 0;
}

.fold-midia__article {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.fold-midia__article:hover {
  opacity: 0.96;
  transform: translateY(-2px);
}

.fold-midia__article img {
  display: block;
  width: 100%;
  height: auto;
}

.fold-midia__headline {
  margin: 36px 0 0;
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  color: #333333;
}

.fold-midia__link {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: #cc3366;
  transition: opacity 0.2s ease;
}

.fold-midia__link:hover,
.fold-midia__link:focus-visible {
  opacity: 0.8;
}

/* ——— Depoimentos ——— */
.fold-depoimentos {
  background: #f4fcff;
  padding: 72px 0 88px;
}

.fold-depoimentos__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.fold-depoimentos__title {
  margin: 0 0 48px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--hero-blue);
}

.fold-depoimentos__carousel {
  position: relative;
}

.fold-depoimentos__viewport {
  overflow: hidden;
}

.fold-depoimentos__track {
  display: flex;
  gap: 28px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.fold-depoimentos__card {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
  text-align: center;
}

.fold-depoimentos__bubble {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 22px 32px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fold-depoimentos__bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 4px 4px 10px rgba(15, 23, 42, 0.04);
}

.fold-depoimentos__bubble p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  color: #333333;
}

.fold-depoimentos__name {
  margin: 28px 0 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #333333;
}

.fold-depoimentos__role {
  margin: 4px 0 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: #333333;
}

.fold-depoimentos__arrow {
  position: absolute;
  top: 38%;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #c5cdd3;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.fold-depoimentos__arrow:hover {
  color: var(--hero-blue);
}

.fold-depoimentos__arrow--prev {
  left: -8px;
}

.fold-depoimentos__arrow--next {
  right: -8px;
}

.fold-depoimentos__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.fold-depoimentos__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d5dde3;
  cursor: pointer;
  transition: background 0.2s ease;
}

.fold-depoimentos__dots button.is-active {
  background: #6b7682;
}

/* ——— FAQ ——— */
.fold-faq {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 0 96px;
}

.fold-faq::before,
.fold-faq::after {
  content: "";
  position: absolute;
  background: url("assets/bg-hero.png") center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.fold-faq::before {
  top: 40px;
  right: -60px;
  width: min(480px, 48vw);
  height: 480px;
}

.fold-faq::after {
  bottom: 40px;
  left: -80px;
  width: min(420px, 44vw);
  height: 420px;
  opacity: 0.14;
  transform: scaleX(-1) rotate(16deg);
}

.fold-faq__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 28px;
}

.fold-faq__title {
  margin: 0 0 64px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--hero-blue);
}

.fold-faq__list {
  border-bottom: 1px solid #bec5d6;
}

.fold-faq__item {
  border-top: 1px solid #bec5d6;
}

.fold-faq__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  margin: 0;
  padding: 28px 4px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #333333;
}

.fold-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 6px;
}

.fold-faq__icon::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 1px;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--hero-blue);
  border-bottom: 1.5px solid var(--hero-blue);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.fold-faq__question[aria-expanded="true"] .fold-faq__icon::before {
  top: 10px;
  transform: rotate(-135deg);
}

.fold-faq__answer {
  padding: 0 36px 28px 4px;
}

.fold-faq__answer p {
  margin: 0;
  max-width: 48rem;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #555555;
}

.fold-faq__contact {
  color: #6b7682;
  font-weight: 400;
  transition: color 0.2s ease;
}

.fold-faq__contact:hover,
.fold-faq__contact:focus-visible {
  color: var(--hero-blue);
}

/* ——— Indique e ganhe ——— */
.fold-indique {
  background: #f6fbfd;
  padding: 72px 0 88px;
}

.fold-indique__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
  align-items: center;
  gap: 48px 56px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.fold-indique__media {
  min-width: 0;
}

.fold-indique__media img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
  border-radius: 20px;
  object-fit: cover;
}

.fold-indique__content {
  max-width: 520px;
}

.fold-indique__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--hero-blue);
}

.fold-indique__offers {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fold-indique__offer p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
  color: #7a7a7a;
}

.fold-indique__offer .fold-indique__reward {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--hero-blue);
}

.fold-indique__note {
  margin: 20px 0 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: #7a7a7a;
}

.fold-indique__cta {
  display: inline-block;
  margin-top: 32px;
  padding: 18px 28px;
  border-radius: 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(90deg, var(--hero-teal) 0%, var(--hero-blue) 100%);
  transition: opacity 0.2s ease;
}

.fold-indique__cta:hover,
.fold-indique__cta:focus-visible {
  opacity: 0.92;
}

/* ——— Contato / formulário ——— */
.fold-contato {
  background: linear-gradient(269deg, #089dd9 0%, #41b8b2 90%);
  padding: 0;
  overflow: hidden;
}

.fold-contato__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 48px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  min-height: 737px;
}

.fold-contato__content {
  padding: 100px 0 100px clamp(28px, 8vw, 120px);
  max-width: 560px;
  width: 100%;
  box-sizing: border-box;
}

.fold-contato__title {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
}

.fold-contato__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fold-contato__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fold-contato__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fold-contato__field label,
.fold-contato__fieldset legend {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
}

.fold-contato__fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fold-contato__fieldset legend {
  margin-bottom: 10px;
  padding: 0;
}

.fold-contato__field input,
.fold-contato__field select,
.fold-contato__field textarea {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #e6f8ff;
  color: #52646d;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.3;
  padding: 12px 16px;
  outline: none;
}

.fold-contato__field input,
.fold-contato__field select {
  height: 47px;
}

.fold-contato__field textarea {
  min-height: 110px;
  resize: vertical;
}

.fold-contato__field input::placeholder,
.fold-contato__field textarea::placeholder {
  color: #8a9aa3;
}

.fold-contato__radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
  cursor: pointer;
}

.fold-contato__radio input {
  width: 16px;
  height: 16px;
  accent-color: #e6f8ff;
}

.fold-contato__submit {
  margin-top: 8px;
  width: 100%;
  max-width: 220px;
  border: 0;
  border-radius: 100px;
  padding: 16px 24px;
  background: #a8e5ff;
  color: #097caa;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.fold-contato__submit:hover,
.fold-contato__submit:focus-visible {
  opacity: 0.92;
}

.fold-contato__media {
  position: relative;
  min-width: 0;
  min-height: 737px;
  overflow: hidden;
}

.fold-contato__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
}

.section {
  max-width: 920px;
  margin: 0 auto;
  padding: 64px 24px;
  min-height: 50vh;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.section h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: #1e293b;
}

.section p {
  margin: 0;
  color: #64748b;
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header__inner {
    padding: 0 14px 0 16px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__collage {
    max-width: 100%;
    gap: 10px;
  }

  .hero__collage-img--tall {
    min-height: 280px;
  }

  .fold-24h__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px;
  }

  .fold-24h__content {
    max-width: 100%;
  }

  .fold-escolha {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 72px 0 80px;
  }

  .fold-escolha__inner {
    padding: 0 20px;
  }

  .fold-escolha__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fold-mix__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px;
  }

  .fold-mix__content {
    max-width: 100%;
  }

  .fold-parceiros {
    padding: 48px 0 56px;
  }

  .fold-parceiros__title {
    font-size: 22px;
    margin-bottom: 36px;
  }

  .fold-parceiros__slide {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 16px;
    justify-items: center;
  }

  .fold-parceiros__slide img {
    height: 64px;
    max-width: 140px;
    flex: none;
  }

  .fold-diferenciais {
    padding: 64px 0 72px;
  }

  .fold-diferenciais__inner {
    padding: 0 24px;
  }

  .fold-diferenciais__title {
    margin-bottom: 40px;
    font-size: 30px;
  }

  .fold-diferenciais__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
  }

  .fold-diferenciais__item p {
    max-width: none;
  }

  .fold-tech__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px;
  }

  .fold-tech__content {
    max-width: 100%;
  }

  .fold-tech__title {
    font-size: 28px;
  }

  .fold-fature {
    padding: 64px 0 56px;
  }

  .fold-fature__inner {
    padding: 0 20px;
  }

  .fold-fature__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .fold-fature__content {
    max-width: 100%;
  }

  .fold-fature__title {
    font-size: 26px;
  }

  .fold-fature__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
  }

  .fold-stats {
    padding: 40px 20px;
  }

  .fold-stats__value {
    font-size: 42px;
  }

  .fold-sindico {
    padding: 56px 0;
  }

  .fold-sindico__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px;
  }

  .fold-sindico__content {
    max-width: 100%;
  }

  .fold-condo-beneficios {
    padding: 56px 0 64px;
  }

  .fold-condo-beneficios__inner {
    padding: 0 24px;
  }

  .fold-condo-beneficios__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
  }

  .fold-condo-beneficios__item p {
    max-width: none;
  }

  .fold-video {
    padding: 32px 0 64px;
  }

  .fold-video__inner {
    padding: 0 20px;
  }

  .fold-video__title {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .fold-empresas {
    padding: 56px 0;
  }

  .fold-empresas__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px;
  }

  .fold-empresas__content {
    max-width: 100%;
  }

  .fold-empresa-beneficios {
    padding: 8px 0 64px;
  }

  .fold-empresa-beneficios__inner {
    padding: 0 24px;
  }

  .fold-empresa-beneficios__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .fold-empresa-beneficios__item p {
    max-width: none;
  }

  .fold-midia {
    padding-bottom: 64px;
  }

  .fold-midia__banner h2 {
    font-size: 26px;
  }

  .fold-midia__inner {
    padding: 36px 20px 0;
  }

  .fold-midia__headline {
    font-size: 24px;
    margin-top: 28px;
  }

  .fold-depoimentos {
    padding: 56px 0 64px;
  }

  .fold-depoimentos__inner {
    padding: 0 20px;
  }

  .fold-depoimentos__title {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .fold-depoimentos__card {
    flex: 0 0 100%;
  }

  .fold-depoimentos__track {
    gap: 0;
  }

  .fold-depoimentos__bubble {
    min-height: 200px;
  }

  .fold-depoimentos__arrow--prev {
    left: -4px;
  }

  .fold-depoimentos__arrow--next {
    right: -4px;
  }

  .fold-faq {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 64px 0 72px;
  }

  .fold-faq::before {
    width: min(300px, 70vw);
    height: 300px;
    opacity: 0.14;
  }

  .fold-faq::after {
    width: min(260px, 60vw);
    height: 260px;
    opacity: 0.1;
  }

  .fold-faq__inner {
    padding: 0 20px;
  }

  .fold-faq__title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .fold-faq__question {
    font-size: 17px;
    padding: 22px 0;
  }

  .fold-faq__answer p {
    font-size: 16px;
  }

  .fold-indique {
    padding: 56px 0 64px;
  }

  .fold-indique__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px;
  }

  .fold-indique__content {
    max-width: 100%;
  }

  .fold-indique__title {
    font-size: 26px;
  }

  .fold-indique__cta {
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 18px 24px;
    text-align: center;
  }

  .fold-contato__inner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }

  .fold-contato__content {
    max-width: 100%;
    padding: 56px 20px 40px;
  }

  .fold-contato__title {
    font-size: 24px;
  }

  .fold-contato__row {
    grid-template-columns: 1fr;
  }

  .fold-contato__media {
    min-height: 420px;
    order: 2;
  }

  :root {
    --header-height: 78px;
  }
}

@media (max-width: 640px) {
  .fold-diferenciais__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .fold-condo-beneficios__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .brand__logo {
    height: 64px;
  }

  .fold-parceiros__slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fold-parceiros__title {
    font-size: 20px;
  }

  .fold-diferenciais__title {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero__cta {
    display: block;
    width: 100%;
    max-width: 364px;
    padding: 20px 24px;
    text-align: center;
  }

  .fold-24h {
    padding: 48px 0;
  }

  .fold-24h__title {
    font-size: 28px;
  }

  .fold-24h__cta {
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 18px 24px;
  }

  .fold-escolha__headline {
    font-size: 26px;
  }

  .fold-escolha__lead {
    font-size: 18px;
  }

  .fold-escolha__cta {
    display: block;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    padding: 18px 24px;
  }

  .fold-mix {
    padding: 56px 0;
  }

  .fold-mix__title {
    font-size: 22px;
  }

  .fold-mix__cta {
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 18px 24px;
  }

  .fold-stats__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fold-stats__item + .fold-stats__item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    padding-top: 28px;
  }

  .fold-stats__value {
    font-size: 40px;
  }

  .fold-sindico__title {
    font-size: 28px;
  }

  .fold-sindico__cta {
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 18px 24px;
    text-align: center;
  }

  .fold-empresas__title {
    font-size: 26px;
  }

  .fold-empresas__subtitle {
    font-size: 18px;
  }

  .fold-empresas__cta {
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 18px 24px;
    text-align: center;
  }
}

/* ——— Rodapé ——— */
.site-footer {
  background: #56646c;
  color: #ffffff;
  padding: 56px 0 28px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.1fr);
  gap: 48px 64px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.site-footer__logo {
  display: inline-block;
}

.site-footer__logo img {
  display: block;
  height: 96px;
  width: auto;
  object-fit: contain;
}

.site-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  transition: opacity 0.2s ease;
}

.site-footer__social-link--instagram,
.site-footer__social-link--facebook {
  background: var(--hero-blue);
  color: #ffffff;
}

.site-footer__social-link--instagram:hover,
.site-footer__social-link--instagram:focus-visible,
.site-footer__social-link--facebook:hover,
.site-footer__social-link--facebook:focus-visible {
  background: #ffffff;
  color: var(--hero-blue);
  opacity: 1;
}

.site-footer__social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.site-footer__rule {
  width: 100%;
  max-width: 280px;
  height: 1px;
  margin: 22px 0 16px;
  background: rgba(255, 255, 255, 0.28);
}

.site-footer__privacy {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
}

.site-footer__privacy:hover,
.site-footer__privacy:focus-visible {
  text-decoration: underline;
}

.site-footer__title {
  margin: 8px 0 22px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  color: #ffffff;
}

.site-footer__list a {
  color: inherit;
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible {
  text-decoration: underline;
}

.site-footer__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: var(--hero-blue);
}

.site-footer__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.site-footer__copy {
  margin: 48px 0 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
}

.back-to-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--hero-blue);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-2px);
}

.back-to-top__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}

.back-to-top__track,
.back-to-top__progress {
  fill: none;
  stroke-width: 2.5;
}

.back-to-top__track {
  stroke: rgba(8, 157, 217, 0.18);
}

.back-to-top__progress {
  stroke: var(--hero-blue);
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.12s linear;
}

.back-to-top__icon {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  display: block;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 48px 0 24px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .site-footer__logo img {
    height: 80px;
  }

  .site-footer__copy {
    margin-top: 36px;
  }
}

/* ——— Página de privacidade ——— */
.privacy-page {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 56px 0 80px;
  padding-top: calc(var(--header-height) + 40px);
}

.privacy-page__deco {
  position: absolute;
  background: url("assets/bg-hero.png") center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.privacy-page__deco--1 {
  top: calc(var(--header-height) + 20px);
  right: -40px;
  width: min(520px, 55vw);
  height: 520px;
  opacity: 0.2;
}

.privacy-page__deco--2 {
  top: 42%;
  right: -20px;
  width: min(360px, 42vw);
  height: 360px;
  opacity: 0.16;
  transform: rotate(28deg);
}

.privacy-page__deco--3 {
  top: 58%;
  left: -60px;
  width: min(380px, 44vw);
  height: 380px;
  opacity: 0.15;
  transform: scaleX(-1) rotate(-18deg);
}

.privacy-page__deco--4 {
  bottom: 60px;
  left: -80px;
  width: min(420px, 48vw);
  height: 420px;
  opacity: 0.14;
  transform: scaleX(-1) rotate(12deg);
}

.privacy-page__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}

.privacy-page__back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--nav-link);
  transition: color 0.2s ease;
}

.privacy-page__back:hover,
.privacy-page__back:focus-visible {
  opacity: 1;
  color: var(--nav-link-hover);
  text-decoration: underline;
}

.privacy-page__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--hero-blue);
}

.privacy-page__brand {
  margin: 12px 0 36px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--nav-link);
}

.privacy-page__content {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  color: #52646d;
}

.privacy-page__content p {
  margin: 0 0 16px;
}

.privacy-page__content h2 {
  margin: 36px 0 14px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--hero-blue);
}

.privacy-page__content h3 {
  margin: 22px 0 10px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: #2c5f7a;
}

.privacy-page__content ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.privacy-page__content li {
  margin-bottom: 6px;
}

.privacy-page__content a {
  color: var(--hero-blue);
  text-decoration: underline;
}

.privacy-page__content strong {
  font-weight: 500;
  color: #3a4f5a;
}

@media (max-width: 640px) {
  .privacy-page {
    padding: 32px 0 56px;
    padding-top: calc(var(--header-height) + 28px);
  }

  .privacy-page__deco--1 {
    width: min(300px, 70vw);
    height: 300px;
    right: -60px;
    opacity: 0.16;
  }

  .privacy-page__deco--2 {
    width: min(240px, 55vw);
    height: 240px;
    opacity: 0.12;
  }

  .privacy-page__deco--3 {
    width: min(240px, 55vw);
    height: 240px;
    opacity: 0.1;
  }

  .privacy-page__deco--4 {
    width: min(260px, 65vw);
    height: 260px;
    opacity: 0.1;
  }

  .privacy-page__inner {
    padding: 0 20px;
  }

  .privacy-page__title {
    font-size: 26px;
  }

  .privacy-page__content h2 {
    font-size: 20px;
  }
}

/* ——— Página Indique e Ganhe ——— */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-indique {
  background: #ffffff;
}

.page-indique .site-header {
  display: none;
}

.indique-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 12px 24px;
  background: linear-gradient(90deg, var(--hero-blue) 0%, var(--hero-teal) 100%);
}

.indique-header__brand {
  display: inline-flex;
  line-height: 0;
}

.indique-header__brand img {
  display: block;
  height: 64px;
  width: auto;
  object-fit: contain;
}

.indique-page {
  position: relative;
  overflow: hidden;
}

.indique-page__deco {
  position: absolute;
  inset: 0;
  background: url("assets/bg-hero.png") right top / min(520px, 55vw) no-repeat;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.indique-intro {
  position: relative;
  z-index: 1;
  padding: 56px 24px 40px;
}

.indique-intro__inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.indique-intro__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--hero-blue);
  text-transform: uppercase;
}

.indique-intro__lead {
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: #52646d;
}

.indique-intro__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.indique-intro__list li {
  position: relative;
  padding-left: 28px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.45;
  color: #52646d;
}

.indique-intro__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  background: var(--hero-blue);
  transform: rotate(45deg);
  border-radius: 2px;
}

.indique-intro__list strong {
  font-weight: 500;
  color: #3d5a6c;
}

.indique-intro__highlight {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #52646d;
}

.indique-intro__highlight strong {
  font-weight: 600;
  color: #3d5a6c;
}

.indique-intro__note {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: #52646d;
}

.indique-intro__disclaimer {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: #7a7a7a;
}

.indique-form-section {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 32px));
  margin: 24px auto 64px;
  padding: 40px 36px 44px;
  background: var(--hero-blue);
  border-radius: 28px;
}

.indique-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
  margin: 0 auto;
}

.indique-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.indique-form__field label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

.indique-form__field input,
.indique-form__field select {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  color: #52646d;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 0 16px;
  outline: none;
}

.indique-form__field input::placeholder {
  color: #8a9aa3;
}

.indique-form__submit {
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 12px auto 0;
  border: 0;
  border-radius: 8px;
  padding: 16px 28px;
  background: #f0a01a;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.indique-form__submit:hover,
.indique-form__submit:focus-visible {
  opacity: 0.94;
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .indique-header {
    min-height: 72px;
  }

  .indique-header__brand img {
    height: 52px;
  }

  .indique-intro {
    padding: 40px 20px 28px;
  }

  .indique-intro__title {
    font-size: 26px;
  }

  .indique-intro__list li,
  .indique-intro__highlight {
    font-size: 16px;
  }

  .indique-form-section {
    width: calc(100% - 24px);
    margin: 16px auto 48px;
    padding: 28px 18px 32px;
    border-radius: 20px;
  }
}

/* ——— Landing mercados 24h ——— */
.site-header__inner--simple {
  justify-content: space-between;
}

.site-header__badge {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--hero-text);
}

.site-header__badge strong {
  color: var(--hero-blue);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
  align-items: center;
}

.hero__actions .hero__cta {
  margin-top: 0;
}

.hero__cta--whatsapp {
  background: #25d366;
  background-image: none;
}

.hero__cta--whatsapp:hover,
.hero__cta--whatsapp:focus-visible {
  opacity: 0.92;
}

.fold-contato--lead .fold-contato__inner--lead {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  min-height: 0;
  padding: 88px 28px;
}

.fold-contato--lead .fold-contato__content--lead {
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
}

.fold-contato__subtitle {
  margin: -12px 0 28px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  color: #ffffff;
}

@media (max-width: 700px) {
  .site-header__badge {
    font-size: 13px;
  }

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

  .hero__actions .hero__cta {
    text-align: center;
  }

  .fold-contato--lead .fold-contato__inner--lead {
    padding: 56px 20px;
  }

  .fold-contato__subtitle {
    font-size: 17px;
  }
}

/* ——— Landings de cidade ——— */
.hero__title--cidade {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
}

.fold-escolha__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.wa-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.wa-float:hover,
.wa-float:focus-visible {
  transform: translateY(-2px);
  opacity: 0.95;
}

@media (max-width: 900px) {
  .fold-escolha__grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .wa-float span {
    display: none;
  }

  .wa-float {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    right: 16px;
    bottom: 18px;
  }

  .wa-float svg {
    width: 28px;
    height: 28px;
  }
}


