@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.hero-features-inline {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-features-inline > span {
  position: relative;
  padding-left: 18px;
}

.hero-features-inline > span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

.has-tooltip {
  cursor: help;
}

.tooltip-text {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  width: min(360px, 78vw);
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(15, 23, 66, 0.96);
  color: #ffffff;
  font-size: 12px;
  line-height: 1.45;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 20;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.tooltip-text::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(15, 23, 66, 0.96);
}

.has-tooltip:hover .tooltip-text,
.has-tooltip:focus-within .tooltip-text {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hero .btn {
  padding: 16px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
}
/* HERO BUTTON SECONDARY CUSTOM */
.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 18px 36px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  transition: all 0.2s ease;
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
/* HERO BUTTON PRIMARY CUSTOM */
.hero .btn-primary {
  background: linear-gradient(180deg, #5b45ff 0%, #4a35e6 100%);
  color: #ffffff;
  padding: 18px 36px;
  font-weight: 800;
  font-size: 16px;
  border-radius: 14px;
  box-shadow:
    0 20px 50px rgba(91, 69, 255, 0.35),
    0 8px 20px rgba(0, 0, 0, 0.12);
  border: none;
  transition: all 0.2s ease;
}

.hero .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 30px 70px rgba(91, 69, 255, 0.45),
    0 12px 25px rgba(0, 0, 0, 0.15);
}
/* =========================
   1) RESET / BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: -150px;
}

/* VARIÁVEIS DO DESIGN */
:root {
  --primary: #5b45ff;
  --primary-2: #4a9eff;
  --dark: #1a1a5e;
  --accent: #c9a8ff;

  --text: #333;
  --muted: #666;

  --bg: #ffffff;
  --bg-soft: #f8f9fa;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --shadow-sm: 0 8px 18px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.25);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background: linear-gradient(
    165deg,
    #1a1a5e 0%,
    #4a9eff 22%,
    #c9a8ff 48%,
    #7c6cff 72%,
    #1a1a5e 100%
  );
  background-attachment: fixed;
}

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 100px 0;
}

section {
  scroll-margin-top: 0px;
}

/* =========================
   2) ANIMAÇÕES
========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   3) COMPONENTES
========================= */
.section-title {
  font-size: 48px;
  color: #1a1a5e;
  margin-bottom: 12px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

/* Botões (base) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition:
    transform 0.18s ease,
    filter 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(0);
}

/* Primário e secundário (default) */
.btn-primary {
  background: linear-gradient(180deg, #6f5bff 0%, #5b45ff 100%);
  color: #fff;
  box-shadow:
    0 26px 70px rgba(20, 35, 90, 0.18),
    0 10px 22px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
  box-shadow:
    0 34px 90px rgba(20, 35, 90, 0.22),
    0 12px 26px rgba(0, 0, 0, 0.12);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.38);
  color: rgba(22, 22, 70, 0.88);
  box-shadow:
    0 26px 70px rgba(20, 35, 90, 0.1),
    0 10px 22px rgba(0, 0, 0, 0.06);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.46);
}

/* Botão claro (usado nos cards de Segmentos) */
.btn-light {
  background: #ffffff;
  color: #1a1a5e;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.btn-light:hover {
  background: #c9a8ff;
  color: #ffffff;
  transform: translateY(-2px);
}

/* =========================
   4) NAV
========================= */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.brand-mark {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1));
}
.brand-text {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #c9a8ff 0%, #1a1a5e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 18px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px; /* cria uma zona de hover abaixo do texto */
}

.nav-links a:hover {
  color: var(--accent);
  transform: none; /* evita mexer a área do mouse e causar "flicker" */
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px; /* fica dentro da área do link, não "fora" */
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.25s ease;
  pointer-events: none; /* underline não captura o mouse */
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 6px;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: 0.3s;
}

/* =========================
   5) HERO
========================= */
.hero {
  min-height: 100vh;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;

  background: linear-gradient(135deg, #4a9eff, #7c6cff, #c9a8ff);
  background-size: 300% 300%;
  animation: gradientMove 15s ease infinite;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 600px at 15% 20%,
      rgba(91, 69, 255, 0.55),
      rgba(91, 69, 255, 0) 60%
    ),
    radial-gradient(
      800px 500px at 85% 40%,
      rgba(74, 158, 255, 0.45),
      rgba(74, 158, 255, 0) 60%
    );
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12) 1px,
    transparent 1px
  );
  background-size: 56px 56px;
  opacity: 0.25;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 140px);
}

