/* ============ RESET / BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --indigo: #3f3ceb;
  --indigo-dark: #2b28c4;
  --blue-bright: #3a33f0;
  --dark: #0a0a1f;
  --black: #000000;
  --text-dark: #10101a;
  --text-muted: #5a5a6a;
  --white: #ffffff;
  --radius: 28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.5;
}

/* Corta o excesso horizontal (a curva é mais larga que a tela).
   Usa 'clip' (não 'hidden') porque clip NÃO cria container de rolagem —
   logo não quebra o momentum scroll do mobile. E fica numa div (não no body)
   para não sofrer a propagação de overflow para a viewport. */
.page-wrap { overflow-x: clip; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
img {
  display: block;
  max-width: 100%;
  /* imagens não capturam o toque: o dedo "atravessa" e a rolagem é fluida.
     (sem touch-action:pan-y, que era o que travava o início da rolagem) */
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--indigo); color: #fff; }
.btn-primary:hover { background: var(--indigo-dark); }
.btn-outline-dark { background: transparent; color: #000; border: 1px solid #000; font-weight: 400; }
.btn-outline-dark:hover { background: rgba(0,0,0,.05); }
.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-dark-full { background: #000; color: #fff; width: 100%; padding: 16px; border-radius: 40px; }
.btn-dark-full:hover { background: #222; }

/* ============ LOGO (FactorCapital) ============ */
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img { display: block; height: 30px; width: auto; }
/* logo menor dentro do card de benefícios */
.beneficios-logo img { height: 26px; }
/* logo do rodapé (versão branca) */
.logo-footer img { height: 40px; }

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 22px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}
.navbar {
  width: 100%;
  max-width: 1180px;
  background: #fff;
  border-radius: 50px;
  padding: 14px 18px 14px 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  /* brilho azul suave como no oficial (mais fraco) */
  box-shadow: 0 0 24px 10px rgba(0, 52, 255, 0.13);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 40px;
  font-weight: 400;
  font-size: 15px;
  color: #151515;
  /* bloco translúcido claro em volta de cada item */
  background: #fafafa;
  box-shadow: 0 1px 5px rgba(21,21,21,.08);
  transition: background .2s;
}
.nav-links > li > a:hover { background: #efeff2; }
.caret {
  display: inline-block;
  width: 9px; height: 9px;
  border-right: 1.6px solid #151515;
  border-bottom: 1.6px solid #151515;
  transform: rotate(45deg) translateY(-2px);
}

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  padding: 10px;
  list-style: none;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 15px;
}
.dropdown li a:hover { background: #f0f0f2; }

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background:
    url("images/bg-hero.jpg") center top / cover no-repeat,
    linear-gradient(160deg, #10102e 0%, #0a0a22 55%, #141033 100%);
  padding: 190px 24px 90px;
  text-align: center;
  overflow: visible;
}
.hero::after {
  /* textura granulada sutil */
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.overline {
  color: rgba(255,255,255,.85);
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 26px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(44px, 6.6vw, 94px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -2px;
  margin-bottom: 30px;
}
.hero-sub {
  color: rgba(255,255,255,.82);
  font-size: 19px;
  max-width: 520px;
  margin: 0 auto 38px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; }

.hero-device {
  position: relative;
  z-index: 4;
  width: clamp(280px, 28vw, 430px);
  margin: 20px auto -270px;
}
.hero-device img { width: 100%; height: auto; display: block; }

/* ============ SEU NEGÓCIO MAIS SAUDÁVEL ============ */
.saudavel {
  background: transparent;
  margin-top: 0;
  position: relative;
  z-index: 3;
  padding: 300px 0 120px;
  text-align: center;
}
/* Curva contínua (arco largo e suave, sem parte reta nas pontas) */
.saudavel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -130px;
  transform: translateX(-50%);
  width: 210%;
  height: 2000px;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}
.saudavel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 200px;
  bottom: 0;
  background: #fff;
  z-index: -1;
}
.saudavel-title {
  color: var(--indigo);
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 26px;
}
.saudavel-sub {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 70px;
}
.saudavel-sub span { color: var(--text-dark); font-weight: 600; }

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  align-items: start;
}
.feature-card {
  background: #f6f6f9;
  border-radius: 40px;
  padding: 0 34px 40px;
  box-shadow: 0 30px 60px rgba(30,30,80,.07);
}
.feature-card:nth-child(2) { margin-top: 150px; }
.feature-card .card-media {
  width: 100%;
  height: 300px;
  border-radius: 30px;
  overflow: hidden;
  margin: -50px 0 30px;
  box-shadow: 0 20px 40px rgba(30,30,80,.12);
}
.feature-card .card-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-card h3 { font-size: 42px; font-weight: 800; letter-spacing: -1px; line-height: 1.05; margin-bottom: 18px; }
.feature-card p { color: var(--text-muted); font-size: 17px; }

/* ============ O QUE É O SPLIT ============ */
/* position/z-index: garante que a seção fique acima da curva branca da seção anterior */
.split-explica { background: #fff; padding: 80px 0 110px; position: relative; z-index: 4; }
.split-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 470px);
  justify-content: center;
  gap: 60px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto 90px;
}
.split-grid h2 {
  font-size: clamp(30px, 4.3vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.02;
}
.split-text p { color: var(--text-muted); font-size: 18px; margin-bottom: 22px; }
.empresas-title { text-align: center; font-size: 28px; font-weight: 800; margin-bottom: 44px; }

.logos-circle {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.logo-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-circle img { width: 100%; height: 100%; object-fit: cover; }

/* ============ PORQUE UTILIZAR ============ */
.porque { background: var(--blue-bright); padding: 110px 0; }
.porque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.porque-grid h2 {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.16;
}
.porque-text p { color: rgba(255,255,255,.92); font-size: 19px; margin-bottom: 26px; }

/* ============ NÚMEROS ============ */
.numeros { background: #000; padding: 110px 0; }
.numeros .container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
}
.numeros-title {
  color: var(--indigo);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.02;
}
.numeros-list { display: flex; flex-direction: column; gap: 46px; }
.numero-item { display: flex; align-items: center; gap: 26px; }
.numero-arrow {
  flex-shrink: 0;
  width: 58px; height: 58px;
  border: 2px solid var(--indigo);
  border-radius: 50%;
  color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.numero-item h3 { color: #fff; font-size: clamp(32px, 4vw, 46px); font-weight: 800; letter-spacing: -1px; }
.numero-item p { color: rgba(255,255,255,.6); font-size: 18px; }

/* ============ BENEFÍCIOS ============ */
.beneficios { background: #fff; padding: 90px 0; }
.beneficios-card {
  position: relative;
  background: #f6f6f9;
  border-radius: 40px;
  box-shadow: 0 40px 80px rgba(30,30,80,.07);
  padding: 40px;
}
.beneficios-check {
  position: absolute;
  top: -34px; right: 60px;
  width: 90px; height: 90px;
  border: 2px solid var(--indigo);
  border-radius: 50%;
  background: #fff;
  color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; font-weight: 700;
}
.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  grid-template-areas:
    "media logo"
    "media heading"
    "media list";
  grid-template-rows: auto auto 1fr;
  align-items: start;
}
.beneficios-media {
  grid-area: media;
  align-self: center;
  border-radius: 30px;
  overflow: hidden;
  height: 420px;
  background: #eef0ff;
  box-shadow: 0 25px 50px rgba(30,30,80,.14);
}
.beneficios-media img { width: 100%; height: 100%; object-fit: cover; }
.beneficios-logo { grid-area: logo; font-size: 26px; }
.beneficios-h {
  grid-area: heading;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin: 6px 0 34px;
}
.beneficios-list { grid-area: list; }
.check-list { list-style: none; margin-bottom: 40px; }
.check-list li {
  position: relative;
  padding-left: 42px;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 22px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 2px;
  width: 28px; height: 28px;
  background: #3ecf8e;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
}

/* ============ PARCEIROS ============ */
.parceiros { background: #fff; padding: 40px 0 0; }
.parceiros-title { color: #10101a; text-align: center; font-size: 40px; font-weight: 800; margin-bottom: 30px; }
.parceiros-band { background: var(--blue-bright); padding: 70px 0 80px; }
.parceiros-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  gap: 60px 40px;
  max-width: 860px;
  margin: 0 auto;
}
.parceiro-logo {
  height: 64px;
  width: 100%;
  max-width: 220px;
  display: flex; align-items: center; justify-content: center;
}
.parceiro-logo img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .95; }

/* ============ DEPOIMENTOS ============ */
.depoimentos { background: #fff; padding: 110px 0; }
.depoimentos-title {
  text-align: center;
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 70px;
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.depoimento-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: 0 20px 50px rgba(30,30,80,.08);
}
.depoimento-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.depoimento-head .avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e6e6ee;
}
.depoimento-head .avatar img { width: 100%; height: 100%; object-fit: cover; }
.depoimento-head h3 { font-size: 24px; font-weight: 800; }
.depoimento-head p { color: var(--text-muted); font-size: 15px; }
.depoimento-texto { color: #3a3a48; font-size: 17px; line-height: 1.6; }

/* ============ CONTATO ============ */
.contato { background: #f4f4f7; padding: 110px 0; }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.contato-info h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.contato-info p { font-size: 19px; color: var(--text-muted); max-width: 420px; }
.contato-info p b { color: var(--text-dark); }

.contato-form { display: flex; flex-direction: column; }
.contato-form label { font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.contato-form input {
  border: none;
  background: #fff;
  border-radius: 30px;
  padding: 16px 22px;
  font-size: 16px;
  margin-bottom: 20px;
  font-family: inherit;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.contato-form input:focus { outline: 2px solid var(--indigo); }

/* ============ FOOTER ============ */
.footer { background: #000; color: #fff; padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: 40px;
}
.footer-col h4 { font-size: 26px; font-weight: 800; margin-bottom: 28px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 16px; }
.footer-col ul li a { color: #d7d7de; font-size: 16px; }
.footer-col ul li a:hover { color: #fff; }
.footer-col p { color: #d7d7de; font-size: 16px; margin-bottom: 18px; line-height: 1.6; }
.footer-col p a { color: #d7d7de; }
.footer-brand .logo-footer { margin-bottom: 26px; }
.footer-brand .logo-a { color: #fff; }
.footer-brand .logo-us { color: #7f7cff; }
.footer-brand .logo-pay { color: #cfcfd6; }

/* ============ PLACEHOLDERS DE IMAGEM ============ */
.slot { position: relative; }
.slot-label {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  color: #7a7a8a;
  background: repeating-linear-gradient(45deg, #ececf2, #ececf2 12px, #e3e3ea 12px, #e3e3ea 24px);
  border-radius: inherit;
}
.slot.empty .slot-label { display: flex; }
.slot.empty img { display: none; }

/* ============ ANIMAÇÕES DE ENTRADA (Float In - estilo Wix) ============ */
@keyframes floatIn {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes expandIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes blurClear {
  from { filter: blur(6px); }
  to   { filter: blur(0); }
}

/* estado inicial (escondido) enquanto o elemento não entra na tela.
   SEM will-change permanente (evita travar a rolagem no mobile) */
.float-in  { opacity: 0; transform: translateY(60px); }
.fade-in   { opacity: 0; }
.expand-in { opacity: 0; transform: scale(0.8); }
.blur-in   { opacity: 0; filter: blur(6px); }

/* dispara quando entra na viewport (classe .is-visible adicionada via JS) */
.float-in.is-visible {
  animation: floatIn 1.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) both;
}
.fade-in.is-visible {
  animation: fadeIn 1.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) both;
}
.expand-in.is-visible {
  animation: expandIn 1.2s cubic-bezier(0.645, 0.045, 0.355, 1) both;
}
.blur-in.is-visible {
  /* opacity em 1.4s + desfoque (blur 6px -> 0) em 2s */
  animation: fadeIn 1.4s cubic-bezier(0.445, 0.05, 0.55, 0.95) both,
             blurClear 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) both;
}

/* após a animação terminar: remove transform/filter/animação (some com a
   camada de GPU) para a rolagem ficar leve. Adicionada via JS no animationend. */
.anim-done {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
}

/* acessibilidade: desativa animações se o usuário preferir menos movimento */
@media (prefers-reduced-motion: reduce) {
  .float-in, .fade-in, .expand-in, .blur-in {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

/* ============ MENU HAMBÚRGUER (mobile) ============ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #10101a;
  border-radius: 2px;
  margin: 0 auto;
}
/* menu mobile: overlay de tela cheia */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #ececed;
  padding: 34px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  border: none;
  font-size: 20px;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 26vh;
}
.mobile-menu-nav a {
  background: #fff;
  border-radius: 40px;
  padding: 15px 32px;
  font-size: 22px;
  font-weight: 400;
  color: #151515;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.mobile-menu-cta {
  align-self: center;
  margin-top: 44px;
  font-size: 20px;
  padding: 16px 44px;
}

/* ============ RESPONSIVO (intermediário) ============ */
@media (max-width: 1024px) and (min-width: 769px) {
  .cards-2, .split-grid, .porque-grid,
  .depoimentos-grid, .contato-grid { grid-template-columns: 1fr; }
  .feature-card:nth-child(2) { margin-top: 40px; }
  .split-grid, .porque-grid { text-align: center; }
}

/* ============ RESPONSIVO MOBILE (igual ao oficial) ============ */
@media (max-width: 768px) {
  /* Header: só logo + hambúrguer */
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .navbar { padding: 12px 14px 12px 22px; }

  /* Hero: botões empilhados, maquininha maior */
  .hero { padding: 150px 20px 70px; }
  .hero h1 { letter-spacing: -1px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 14px; }
  .hero-buttons .btn { width: min(280px, 80vw); }
  .hero-device { width: min(360px, 72vw); margin: 20px auto -110px; }

  /* Seção "Seu negócio": curva mais suave, cards em 1 coluna sem escalonamento */
  .saudavel { padding: 210px 0 70px; }
  .saudavel::before { top: -70px; width: 290%; }
  .cards-2 { grid-template-columns: 1fr; gap: 30px; max-width: 440px; }
  .feature-card:nth-child(2) { margin-top: 0; }
  /* card coeso no mobile: imagem DENTRO do card (sem sair por cima) */
  .feature-card { padding: 18px; }
  .feature-card .card-media { margin: 0 0 20px; height: 240px; box-shadow: none; }
  .feature-card h3 { font-size: 28px; }
  .feature-card p { font-size: 16px; }

  /* O que é o Split: centralizado, título azul, fontes menores */
  .split-explica { padding: 40px 0 80px; }
  .split-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; margin-bottom: 56px; }
  .split-grid h2 { color: var(--indigo); font-size: 30px; }
  .split-text p { font-size: 16px; margin-bottom: 18px; }
  .empresas-title { font-size: 23px; margin-bottom: 34px; }
  .logos-circle { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; justify-items: center; max-width: 340px; margin: 0 auto; }
  .logo-circle { width: 130px; height: 130px; }

  /* Porque utilizar: centralizado */
  .porque { padding: 70px 0; }
  .porque-grid { grid-template-columns: 1fr; gap: 26px; text-align: center; }

  /* Números: título centralizado; cada item (seta + número) centralizado na tela */
  .numeros { padding: 70px 0; }
  .numeros .container { grid-template-columns: 1fr; gap: 40px; }
  .numeros-title { text-align: center; }
  .numeros-list { align-items: stretch; }
  .numero-item { justify-content: center; text-align: center; gap: 18px; }
  .numero-item > div { max-width: 210px; }

  /* Benefícios: logo/título, foto, lista (empilhado) */
  .beneficios { padding: 70px 0; }
  .beneficios-card { padding: 30px 24px; }
  .beneficios-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "logo" "heading" "media" "list";
    grid-template-rows: none;
    row-gap: 20px;
  }
  .beneficios-media { height: auto; aspect-ratio: 1 / 1; }
  .beneficios-h { margin: 4px 0 10px; }
  .beneficios-check { width: 70px; height: 70px; font-size: 30px; top: -26px; right: 30px; }

  /* Parceiros: 1 coluna */
  .parceiros-band { padding: 50px 0 60px; }
  .parceiros-logos { grid-template-columns: 1fr; gap: 44px; max-width: 300px; }
  .parceiro-logo { height: 52px; }

  /* Depoimentos: 1 coluna, tudo centralizado */
  .depoimentos { padding: 70px 0; }
  .depoimentos-grid { grid-template-columns: 1fr; gap: 24px; }
  .depoimento-card { text-align: center; padding: 34px 26px; }
  .depoimento-head { flex-direction: column; text-align: center; gap: 12px; }

  /* Contato: 1 coluna, centralizado */
  .contato { padding: 70px 0; }
  .contato-grid { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .contato-info p { margin: 0 auto; }

  /* Rodapé: empilhado */
  .footer { padding: 60px 0 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 400px) {
  .logo-circle { width: 115px; height: 115px; }
}
