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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #f5f5f7;
  background-color: #05030c;
  -webkit-font-smoothing: antialiased;
}

:root {
  --bg-main: #05030c;
  --bg-card: #1c1040;
  --bg-card-soft: #1b1644;
  --bg-purple: #6527ff;
  --bg-purple-solid: #4b16c9;

  --accent: #a855ff;
  --accent-strong: #7c3aed;

  --text-main: #ffffff;
  --text-muted: #d0d0e6;
  --text-soft: #b7b7d3;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-soft: 0 24px 45px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.55);

  --max-width: 1200px;
}

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

.section {
  position: relative;
  padding: 96px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease,
    color 0.16s ease;
}

.btn-primary {
  background: var(--bg-purple);
  color: #fff;
}

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

.btn-secondary {
  background: #fff;
  color: #2b0f70;
}

.btn-secondary:hover {
  background: #f3f0ff;
  transform: translateY(-1px);
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  margin: 0 0 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-soft);
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-footnote {
  text-align: center;
  color: var(--text-muted);
  max-width: 820px;
  margin: 40px auto 0;
  font-size: 1rem;
}

.hero {
  position: relative;
  min-height: 78vh;
  background:
    linear-gradient(
      90deg,
      rgba(7, 4, 31, 0.92) 2%,
      rgba(7, 4, 31, 0.9) 35%,
      rgba(7, 4, 31, 0.82) 60%,
      rgba(7, 4, 31, 0.78) 100%
    ),
    url("../assets/hero-bg.png") center center / cover no-repeat;
  color: var(--text-main);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  min-height: auto;
  padding: 64px 24px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-header {
  margin-bottom: 48px;
}

.hero-logo {
  height: 92px;
  width: auto;
}

.hero-main {
  max-width: 720px;
}

.hero-main h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin: 0 0 24px;
  font-weight: 700;
}

.hero-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.hero-text-strong {
  margin-top: 16px;
  color: #ffffff;
  font-weight: 500;
}

.section-gestao {
  background:
    radial-gradient(circle at 50% 55%, rgba(230,72,255,0.45) 0%, rgba(230,72,255,0.10) 30%, rgba(20,0,30,0) 65%),
    radial-gradient(circle at 20% 40%, rgba(101,41,255,0.55) 0%, rgba(60,25,140,0.32) 35%, rgba(18,12,41,0) 70%),
    radial-gradient(circle at 85% 60%, rgba(0,110,255,0.50) 0%, rgba(6,22,60,0.35) 40%, rgba(25,12,41,0) 75%),
    #05030c;
}

.gestao-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.1fr;
  gap: 70px;
  align-items: center;
  margin-top: 48px;
}

.gestao-image-wrapper {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
  height: auto;
  background: transparent;
  width: 100%;
}

.gestao-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center; 
}

.gestao-cards {
  margin-top: 32px;
  background: #31136c;
  border-radius: 2px;
  overflow: hidden;
  width: 600px;
  color: #fff;
  border: #4a2c85 solid 1px;
}

.gestao-card-top {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%);
  padding: 26px 30px;
  gap: 25px;
}

.card-left
.card-right {
  padding: 0;
}

.card-left h3,
.card-right h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 1.15rem;
  font-weight: 700;
}

.card-left p,
.card-right p {
  margin: 0;
  color: #dcd1ff;
  font-size: 0.95rem;
  line-height: 1.45;
}

.icon-center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: rgba(22, 12, 60, 0.45);
  backdrop-filter: blur(6px);
  margin: auto; 
  border: #4a2c85 solid 1px;
}

.icon-center img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.gestao-card-bottom {
  padding: 30px 34px;
  background: #31136c;
  border-top: 1px solid #4a2c85;
}

.gestao-card-bottom h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
}

.gestao-card-bottom p {
  margin: 0;
  font-size: 0.95rem;
  color: #dcd1ff;
}

.section-funciona {
  background-color: #05030c;
  overflow: hidden;
  padding: 80px 0 60px;
}

.background-image.background-funciona {
  position: absolute;
  inset: 0;
  background: url("../assets/func-background.png") center center / cover no-repeat;
  opacity: 0.20;
  filter: blur(2px);
  z-index: 0;
}

.section-funciona .container {
  position: relative;
  z-index: 1;
}

.funciona-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 265px);
  justify-content: center;
  gap: 36px;
}