.hero-left {
  text-align: left;
  max-width: 520px;
  padding-top: 10px;
}

.hero-logo-img {
  width: 58px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.18));
  margin-bottom: 22px;
}

/* TIPOGRAFIA HERO */
.hero-title {
  font-size: clamp(36px, 3.8vw, 54px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 520px;

  background: linear-gradient(135deg, #ffffff 0%, #f0ebff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 480px;
  line-height: 1.75;
  margin: 18px 0 28px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin: 26px 0 28px;
}

.hero-checklist {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 10px;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
}

.hero-checklist li {
  position: relative;
  padding-left: 34px;
  line-height: 1.4;
}

.hero-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(10px);
}

.hero-image-wrap {
  width: 100%;
  max-width: 580px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.35),
    0 25px 50px rgba(0, 0, 0, 0.25);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* =========================
   6) PROPÓSITO
========================= */
.proposito {
  background: transparent;
  text-align: center;
  padding: 30px 6% 100px;
}

.proposito-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.proposito-content p {
  margin-bottom: 20px;
}

.quote {
  border-left: 4px solid #c9a8ff;
  padding-left: 24px;
  margin: 30px 0;
  font-style: italic;
  color: #555;
  font-size: 18px;
}

.proposito-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.9fr;
  gap: 100px;
  max-width: 1350px;
  margin: 40px auto 0;
}

.proposito-left {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

.proposito-right {
  font-size: 17px;
  line-height: 1.9;
  color: #111a46;
  padding: 40px 45px;
  background: linear-gradient(145deg, #ece9ff, #e3ddff);
  border: 1px solid rgba(91, 69, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(32, 36, 86, 0.14);
}

.highlight {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  margin: 50px 0 60px;
  color: #111;
}

.manifesto {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  margin: 0px 0 35px;
}

.proposito-list {
  list-style: none;
  margin: 25px 0 35px;
  padding-left: 18px;
}

.proposito-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
  font-weight: 500;
}

.proposito-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7c6cff;
  font-weight: 700;
  font-size: 18px;
}

@media (max-width: 900px) {
  .proposito-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =========================
   7) COMO FUNCIONA
========================= */
.como-funciona {
  padding: 50px 6%;
  background: transparent;
}

.cf-head {
  text-align: left;
  max-width: 980px;
  margin: 0 auto 44px;
}

.cf-title {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.02em;
  color: #0f1742;
  margin-bottom: 10px;
}

.cf-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 820px;
  margin-bottom: 26px;
}

.cf-proof {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cf-proof span {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a5e;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 66, 0.1);
  padding: 9px 12px;
  border-radius: 999px;
}

.cf-flow {
  width: min(1200px, 100%);
  margin: 0 auto;
  position: relative;
  display: grid;
  gap: 26px;
}

.cf-line {
  position: absolute;
  left: 54px;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: linear-gradient(
    180deg,
    rgba(91, 69, 255, 0.75),
    rgba(74, 158, 255, 0.55)
  );
  border-radius: 999px;
  opacity: 0.85;
  box-shadow: 0 0 0 6px rgba(91, 69, 255, 0.06);
}

.cf-step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: start;
}

.cf-bubble {
  position: relative;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0) 45%
    ),
    linear-gradient(
      180deg,
      rgba(74, 158, 255, 0.22) 0%,
      rgba(201, 168, 255, 0.18) 100%
    ),
    rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 66, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
  display: grid;
  place-items: center;
}

.cf-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(180deg, #1a1a5e 0%, #0f1742 100%);
  box-shadow: 0 14px 34px rgba(15, 23, 66, 0.32);
  font-size: 14px;
}

.cf-icon {
  width: 46px;
  height: 46px;
  color: #0f1742;
  opacity: 0.95;
}

.cf-icon svg {
  width: 100%;
  height: 100%;
}

.cf-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(245, 248, 255, 0.92) 100%
  );
  border: 1px solid rgba(15, 23, 66, 0.1);
  border-radius: 22px;
  padding: 26px 28px 22px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

.cf-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      700px 120px at 20% 0%,
      rgba(74, 158, 255, 0.12),
      rgba(74, 158, 255, 0) 60%
    ),
    radial-gradient(
      520px 120px at 80% 0%,
      rgba(201, 168, 255, 0.1),
      rgba(201, 168, 255, 0) 60%
    );
  pointer-events: none;
}

.cf-card > * {
  position: relative;
  z-index: 1;
}

.cf-card h3 {
  font-size: 22px;
  color: #0f1742;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
  font-weight: 800;
}

.cf-card p {
  color: rgba(15, 23, 66, 0.72);
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 14px;
  max-width: 720px;
}

.cf-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(15, 23, 66, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.cf-card li {
  position: relative;
  padding-left: 26px;
  margin: 0;
}

.cf-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: rgba(15, 23, 66, 0.95);
  background: rgba(74, 158, 255, 0.18);
  border: 1px solid rgba(74, 158, 255, 0.28);
}

.cf-card strong {
  color: rgba(15, 23, 66, 0.92);
  font-weight: 800;
}

.cf-step:hover .cf-card {
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.cf-step:hover .cf-bubble {
  transform: translateY(-3px);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.cf-step:hover .cf-badge {
  filter: brightness(1.02);
}

@media (max-width: 980px) {
  .cf-head {
    text-align: center;
  }
  .cf-proof {
    justify-content: center;
  }
  .cf-line {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    opacity: 0.35;
  }
  .cf-step {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .cf-card {
    width: 100%;
    max-width: 680px;
  }
  .cf-card ul {
    text-align: left;
    display: inline-block;
  }
}

@media (max-width: 520px) {
  .cf-bubble {
    width: 96px;
    height: 96px;
  }
  .cf-icon {
    width: 40px;
    height: 40px;
  }
}

/* COMO FUNCIONA - PASSO 01 SOMENTE IMAGEM (SEM CÍRCULO EXTRA) */
#como-funciona .cf-step-image .cf-bubble {
  width: 120px;
  height: 120px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#como-funciona .cf-step-image .cf-bubble::before,
#como-funciona .cf-step-image .cf-bubble::after,
#como-funciona .cf-step-image .cf-icon::before,
#como-funciona .cf-step-image .cf-icon::after {
  content: none !important;
  display: none !important;
}

#como-funciona .cf-step-image .cf-badge {
  display: grid;
}

#como-funciona .cf-step-image .cf-icon {
  width: 120px;
  height: 120px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 50% !important;
  overflow: hidden;
  color: inherit;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#como-funciona .cf-step-image .cf-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  image-rendering: auto;
}

/* =========================
   8) BENEFÍCIOS
========================= */
.beneficios {
  background: transparent;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.benefit-item {
  padding: 30px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #c9a8ff;
  transition: all 0.3s;
}

.benefit-item:hover {
  background: #f0f0f0;
  transform: translateX(5px);
}

.benefit-item h3 {
  color: #1a1a5e;
  margin-bottom: 10px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-item p {
  color: #666;
  font-size: 15px;
}

/* =========================
   9) SEGMENTOS
========================= */
.segmentos {
  background: transparent;
  color: white;
  text-align: center;
}

.segmentos .section-title {
  color: white;
}
.segmentos .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.segment-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.3s;
}

.segment-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.segment-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.segment-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* =========================
   10) DEPOIMENTOS
========================= */
.testimonials {
  background: #ffffff;
}

.testimonials.section {
  padding: 90px 0;
}

.testimonials .section-head {
  text-align: center;
  margin-bottom: 36px;
}

.testimonials .section-title {
  margin-bottom: 12px;
  font-weight: 900;
}

.testimonials .section-subtitle {
  margin-top: 10px;
  color: rgba(16, 18, 58, 0.65);
  font-size: 15px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.t-card {
  position: relative;
  border: 1px solid rgba(16, 18, 58, 0.08);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 14px 40px rgba(16, 18, 58, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(16, 18, 58, 0.12);
  border-color: rgba(91, 69, 255, 0.25);
}

.t-card:before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 14px;
  font-size: 54px;
  line-height: 1;
  color: rgba(91, 69, 255, 0.18);
  font-weight: 800;
}

.t-quote {
  margin-top: 18px;
  color: rgba(16, 18, 58, 0.78);
  font-size: 14px;
  line-height: 1.8;
  font-style: italic;
}

.t-meta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 18, 58, 0.08);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.t-name {
  font-weight: 800;
  color: #10123a;
  font-size: 14px;
}

.t-role {
  margin-top: 4px;
  color: rgba(16, 18, 58, 0.6);
  font-size: 12px;
}