.funciona-card {
  background: linear-gradient(180deg,#492B84 0%,#3C136D 25%,#39136C 50%,#2D136D 75%,#26136C 100%);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 28px 26px 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 35px rgba(0,0,0,0.45),0 0 22px rgba(130, 70, 255, 0.25);
  transition: transform .25s ease, box-shadow .25s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.funciona-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 45px rgba(0,0,0,0.55),0 0 32px rgba(150, 90, 255, 0.35);
}

.funciona-card h3 {
  margin: 0 0 14px;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.funciona-card p {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #f0e7ff;
}

.funciona-thumb {
  margin-top: auto;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .35s ease;
}

.funciona-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.funciona-card:hover .funciona-thumb img {
  transform: scale(1.06);
}

.funciona-grid article:nth-child(4) .funciona-thumb img {
  object-fit: contain;
  background: #120a2a;
  padding: 1px;
}

.section-beneficios {
  padding: 80px 0;
  background:
    radial-gradient(circle at 50% 55%, rgba(230,72,255,0.45) 0%, rgba(230,72,255,0.10) 30%, rgba(20,0,30,0) 65%),
    radial-gradient(circle at 20% 40%, rgba(101,41,255,0.55) 0%, rgba(60,25,140,0.32) 35%, rgba(18,12,41,0) 70%),
    radial-gradient(circle at 85% 60%, rgba(0,110,255,0.50) 0%, rgba(6,22,60,0.35) 40%, rgba(25,12,41,0) 75%),
    #05030c;
}

.section-beneficios .section-title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 48px;
  color: #fff;
  font-weight: 700;
}

.beneficios-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 30px;
}

.beneficios-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.beneficios-bottom-glued {
  gap: 0;
}

.beneficio-bottom-left {
  border-radius: 5px 0 0 5px !important;
}

.beneficio-bottom-right {
  border-radius: 0 5px 5px 0 !important;
}

.beneficio-card {
  padding: 28px 30px;
  border-radius: 10px;
  background: linear-gradient(180deg, #3C136D 0%, #2D136D 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.beneficio-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #3B1C9D;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.beneficio-icon img {
  width: 23px;
  height: 23px;
  opacity: 0.9;
}

.icon-center img,
.beneficio-icon img,
.contato-icon,
.depoimento-card img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.icon-center svg,
.beneficio-icon svg,
.contato-icon svg,
.depoimento-card svg {
  fill: #ffffff;
  color: #ffffff;
}

.beneficio-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.beneficio-card p {
  margin: 0;
  color: #d8cfff;
  font-size: 1.01rem;
  line-height: 1.55;
}

.section-footnote {
  text-align: center;
  margin-top: 40px;
  color: #e8dbff;
  font-size: 1.2rem;
}

.section-numeros {
  position: relative;
  color: #ffffff;
  padding: 96px 0;
}

.background-image.background-numeros {
  position: absolute;
  inset: 0;
  background: url("../assets/maquinas.png") center center / cover no-repeat;
  z-index: 0;
}

.section-numeros .section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 14, 0.85);
  z-index: 0;
}

.section-numeros .container {
  position: relative;
  z-index: 1;
}

.numeros-content {
  text-align: center;
}