.t-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(91, 69, 255, 0.1);
  color: rgba(16, 18, 58, 0.82);
  border: 1px solid rgba(91, 69, 255, 0.18);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .t-card {
    padding: 20px;
  }
}

/* =========================
   11) FAQ
========================= */
.faq {
  background: #ffffff;
}

.faq-wrap {
  max-width: 980px;
  margin: 56px auto 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid #e9eaf3;
  border-radius: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.9);
  transition:
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.faq-item:hover {
  box-shadow: 0 12px 28px rgba(15, 23, 66, 0.08);
  border-color: rgba(91, 69, 255, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #10123a;
  cursor: pointer;
  line-height: 1.45;
}

.faq-answer {
  color: rgba(16, 18, 58, 0.75);
  line-height: 1.75;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  overflow: hidden;
  margin-top: 0;
  transition:
    max-height 260ms ease,
    opacity 260ms ease,
    transform 260ms ease,
    margin-top 260ms ease;
}

.faq-answer a {
  color: #2f2abf;
  font-weight: 700;
  text-decoration: underline;
}

.faq-answer a:hover {
  color: #1a1a5e;
}

.faq-item.active .faq-answer {
  max-height: 340px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4ff;
  color: #5b45ff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 36px;
  transition: transform 260ms ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* =========================
   12) CONTATO
========================= */
.contato {
  background: transparent;
  color: white;
  text-align: center;
}

.contato .section-title {
  color: white;
}
.contato .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.contato-form {
  max-width: 600px;
  margin: 40px auto 0;
  display: grid;
  gap: 20px;
  text-align: left;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.field {
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.field:focus {
  outline: 2px solid white;
}

.contact-info {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: 0.95;
}

.contact-whatsapp-btn {
  margin: 18px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 34px rgba(18, 160, 75, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.contact-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(18, 160, 75, 0.38);
  filter: brightness(1.02);
}

.contact-whatsapp-btn svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

@media (max-width: 520px) {
  .contact-whatsapp-btn {
    font-size: 14px;
    padding: 11px 18px;
  }
}

/* =========================
   13) FOOTER
========================= */
.footer {
  background: #1a1a5e;
  color: white;
  text-align: center;
  padding: 30px 5%;
}

.footer p {
  opacity: 0.8;
  font-size: 14px;
}

/* =========================
   14) RESPONSIVO (SEMPRE NO FINAL)
========================= */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .hero-left {
    order: 1;
  }
  .hero-right {
    order: 2;
  }

  .hero-left,
  .hero-right {
    transform: none;
  }

  .hero-image-wrap {
    max-width: 100%;
  }
  .hero-image {
    height: auto;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu {
    display: flex;
  }

  /* menu aberto */
  body.menu-open .nav-links {
    display: flex;
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 16px;
    padding: 18px 5%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  /* .btn{ width: 100%; } removed to prevent text wrapping */

  .steps,
  .benefits-grid,
  .segments-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 110px 6% 60px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.15;
  }

  .hero-checklist {
    font-size: 15px;
  }
}

/* =========================
   LOOK "PRIMEIRO PASSO" + POCSAFE (ADD-ON)
   Cole no final do styles.css
========================= */

/* 1) Fundo geral mais "clean" (o seu está bem carregado) */
body {
  background:
    radial-gradient(
      1200px 600px at 20% 0%,
      rgba(91, 69, 255, 0.2),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 90% 20%,
      rgba(74, 158, 255, 0.18),
      transparent 55%
    ),
    #ffffff;
  background-attachment: fixed;
  color: #0f1742;
}

/* 2) Navbar com “shrink” (JS abaixo ativa) */
.nav {
  transition:
    padding 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.28s ease;
}
.nav.nav--scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(15, 23, 66, 0.08);
}
.nav.nav--hidden {
  transform: translateY(-120%);
}

/* 3) Seções alternando visual (efeito de blocos do site modelo) */
.section {
  padding: 110px 0;
}
.section-title {
  text-align: center;
  color: #0f1742;
  letter-spacing: -0.02em;
}
.section-subtitle {
  color: rgba(15, 23, 66, 0.7);
}

/* Dá “cara de layout editorial” */
.proposito,
.como-funciona,
.beneficios,
.faq {
  background: transparent;
}

/* Cards com cara premium */
.benefit-item,
.cf-card,
.proposito-right {
  border-radius: 22px;
}

/* Segmentos/Contato ficam “coloridos” como blocos destacados */
.segmentos,
.contato {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 94, 0.92),
    rgba(74, 158, 255, 0.6)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

/* 4) HERO menos “pesado” e mais “premium” */
.hero {
  background:
    radial-gradient(
      900px 600px at 20% 20%,
      rgba(91, 69, 255, 0.55),
      transparent 60%
    ),
    radial-gradient(
      800px 500px at 85% 40%,
      rgba(74, 158, 255, 0.45),
      transparent 60%
    ),
    linear-gradient(135deg, #1a1a5e, #4a9eff);
  animation: none; /* tira o “move” constante pra ficar mais sofisticado */
}
.hero::before {
  opacity: 0.18;
}

/* 5) RESULTADOS (stats) */
.resultados {
  background: linear-gradient(
    180deg,
    rgba(245, 248, 255, 0.9),
    rgba(255, 255, 255, 0.9)
  );
  border-top: 1px solid rgba(15, 23, 66, 0.06);
  border-bottom: 1px solid rgba(15, 23, 66, 0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 66, 0.1);
  border-radius: 22px;
  padding: 26px 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #5b45ff, #4a9eff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  margin-top: 10px;
  color: rgba(15, 23, 66, 0.72);
  font-weight: 700;
  line-height: 1.35;
}

.stats-note {
  margin-top: 18px;
  text-align: center;
  color: rgba(15, 23, 66, 0.55);
  font-size: 13px;
}

/* 7) Stagger visual (quando entrar na tela) */
.animate-on-scroll {
  will-change: transform, opacity;
}

/* 8) Responsivo */
@media (max-width: 980px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-number {
    font-size: 42px;
  }
}

/* 9) Fade + Scale suave nos cards ao entrar na tela */
.stat-card.animate-on-scroll,
.benefit-item.animate-on-scroll,
.segment-card.animate-on-scroll {
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-card.animate-on-scroll.visible,
.benefit-item.animate-on-scroll.visible,
.segment-card.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 10) WhatsApp flutuante */
@keyframes pulseWhats {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(18, 160, 75, 0.35);
  animation: pulseWhats 2.5s infinite;
  z-index: 1200;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 58px rgba(18, 160, 75, 0.45);
  filter: brightness(1.02);
}

.whatsapp-float svg {
  width: 46px;
  height: 46px;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }
}

/* =========================
   BENEFÍCIOS – POCSAFE 2.0 UPGRADE
========================= */

.beneficios {
  padding: 50px 0 140px;
  background:
    radial-gradient(
      900px 500px at 20% 0%,
      rgba(91, 69, 255, 0.08),
      transparent 60%
    ),
    #ffffff;
}

.benefits-grid {
  gap: 40px;
  margin-top: 80px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(91, 69, 255, 0.15);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 25px 70px rgba(15, 23, 66, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0.2, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(91, 69, 255, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 90px rgba(15, 23, 66, 0.14);
  border-color: rgba(91, 69, 255, 0.35);
}

.benefit-item h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f1742;
  margin-bottom: 14px;
}

.benefit-item p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(15, 23, 66, 0.75);
}

.beneficios .section-title {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.beneficios .section-subtitle {
  font-size: 20px;
  color: rgba(15, 23, 66, 0.65);
  max-width: 720px;
}

@media (max-width: 768px) {
  .beneficios {
    padding: 70px 0 90px;
  }

  .benefit-item {
    padding: 28px;
    border-radius: 22px;
  }

  .benefit-item h3 {
    font-size: 20px;
  }
}

/* =========================
   BENEFÍCIOS – AUTORIDADE INSTITUCIONAL (POCSAFE 2.0)
   (Adicionar ao FINAL do styles.css)
========================= */

.beneficios {
  background: #ffffff;
  padding: 110px 0;
}

.beneficios .section-title {
  font-size: clamp(38px, 3.6vw, 54px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f1742;
  text-align: center;
}

.beneficios .section-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(15, 23, 66, 0.65);
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.benefits-grid {
  gap: 26px;
  margin-top: 0;
}

.benefit-item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 66, 0.1);
  border-radius: 18px;
  padding: 34px 34px 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 66, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  position: relative;
  overflow: hidden;
}

/* acento institucional sutil (linha fina no topo) */
.benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(91, 69, 255, 0.7),
    rgba(74, 158, 255, 0.55)
  );
  opacity: 0.35;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(15, 23, 66, 0.1);
  border-color: rgba(15, 23, 66, 0.16);
}

.benefit-item h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.01em;
  color: #0f1742;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(15, 23, 66, 0.72);
}

/* emojis/ícones menos “infantis” (mais discretos) */
.benefit-item h3 span,
.benefit-item h3 img,
.benefit-item h3 svg {
  transform: translateY(1px);
  opacity: 0.9;
}

/* BENEFÍCIOS – CONSISTÊNCIA DE ALTURA (INSTITUCIONAL) */
.benefits-grid {
  align-items: stretch;
}

.benefit-item {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .beneficios {
    padding: 90px 0;
  }

  .beneficios .section-subtitle {
    margin-bottom: 44px;
    font-size: 16.5px;
  }

  .benefit-item {
    padding: 26px 22px 22px;
    border-radius: 16px;
  }

  .benefit-item h3 {
    font-size: 19px;
  }

  .benefit-item p {
    font-size: 15px;
  }
}

/* BENEFÍCIOS – PADRONIZAÇÃO DE ÍCONES SVG (INSTITUCIONAL) */
.benefit-item h3 svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #5b45ff;
  margin-right: 2px;
  align-self: center;
  transform: translateY(0);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  opacity: 0.85;
}

.benefit-item:hover h3 svg {
  opacity: 1;
}

/* =========================
   COMO FUNCIONA – REVEAL CADENCIADO (SOMENTE #como-funciona)
========================= */
#como-funciona .cf-head,
#como-funciona .cf-step {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