.numeros-grid {
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.numero-item {
  text-align: center;
}

.numero-valor {
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.numero-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.numero-item p {
  margin: 0;
  color: #f0f0ff;
  font-size: 0.95rem;
}

.section-clientes {
  padding: 100px 0;
  background:
    radial-gradient(circle at 50% 55%, rgba(230,72,255,0.45) 0%, rgba(230,72,255,0.10) 30%, rgba(20,0,30,0) 65%),
    radial-gradient(circle at 20% 40%, rgba(101,41,255,0.55) 0%, rgba(60,25,140,0.32) 35%, rgba(18,12,41,0) 70%),
    radial-gradient(circle at 85% 60%, rgba(0,110,255,0.50) 0%, rgba(6,22,60,0.35) 40%, rgba(25,12,41,0) 75%),
    #05030c;
}

.clientes-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 20px 0 60px;
  flex-wrap: wrap;
}

.clientes-logos img {
  width: 320px;
  height: auto;
  opacity: 0.95;
  transition: transform .25s ease;
}

.clientes-logos img:hover {
  transform: scale(1.05);
}

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

.depoimento-card {
  position: relative;
  background: linear-gradient(135deg, #2a0c56, #18083a);
  border-radius: 5px;
  padding: 20px 17px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.48);
  border: 2px solid #4a2c85;
}

.quote {
  position: absolute;
  font-size: 70px;
  color: #7a32ff;
  opacity: 0.9;
  font-family: Georgia, serif;
}

.quote-top {
  top: -20px;
  left: -20px;
}

.quote-bottom {
  bottom: -60px;
  right: -10px;
}

.depoimento-text {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 27px;
  color: #e9d9ff;
  font-style: italic;
}

.depoimento-author {
  font-weight: 700;
  text-align: right;
  color: #ffffff;
  font-size: 1rem;
}

.section-contato {
  background: #481C9E;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contato-card {
  width: 100%;
  max-width: 980px;
  background: #4d19b1;
  border-radius: 10px;
  padding: 36px 36px 28px;
  text-align: left;
  border: #6b48af solid 1px;
}

.contato-quote {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contato-subtitle {
  text-align: center;
  font-size: 1.28rem;
  margin-bottom: 42px;
}

.contato-subtitle strong {
  font-weight: 800;
}

.contato-etapas {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 40px 0 48px;
}

.contato-etapa {
  width: 32%;
}

.etapa-banner {
  background: linear-gradient(90deg, #30136C 0%, #3C136D 100%);
  height: 50px;
  width: 270px;
  margin-bottom: 18px;
  clip-path: polygon(0 0, 93% 0, 100% 50%, 93% 100%, 0 100%, 7% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.etapa-banner img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}

.contato-etapa h3 {
  font-size: 1rem;
  margin: 8px 0 10px;
}

.contato-etapa p {
  font-size: 1.05rem;
  color: #DCD7E5;
  max-width: 300px;
}

.contato-whatsapp {
  display: inline-flex;
  margin: 12px auto 55px auto;
  border-radius: 5px;
  padding: 12px 18px;
  color: #141414;
  text-align: left;
  background: #DCD7E5;
}

.contato-infos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 40px;
  column-gap: 90px;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contato-icon {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.contato-item h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.contato-item p {
  margin: 3px 0 0;
}

.contato-item a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade-up { transform: translateY(40px); }
.reveal-fade-left { transform: translateX(-40px); }
.reveal-fade-right { transform: translateX(40px); }
.reveal-scale { transform: scale(.85); }

.reveal-visible.reveal-fade-left,
.reveal-visible.reveal-fade-right,
.reveal-visible.reveal-fade-up,
.reveal-visible.reveal-scale {
  transform: none;
}

.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .30s; }
.reveal-delay-3 { transition-delay: .45s; }
.reveal-delay-4 { transition-delay: .60s; }
.reveal-delay-5 { transition-delay: .75s; }

.section-contato .contato-infos .contato-item {
  opacity: 1 !important;
  transform: none !important;
}

html, body {
  overflow-x: hidden;
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
    max-width: 100vw;
  }

  .hero-content {
    padding: 40px 16px 56px;
    align-items: center;
  }

  .hero-header {
    margin-bottom: 28px;
    text-align: center;
  }

  .hero-logo {
    height: 70px;
  }

  .hero-main {
    max-width: 100%;
    text-align: center;
  }

  .hero-main h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-text {
    font-size: 0.98rem;
    text-align: center;
  }

  .section {
    padding: 70px 0;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .gestao-grid,
  .funciona-grid,
  .beneficios-top,
  .beneficios-bottom,
  .numeros-grid,
  .depoimentos-grid,
  .contato-infos {
    grid-template-columns: 1fr;
  }

  .gestao-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    text-align: center;
  }

  .gestao-content {
    padding: 0 4px;
  }

  .gestao-cards {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .gestao-card-top {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 16px;
    clip-path: none;
  }

  .icon-center {
    order: -1;
    margin: 0 auto 8px auto;
  }

  .icon-center img {
    width: 50px;
    height: auto;
  }

  .gestao-card-bottom {
    padding: 20px 16px;
    text-align: center;
  }

  .gestao-card-top h3,
  .gestao-card-bottom h3,
  .gestao-card-top p,
  .gestao-card-bottom p {
    white-space: normal;
    word-break: normal;
  }

  .funciona-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .funciona-card {
    width: 100%;
    max-width: 100%;
  }

  .clientes-logos {
    gap: 18px;
    margin-bottom: 36px;
  }

  .clientes-logos img {
    width: 220px;
  }

  .beneficio-card,
  .depoimento-card,
  .contato-card {
    padding: 22px 18px;
  }

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

  .numero-valor {
    font-size: 1.9rem;
  }

  .contato-etapas {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    align-items: center;
  }

  .contato-etapa {
    width: 100%;
  }

  .etapa-banner {
    width: 100%;
    max-width: 280px;
  }

  .contato-card {
    padding: 30px 16px 24px;
  }

  .contato-infos {
    grid-template-columns: 1fr;
    row-gap: 24px;
    column-gap: 0;
  }

  .section-	clientes,
  .section-numeros,
  .section-beneficios {
    padding: 70px 0;
  }
}

@media (max-width: 640px) {
  .hero-logo {
    height: 62px;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .gestao-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
  }

  .gestao-content {
    padding: 0 14px;
  }

  .gestao-cards {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .gestao-card-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 16px;
    text-align: center;
    clip-path: none;
  }

  .icon-center {
    order: -1;
    margin: 0 auto;
  }

  .icon-center img {
    width: 52px;
    height: auto;
  }

  .gestao-card-bottom {
    padding: 22px 18px;
    text-align: center;
  }

  .gestao-card-top h3,
  .gestao-card-bottom h3,
  .gestao-card-top p,
  .gestao-card-bottom p {
    white-space: normal;
    word-break: normal;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 18px;
  }

  .gestao-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .gestao-image-wrapper {
    order: 2;
    display: flex;
    justify-content: center;
  }

  .gestao-image {
    width: 100%;
    max-width: 420px;
  }

  .gestao-cards {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 550px;
  }

  .gestao-card-top {
    grid-template-columns: 1fr;
    text-align: center;
    clip-path: none;
    padding: 24px 18px;
  }

  .icon-center {
    margin: 0 auto 10px;
  }

  .funciona-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .section-footnote {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 90px 0;
  }
}

@media (min-width: 1440px) {
  :root {
    --max-width: 1250px;
  }
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1600px) {
  :root {
    --max-width: 1400px;
  }
  .hero-main h1 {
    font-size: 3.3rem;
  }
  .hero-text {
    font-size: 1.24rem;
  }
}

@media (min-width: 1920px) {
  :root {
    --max-width: 1550px;
  }

  .hero {
    min-height: 88vh;
    background-size: 115%;
  }
  .hero-main h1 {
    font-size: 3.6rem;
  }
  .hero-text {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 2.9rem;
  }
}

@media (min-width: 2560px) {
  :root {
    --max-width: 1750px;
  }
  .hero-main h1 {
    font-size: 3.9rem;
  }
  .hero-text {
    font-size: 1.38rem;
  }
  .clientes-logos img {
    width: 320px;
  }
}

@media (min-width: 3440px) {
  :root {
    --max-width: 1900px;
  }

  .hero-main h1 {
    font-size: 4.2rem;
    max-width: 1050px;
  }
  .hero-text {
    font-size: 1.45rem;
    max-width: 960px;
  }
  .section-title {
    font-size: 3.2rem;
  }
  .section {
    padding: 60px 0;
  }
}

/* 📱 Layout 1-Coluna em TODAS telas pequenas */
@media (max-width: 768px) {

  .gestao-grid,
  .funciona-grid,
  .beneficios-top,
  .beneficios-bottom,
  .numeros-grid,
  .depoimentos-grid,
  .contato-infos {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 24px;
  }

  .gestao-content,
  .gestao-cards,
  .beneficio-card,
  .funciona-card,
  .numero-item,
  .depoimento-card,
  .contato-item {
    width: 100% !important;
    max-width: 420px !important;
    text-align: center;
  }

  .clientes-logos img {
    width: 200px;
    height: auto;
  }
  
  .numero-valor {
    font-size: 1.9rem;
  }
}

/* FIX CTA MOBILE - Telas menores que 600px */
@media (max-width: 600px) {
  /* Centraliza toda a estrutura */
  .contato-card {
    text-align: center;
    padding: 28px 16px;
  }

  /* Etapas em coluna */
  .contato-etapas {
    flex-direction: column;
    gap: 26px;
    align-items: center;
    width: 100%;
  }

  .contato-etapa {
    width: 100%;
    max-width: 340px;
  }

  .etapa-banner {
    width: 100%;
    max-width: 340px;
    height: 56px;
    clip-path: none;
    border-radius: 8px;
    display: flex;
    justify-content: center;
  }

  .etapa-banner img {
    width: 28px;
    height: 28px;
  }

  /* Botão CTA mais confortável */
  .contato-whatsapp {
    width: 100%;
    max-width: 360px;
    font-size: 0.92rem;
    text-align: center;
    margin: 24px auto 48px auto;
    padding: 14px 18px;
  }

  /* Contatos em coluna */
  .contato-infos {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contato-item {
    justify-content: center;
  }

  .contato-item h4 {
    font-size: 1rem;
  }
  .contato-item p,
  .contato-item a {
    font-size: 0.92rem;
  }
}
/* 📱 Ajustes especiais para telas de 430px ou menores */
@media (max-width: 430px) {
  .container {
    padding: 0 12px;
  }

  /* Títulos menores */
  .section-title {
    font-size: 1.7rem !important;
    line-height: 1.25 !important;
  }

  .hero-main h1 {
    font-size: 1.65rem !important;
  }

  /* Cards dos benefícios */
  .beneficio-card {
    padding: 18px 14px !important;
  }

  .beneficio-card h3 {
    font-size: 1rem !important;
  }

  .beneficio-card p {
    font-size: 0.92rem !important;
    line-height: 1.45 !important;
  }

  /* Números */
  .numero-valor {
    font-size: 1.6rem !important;
  }

  .numero-label {
    font-size: 0.9rem !important;
  }

  .numero-item p {
    font-size: 0.82rem !important;
  }

  /* CTA | Contato */
  .contato-whatsapp {
    font-size: 0.82rem !important;
    padding: 10px 12px !important;
  }

  .contato-card {
    padding: 24px 16px !important;
  }

  .contato-quote {
    font-size: 1.5rem !important;
  }

  .contato-subtitle {
    font-size: 1rem !important;
  }

  .contato-item h4 {
    font-size: 0.95rem !important;
  }

  .contato-item p {
    font-size: 0.82rem !important;
  }
}

@media (max-width: 768px) {
  /* GRID GERAIS */
  .gestao-grid,
  .funciona-grid,
  .beneficios-top,
  .beneficios-bottom,
  .numeros-grid,
  .depoimentos-grid,
  .clientes-logos
 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
  }

  /* Itens mais estreitos */
  .funciona-card,
  .beneficio-card,
  .depoimento-card,
  .contato-etapa,
  .gestao-cards {
    width: 100% !important;
    max-width: 420px !important;
  }

  /* Números */
  .numeros-grid {
    gap: 30px !important;
  }

  .numero-valor {
    font-size: 1.8rem !important;
  }

  /* Benefícios */
    .beneficios-top,
  .beneficios-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 26px !important;
  }

  .beneficio-card {
    width: 100% !important;
    max-width: 380px !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .beneficio-icon {
    margin: 0 auto 14px auto !important;
  }

  .beneficio-card h3 {
    font-size: 1.1rem !important;
  }

  /* Logos dos clientes */
  .clientes-logos img {
    width: 200px !important;
  }

  /* CONTATO */
  .contato-etapas {
    width: 100%;
  }

  .section-contato {
    padding-bottom: 100px !important; /* Aumenta o espaço inferior */
  }

  .etapa-banner {
    width: 100% !important;
    max-width: 340px !important;
    height: 54px !important;
    clip-path: none !important;
    border-radius: 8px !important;
  }

  .contato-whatsapp {
    width: 100%;
    max-width: 340px;
    margin: 24px auto;
    font-size: 0.9rem;
    text-align: center;
  }
    .contato-infos {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    column-gap: 22px !important;
    row-gap: 28px !important;
    justify-items: center !important;
    width: 100% !important;
    margin-bottom: 30px;
  }

  .contato-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 6px !important;
    width: 100% !important;
  }

  .contato-item h4,
  .contato-item p,
  .contato-item a {
    text-align: center !important;
    width: 100% !important;
  }

  /* Espaçamentos */
  .section {
    padding: 60px 0 !important;
  }
}
/* 📱 Centralizar TODOS os cards em telas menores */
@media (max-width: 1024px) {

  /* Alinha tudo no centro */
  .gestao-grid,
  .funciona-grid,
  .beneficios-top,
  .beneficios-bottom,
  .numeros-grid,
  .depoimentos-grid,
  .clientes-logos,
  .contato-infos {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  /* Garante os cartões centralizados */
  .gestao-cards,
  .funciona-card,
  .beneficio-card,
  .depoimento-card,
  .numero-item,
  .contato-etapa {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Ícones da seção contato lado a lado */
  .contato-infos {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 32px !important;
  }

  .contato-item {
    justify-content: center !important;
    text-align: center !important;
    width: 45% !important;
  }
}

/* 📱 Ajuste especial para celulares menores */
@media (max-width: 480px) {
  .contato-infos {
    flex-direction: column !important;
  }

  .contato-item {
    width: 100% !important;
  }
}