#como-funciona.cf-reveal .cf-head,
#como-funciona.cf-reveal .cf-step {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   SEGMENTOS – UNIFORME COM BENEFÍCIOS
========================= */
.segmentos {
  background: #ffffff;
  padding: 110px 0;
  color: #0f1742;
  text-align: left;
}

.segmentos .section-title {
  font-size: clamp(38px, 3.6vw, 54px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f1742;
  text-align: center;
}

.segmentos .section-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(15, 23, 66, 0.65);
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.segments-grid {
  gap: 26px;
  margin-top: 0;
  align-items: stretch;
}

.segment-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 66, 0.1);
  border-radius: 18px;
  padding: 34px 34px 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 66, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.segment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(91, 69, 255, 0.7),
    rgba(74, 158, 255, 0.55)
  );
  opacity: 0.35;
}

.segment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(15, 23, 66, 0.1);
  border-color: rgba(15, 23, 66, 0.16);
  background: #ffffff;
}

.segment-card h3 {
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.01em;
  color: #0f1742;
  margin-bottom: 12px;
}

.segment-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(15, 23, 66, 0.72);
  margin-bottom: 18px;
}

.segment-card .btn-light {
  margin-top: auto;
  background: #ffffff;
  color: #1a1a5e;
  border: 1px solid rgba(15, 23, 66, 0.14);
  box-shadow: 0 8px 20px rgba(15, 23, 66, 0.08);
}

.segment-card .btn-light:hover {
  background: #f3f0ff;
  color: #1a1a5e;
  border-color: rgba(91, 69, 255, 0.26);
}

@media (max-width: 768px) {
  .segmentos {
    padding: 90px 0;
  }

  .segmentos .section-subtitle {
    margin-bottom: 44px;
    font-size: 16.5px;
  }

  .segment-card {
    padding: 26px 22px 22px;
    border-radius: 16px;
  }

  .segment-card h3 {
    font-size: 19px;
  }

  .segment-card p {
    font-size: 15px;
  }
}

/* SEGMENTOS – PADRONIZAÇÃO DE ÍCONES SVG (ALINHADO A BENEFÍCIOS) */
.segment-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.segment-card h3 svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #5b45ff;
  margin-right: 2px;
  align-self: center;
  transform: translateY(0);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  opacity: 0.85;
}

.segment-card:hover h3 svg {
  opacity: 1;
}

/* =========================
   MOBILE HOTFIX – HERO/NAV SEM CORTE
========================= */
@media (max-width: 768px) {
  .nav {
    padding: 12px 4%;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 44px;
  }

  .brand-text {
    font-size: 24px;
  }

  .hero-left,
  .hero-subtitle,
  .hero-title {
    max-width: 100%;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
    padding: 14px 18px;
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .brand-text {
    font-size: 21px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 104px 0 56px;
  }

  .hero .container {
    padding: 0 4%;
  }

  .hero-left,
  .hero-title,
  .hero-subtitle {
    width: 100%;
    max-width: 100% !important;
  }

  .hero-title,
  .hero-subtitle {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-buttons {
    width: 100%;
    gap: 10px;
  }

  .hero .btn,
  .hero .btn-primary,
  .hero .btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    text-wrap: balance;
    padding: 14px 14px !important;
    font-size: clamp(14px, 3.9vw, 16px) !important;
    line-height: 1.25;
    text-align: center;
  }
}

/* MOBILE HOTFIX FINAL – PRIORIDADE MÁXIMA */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    min-height: auto !important;
  }

  .hero-left,
  .hero-title,
  .hero-subtitle,
  .hero-buttons,
  .hero-features-inline {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-title {
    font-size: clamp(30px, 8.2vw, 38px) !important;
    line-height: 1.1 !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  .hero-subtitle {
    font-size: 15.5px !important;
    line-height: 1.6 !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  .hero .btn,
  .hero .btn-primary,
  .hero .btn-secondary {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    padding: 13px 12px !important;
    font-size: clamp(13px, 3.5vw, 14.5px) !important;
    line-height: 1.22 !important;
    text-align: center !important;
  }

  .hero-features-inline {
    gap: 10px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 420px) {
  .brand-text {
    font-size: 20px !important;
  }

  .brand-mark {
    width: 40px !important;
  }

  .hero-title {
    font-size: 25px !important;
  }
}

/* HERO CTA MOBILE FIX – TEXTO SEM CORTE */
.hero .btn .cta-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .hero .hero-buttons .btn {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    padding: 12px 10px !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }
}

@media (max-width: 520px) {
  .hero .btn .cta-desktop {
    display: none;
  }

  .hero .btn .cta-mobile {
    display: inline;
  }
}

/* =========================
   RESPONSIVIDADE CONSOLIDADA + POLIMENTO FINAL
========================= */
@media (max-width: 980px) {
  .section {
    padding: 90px 0;
  }

  .proposito {
    padding: 24px 0 84px;
  }

  .hero-inner {
    gap: 32px;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .cf-flow {
    gap: 20px;
  }

  .proposito-grid {
    gap: 28px;
    margin-top: 28px;
  }

  .proposito-right {
    padding: 28px 24px;
  }

  .cf-card {
    padding: 22px 22px 18px;
  }

  .benefit-item,
  .segment-card,
  .t-card {
    min-height: unset;
  }

  .benefits-grid,
  .segments-grid,
  .testimonials-grid {
    gap: 16px;
  }

  .contact-info a,
  .contact-info p {
    justify-content: center;
    flex-wrap: wrap;
  }

  .faq-wrap {
    margin-top: 44px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 82px 0;
  }

  .hero {
    padding-top: 98px !important;
  }

  .hero-features-inline {
    margin-top: 22px;
    padding-top: 14px;
  }

  .proposito-grid {
    gap: 22px;
  }

  .proposito-right {
    padding: 24px 20px;
  }

  .benefit-item,
  .segment-card {
    padding: 22px 18px 20px;
  }

  .t-card {
    padding: 20px 18px 16px;
  }

  .contato-form {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 76px 0;
  }

  .section-title {
    font-size: clamp(30px, 8.2vw, 40px);
  }

  .section-subtitle {
    margin-bottom: 38px;
    font-size: 16px;
    line-height: 1.6;
  }

  .cf-head {
    margin-bottom: 30px;
  }

  .cf-title {
    font-size: clamp(30px, 8vw, 40px);
  }

  .cf-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .t-quote {
    font-size: 13.5px;
    line-height: 1.75;
  }

  .t-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-item {
    padding: 16px 16px;
  }

  .faq-question {
    font-size: 16px;
    gap: 12px;
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    font-size: 20px;
  }

  .contact-info {
    gap: 12px;
  }

  .contact-whatsapp-btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 420px) {
  .container {
    padding: 0 14px;
  }

  .section {
    padding: 68px 0;
  }

  .brand {
    gap: 6px;
  }

  .hero-title {
    line-height: 1.08 !important;
  }

  .hero-subtitle {
    font-size: 15px !important;
  }

  .hero-features-inline {
    gap: 8px !important;
    font-size: 12.5px !important;
  }

  .proposito-right {
    padding: 22px 18px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 14px;
    line-height: 1.65;
  }

  .contact-info a,
  .contact-info p {
    font-size: 14px;
  }
}
