/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  background: #fff;
  color: #1a1a2e;
  line-height: 1.6;
}
/* overflow-x removido do body — cada seção já tem overflow:hidden próprio */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
ul,
ol {
  list-style: none;
}

/* ── TOKENS ── */
:root {
  --navy: #0d1b3e;
  --navy-mid: #1a3a6e;
  --blue: #2155fc;
  --blue-lt: #5c82ff;
  --teal: #00b8a9;
  --teal-lt: #94ebe8;
  --teal-dk: #009688;
  --white: #ffffff;
  --bg-lt: #f8f9fb;
  --bg-blue: #e8f4fd;
  --text: #1a1a2e;
  --text-mid: #3a4a6a;
  --text-lt: #5a6a82;
  --text-xlt: #8a9bb0;
  --border: #e2e8f0;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --sh-sm: 0 2px 8px rgba(13, 27, 62, 0.07);
  --sh-md: 0 8px 32px rgba(13, 27, 62, 0.12);
  --sh-lg: 0 20px 60px rgba(13, 27, 62, 0.16);
  --nav-h: 68px;
}

/* ── UTILS ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--bg-blue);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-title span {
  color: var(--blue);
}
.section-title .teal {
  color: var(--teal);
}
.section-sub {
  font-size: 16px;
  color: var(--text-lt);
  line-height: 1.7;
  max-width: 560px;
}
.section-center {
  text-align: center;
}
.section-center .section-sub {
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(33, 85, 252, 0.35);
}
.btn-primary:hover {
  background: #1a44d4;
  box-shadow: 0 6px 28px rgba(33, 85, 252, 0.45);
  transform: translateY(-1px);
}
.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 184, 169, 0.35);
}
.btn-teal:hover {
  background: var(--teal-dk);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--navy);
  padding: 12px 20px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--sh-md);
  transition: all 0.2s;
  min-width: 180px;
  justify-content: center;
}
.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}
.store-btn .s-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.store-btn .s-sm {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-lt);
  display: block;
  line-height: 1;
}
.store-btn .s-lg {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  display: block;
}
.store-btn-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
}
.store-btn-dark:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.store-btn-dark .s-sm {
  color: rgba(255, 255, 255, 0.6);
}
.store-btn-dark .s-lg {
  color: #fff;
}

/* ── NAVBAR ── */
/* viewport-fit=cover faz o viewport passar sob o notch/Dynamic Island do iPhone.
       env(safe-area-inset-top) empurra o conteúdo para baixo do notch.
       Sem isso, o logo e os links ficam escondidos atrás do notch no iPhone X/11/12/13/14+. */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  z-index: 1000;
  background: rgb(13, 27, 62);
  background: rgba(13, 27, 62, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 36px;
  width: auto;
  /* filter: brightness(0) invert(1); */
}
.nav-logo-fallback {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  display: none;
}
.nav-logo-fallback span {
  color: var(--teal);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #fff;
}
.nav-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 184, 169, 0.15);
  border: 1px solid rgba(0, 184, 169, 0.3);
  padding: 5px 12px;
  border-radius: 20px;
}
.nav-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
.nav-badge span {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ── WhatsApp Suporte ── */
.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-whatsapp svg {
  flex-shrink: 0;
  color: #25d366;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.nav-whatsapp:hover {
  color: #fff;
}
.nav-whatsapp:hover svg {
  opacity: 1;
}

/* ── MOBILE HERO ── */
.hero-mobile {
  display: none;
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 580px;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
}
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
/* O slide começa logo abaixo da navbar (hero-slides respeita o padding-top do pai).
       Top padding pequeno (20px) = só respiro visual. Bottom 120px = espaço para CTA bar. */
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 28px 120px;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  background-size: cover;
  background-position: center;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
/* Overlay sobre fotos — opacidade reduzida para que os gradientes
       de fallback fiquem visíveis quando as imagens não existem */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 45, 0.45);
  z-index: 0;
}
.hero-slide > * {
  position: relative;
  z-index: 1;
}

/* Slide backgrounds — swap src for real photos
       Gradientes ricos como fallback quando as imagens não existem */
.slide-1 {
  background-image:
    url("assets/slide-medico-1.jpg"),
    linear-gradient(145deg, #0d1b3e 0%, #1a3a6e 50%, #0d3060 100%);
  background-size: cover, cover;
}
.slide-2 {
  background-image:
    url("assets/slide-medico-2.jpg"),
    linear-gradient(145deg, #0a2a2a 0%, #00695c 50%, #004d40 100%);
  background-size: cover, cover;
}
.slide-3 {
  background-image:
    url("assets/slide-estudante.jpg"),
    linear-gradient(145deg, #1a1a40 0%, #1a3a6e 45%, #0d2060 100%);
  background-size: cover, cover;
}
.slide-4 {
  background-image:
    url("assets/slide-comunidade.jpg"),
    linear-gradient(145deg, #0d1b3e 0%, #003d5c 50%, #0a2040 100%);
  background-size: cover, cover;
}

/* Slide content */
.slide-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 184, 169, 0.25);
  border: 1px solid rgba(0, 184, 169, 0.5);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.slide-eyebrow svg {
  flex-shrink: 0;
}
.slide-h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(30px, 8vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.slide-h1 .accent {
  color: var(--teal);
}
.slide-h1 .accent-blue {
  color: #7eb8f7;
}
.slide-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 340px;
  margin-bottom: 24px;
}
.slide-verify {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}
.slide-verify .chip {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
}

/* Slide dots */
/* bottom elevado para não ficar atrás da CTA bar (que agora tem ~120px) */
.slide-dots {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.slide-dot.active {
  width: 22px;
  background: var(--teal);
}

/* ══════════════════════════════════════════════
       FLOATING MOBILE CTA — SUPER DESTAQUE
    ══════════════════════════════════════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  /* padding-bottom generoso: env(safe-area-inset-bottom) cobre o indicador home,
         mas a barra de navegação do iOS Safari tem ~50px e fica SOBRE a página.
         Usamos max() para garantir espaço suficiente em qualquer situação. */
  padding: 14px 16px max(env(safe-area-inset-bottom), 20px);
  /* fallback sólido para iOS que não renderiza backdrop-filter em fixed */
  background: rgb(9, 15, 36);
  background: linear-gradient(
    180deg,
    rgba(9, 15, 36, 0) 0%,
    rgba(9, 15, 36, 0.98) 18px,
    rgba(9, 15, 36, 0.98) 100%
  );
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
/* iOS Safari: a barra inferior do browser (~50px) sobrepõe position:fixed.
       Empurramos o bar para cima com margin-bottom suficiente via @supports */
@supports (-webkit-touch-callout: none) {
  .mobile-cta-bar {
    /* eleva o bar acima da barra de navegação do Safari */
    padding-bottom: max(env(safe-area-inset-bottom), 54px);
  }
}

/* Pulsing ring behind the button */
.cta-pulse-wrap {
  position: relative;
}
.cta-pulse-wrap::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  background: transparent;
  border: 2px solid var(--teal);
  opacity: 0;
  animation: ctaPulse 2.2s ease-out infinite;
}
@keyframes ctaPulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(1.04);
  }
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

.mobile-cta-smart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 0 24px;
  height: 62px;
  border-radius: 18px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.1px;
  background: linear-gradient(90deg, #2155fc 0%, #1640d9 100%);
  box-shadow:
    0 0 0 1px rgba(33, 85, 252, 0.4),
    0 6px 28px rgba(33, 85, 252, 0.55),
    0 12px 40px rgba(33, 85, 252, 0.3);
  transition: all 0.18s;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep */
.mobile-cta-smart::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 60%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  animation: shimmer 2.8s ease-in-out infinite;
}
@keyframes shimmer {
  0%,
  40% {
    left: -100%;
  }
  100% {
    left: 160%;
  }
}

.mobile-cta-smart:active {
  transform: scale(0.975);
  box-shadow: 0 2px 12px rgba(33, 85, 252, 0.4);
}
.mobile-cta-smart .cta-icon {
  flex-shrink: 0;
}
.mobile-cta-smart .cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.mobile-cta-smart .cta-text-main {
  font-size: 16px;
  font-weight: 800;
}
.mobile-cta-smart .cta-text-sub {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.8;
}

.mobile-cta-smart.ios-mode {
  background: linear-gradient(90deg, #1c1c1e 0%, #3a3a3c 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 6px 28px rgba(0, 0, 0, 0.5),
    0 12px 40px rgba(0, 0, 0, 0.3);
}
.mobile-cta-smart.ios-mode::before {
  border-color: rgba(255, 255, 255, 0.3);
}
.mobile-cta-smart.android-mode {
  background: linear-gradient(90deg, #01875f 0%, #00a878 100%);
  box-shadow:
    0 0 0 1px rgba(1, 135, 95, 0.5),
    0 6px 28px rgba(1, 135, 95, 0.55),
    0 12px 40px rgba(1, 135, 95, 0.3);
}

.mobile-cta-sub {
  text-align: center;
  margin-top: 9px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
}
.mobile-cta-sub a {
  color: rgba(255, 255, 255, 0.55);
}
.mobile-cta-sub a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ── DESKTOP HERO ── */
.hero-desktop {
  display: flex;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    #1a3a6e 60%,
    #0a2a5e 100%
  );
  padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-desktop::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(148, 235, 232, 0.18) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.hero-desktop::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(33, 85, 252, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.hero-desktop .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 184, 169, 0.15);
  border: 1px solid rgba(0, 184, 169, 0.3);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-text h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-text h1 .accent {
  color: var(--teal);
}
.hero-text h1 .accent-blue {
  color: #7eb8f7;
}
.hero-text .hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 16px;
}
.hero-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 184, 169, 0.15);
  border: 1px solid rgba(0, 184, 169, 0.4);
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 28px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}
.trust-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  animation: floatY 3s ease-in-out infinite;
}
.float-badge svg {
  flex-shrink: 0;
}
.float-badge .fb-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-lt);
}
.float-badge-1 {
  top: 60px;
  right: -60px;
  animation-delay: 0s;
}
.float-badge-2 {
  bottom: 80px;
  left: -70px;
  animation-delay: 1.5s;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/* ── Phone mockup — iPhone realista ── */
.phone-frame-link {
  display: block;
  text-decoration: none;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1),
    filter 0.4s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.phone-frame-link:hover {
  transform: scale(1.03) translateY(-7px) rotate(-0.8deg);
}

/* Camada externa: anel de metal polido */
.phone-outer {
  padding: 5px;
  border-radius: 58px;
  background: linear-gradient(
    145deg,
    #6e6e72 0%,
    #4a4a4e 15%,
    #3a3a3c 35%,
    #252527 55%,
    #1c1c1e 75%,
    #111113 100%
  );
  box-shadow:
        /* sombra principal */
    0 40px 80px rgba(0, 0, 0, 0.75),
    0 16px 32px rgba(0, 0, 0, 0.5),
    /* realce lateral esquerdo */ -2px 0 12px rgba(255, 255, 255, 0.06),
    /* brilho da borda superior */ 0 -1px 0 rgba(255, 255, 255, 0.22),
    /* anel externo escuro */ 0 0 0 1px rgba(0, 0, 0, 0.9),
    /* reflexo interno do anel */ inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.6);
}
.phone-frame-link:hover .phone-outer {
  box-shadow:
    0 56px 100px rgba(0, 0, 0, 0.8),
    0 20px 40px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(33, 85, 252, 0.18),
    -2px 0 12px rgba(255, 255, 255, 0.06),
    0 -1px 0 rgba(255, 255, 255, 0.22),
    0 0 0 1px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.6);
}

/* Corpo interno do celular — bezel estreito */
.phone-body {
  width: 288px;
  height: 543px;
  background: #0a0a0b;
  border-radius: 52px;
  position: relative;
  padding: 10px;
  box-sizing: border-box;
  overflow: visible;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 2px 4px rgba(255, 255, 255, 0.03);
}

/* Linha de brilho no topo do corpo */
.phone-body::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 36px;
  right: 36px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4) 40%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.4) 60%,
    transparent
  );
  border-radius: 50%;
  z-index: 2;
}

/* Botões laterais */
.ph-btn {
  position: absolute;
  border-radius: 3px;
}
/* Silêncio */
.ph-mute {
  left: -9px;
  top: 88px;
  width: 5px;
  height: 22px;
  background: linear-gradient(to right, #1e1e20, #3c3c3e, #2a2a2c);
  border-radius: 3px 0 0 3px;
  box-shadow:
    -1px 0 2px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
/* Volume + */
.ph-vol-up {
  left: -9px;
  top: 126px;
  width: 5px;
  height: 42px;
  background: linear-gradient(to right, #1e1e20, #3c3c3e, #2a2a2c);
  border-radius: 3px 0 0 3px;
  box-shadow:
    -1px 0 2px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
/* Volume - */
.ph-vol-dn {
  left: -9px;
  top: 180px;
  width: 5px;
  height: 42px;
  background: linear-gradient(to right, #1e1e20, #3c3c3e, #2a2a2c);
  border-radius: 3px 0 0 3px;
  box-shadow:
    -1px 0 2px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
/* Power */
.ph-power {
  right: -9px;
  top: 148px;
  width: 5px;
  height: 78px;
  background: linear-gradient(to left, #1e1e20, #3c3c3e, #2a2a2c);
  border-radius: 0 3px 3px 0;
  box-shadow:
    1px 0 2px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Tela */
.ph-screen-wrap {
  width: 100%;
  height: 100%;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 20px rgba(0, 0, 0, 0.4);
}

/* Dynamic Island — sobre a tela */
.ph-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 32px;
  background: #000;
  border-radius: 24px;
  z-index: 10;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 2px rgba(255, 255, 255, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
}
/* Câmera frontal dentro do Dynamic Island */
.ph-island::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, #0d1f2d, #030608);
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.08),
    inset 0 1px 3px rgba(0, 120, 255, 0.12);
}

/* Reflexo de vidro sobre a tela */
.ph-screen-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(
    175deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 40%,
    transparent 100%
  );
  z-index: 12;
  pointer-events: none;
  border-radius: 42px 42px 0 0;
}

/* Conteúdo da tela */
.phone-screen-video {
  width: 100%;
  height: 100%;
  position: relative;
  background: #fff;
}
.phone-screen-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Home indicator */
.ph-home-bar {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  z-index: 20;
  pointer-events: none;
}

/* End-of-video overlay */
.phone-vid-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(13, 27, 62, 0.88);
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
  text-align: center;
  padding: 24px;
  gap: 14px;
  z-index: 18;
}
.phone-vid-overlay.visible {
  opacity: 1;
}
.phone-vid-overlay .pvo-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  line-height: 1.45;
}
.phone-vid-overlay .pvo-text span {
  color: var(--teal-lt);
}
.phone-vid-overlay .pvo-arrow {
  font-size: 26px;
  animation: floatY 1.2s ease-in-out infinite;
}
/* Keep old class names for backward compat */
.phone-frame {
  display: none;
}
.phone-screen {
  display: none;
}
.ph-status {
  display: none;
}

/* ── STATS ── */
.stats-section {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 184, 169, 0.07) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.stats-section .container {
  position: relative;
  z-index: 1;
}
.stats-header {
  text-align: center;
  margin-bottom: 52px;
}
.stats-header .section-title {
  color: #fff;
}
.stats-header .section-sub {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto;
}
.stats-header .section-label {
  background: rgba(0, 184, 169, 0.15);
  color: var(--teal);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 184, 169, 0.3);
  transform: translateY(-4px);
}
.stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 184, 169, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--teal);
}
.stat-number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

/* ── FEATURES ── */
.features-section {
  padding: 96px 0;
  background: var(--bg-lt);
}
.features-header {
  margin-bottom: 60px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
  border-color: rgba(33, 85, 252, 0.2);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-blue);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  transition: all 0.3s;
}
.feature-card:hover .feature-icon {
  background: var(--blue);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}
.feature-h {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-p {
  font-size: 14px;
  color: var(--text-lt);
  line-height: 1.65;
}

/* ── SPLIT ── */
.split-section {
  padding: 96px 0;
  background: #fff;
}
.split-header {
  text-align: center;
  margin-bottom: 64px;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.split-card {
  border-radius: var(--r-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.split-card.doctors {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
}
.split-card.students {
  background: linear-gradient(135deg, #003d3a 0%, #00504a 100%);
  color: #fff;
}
.split-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.1;
}
.split-card.doctors::before {
  background: var(--blue);
}
.split-card.students::before {
  background: var(--teal);
}
.split-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.doctors .split-icon {
  background: rgba(33, 85, 252, 0.2);
  color: #7eb8f7;
}
.students .split-icon {
  background: rgba(0, 184, 169, 0.2);
  color: var(--teal);
}
.split-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 12px;
}
.split-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.split-card p {
  font-size: 15px;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 28px;
}
.split-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.split-perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  opacity: 0.85;
}
.split-perk-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.doctors .split-perk-icon {
  background: rgba(33, 85, 252, 0.25);
  color: #7eb8f7;
}
.students .split-perk-icon {
  background: rgba(0, 184, 169, 0.25);
  color: var(--teal);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 96px 0;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(33, 85, 252, 0.08),
      transparent 32%
    ),
    radial-gradient(circle at 85% 70%, rgba(0, 184, 169, 0.1), transparent 30%),
    var(--bg-lt);
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 44px;
}
.testimonials-slider {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}
.testimonials-viewport {
  overflow: hidden;
  padding: 14px 4px 18px;
}
.testimonials-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  flex: 0 0 calc((100% - 48px) / 3);
  min-height: 100%;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  right: 22px;
  top: -18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 96px;
  font-weight: 900;
  color: rgba(33, 85, 252, 0.06);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
  border-color: rgba(33, 85, 252, 0.2);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: #f59e0b;
}
.testimonial-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-text .testimonial-readmore {
  display: inline-block;
  margin-left: 4px;
  margin-top: 6px;
  font-size: 14px;
  color: var(--blue);
  font-weight: 700;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
}
.testimonial-text .testimonial-readmore:hover {
  opacity: 0.85;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.t-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 2px 8px rgba(13, 27, 62, 0.12);
}
.t-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}
.t-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.t-role {
  font-size: 12px;
  color: var(--text-lt);
  line-height: 1.4;
}
.t-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 8px;
  margin-top: 2px;
}
.badge-md {
  background: rgba(33, 85, 252, 0.1);
  color: var(--blue);
}
.badge-est {
  background: rgba(0, 184, 169, 0.1);
  color: var(--teal);
}
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.testimonials-nav button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--navy);
}
.testimonials-nav button:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-2px);
}
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;
  transition: all 0.25s;
}
.testimonials-dot.active {
  width: 28px;
  background: var(--blue);
}
@media (max-width: 1024px) {
  .testimonial-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}
@media (max-width: 640px) {
  .testimonials-viewport {
    overflow: visible;
  }
  .testimonials-track {
    gap: 16px;
  }
  .testimonial-card {
    flex-basis: 100%;
    padding: 24px;
  }
  .testimonials-nav {
    margin-top: 20px;
  }
}

/* ── MISSION ── */
.mission-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.mission-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(33, 85, 252, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.mission-section .container {
  position: relative;
  z-index: 1;
}
.mission-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 184, 169, 0.12);
  border: 1px solid rgba(0, 184, 169, 0.25);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.mission-quote {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  max-width: 760px;
  margin: 0 auto 24px;
  letter-spacing: -0.3px;
}
.mission-quote .teal {
  color: var(--teal);
}
.mission-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.mission-pillars {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pillar {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pillar svg {
  flex-shrink: 0;
}

/* ── PARTNERSHIP ── */
.partnership-section {
  padding: 96px 0;
  background: #fff;
}
.partnership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.partnership-text .section-sub {
  margin-bottom: 28px;
}
.partnership-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.partnership-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pp-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-blue);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.pp-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.pp-text p {
  font-size: 13px;
  color: var(--text-lt);
  line-height: 1.5;
}
.partnership-form {
  background: var(--bg-lt);
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1px solid var(--border);
}
.form-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 14px;
  color: var(--text-lt);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(33, 85, 252, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover {
  background: #1a44d4;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(33, 85, 252, 0.35);
}
.form-privacy {
  font-size: 11px;
  color: var(--text-xlt);
  text-align: center;
  margin-top: 12px;
}

/* ── DOWNLOAD CTA ── */
.download-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    #1a3a6e 50%,
    var(--navy) 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 184, 169, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.download-section .container {
  position: relative;
  z-index: 1;
}
.download-section .section-label {
  background: rgba(0, 184, 169, 0.15);
  color: var(--teal);
}
.download-section .section-title {
  color: #fff;
}
.download-section .section-sub {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto 40px;
}
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.app-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.rating-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.rating-item .stars {
  color: #f59e0b;
}
.rating-item strong {
  color: rgba(255, 255, 255, 0.8);
}

/* ── TRUST BAR (no final da página) ── */
.trust-bar {
  background: var(--bg-lt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-bar-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-xlt);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.trust-item:hover {
  opacity: 1;
}
.trust-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  background: var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}
.trust-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}
.trust-sep {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* ── FOOTER ── */
.footer {
  background: #090f24;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 32px;
}
.footer-logo img {
  height: 32px;
  width: auto;
  /* filter: brightness(0) invert(1); */
  margin-bottom: 14px;
}
.footer-logo-fallback {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  display: none;
}
.footer-logo-fallback span {
  color: var(--teal);
}
.footer-brand-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: rgba(255, 255, 255, 0.6);
}
.footer-social:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.45);
  margin-left: 12px;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.footer-inst {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-inst span {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── ANIMATIONS ── */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 {
  transition-delay: 0.1s;
}
.animate-delay-2 {
  transition-delay: 0.2s;
}
.animate-delay-3 {
  transition-delay: 0.3s;
}
.animate-delay-4 {
  transition-delay: 0.4s;
}

/* ══════════════════════════════════════════════════════
       PARCEIROS — banner ticker rotativo
    ══════════════════════════════════════════════════════ */
.partners-section {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.partners-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 0;
}
.partners-section-head .section-label {
  color: var(--teal);
}
.partners-ticker-wrap {
  position: relative;
  overflow: hidden;
  padding: 16px 0 24px;
}
.partners-ticker-wrap::before,
.partners-ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.partners-ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 100%);
}
.partners-ticker-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy) 0%, transparent 100%);
}
.partners-ticker {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: tickerScroll 32s linear infinite;
}
.partners-ticker:hover {
  animation-play-state: paused;
}
@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.partner-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  cursor: default;
}
.partner-accent {
  width: 3px;
  height: 36px;
  border-radius: 3px;
  background: var(--teal);
  flex-shrink: 0;
  opacity: 0.7;
}
.partner-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.partner-acronym {
  font-size: 15px;
  font-weight: 800;
  color: var(--teal-lt);
  letter-spacing: 0.6px;
}
.partner-desc {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.2px;
}

/* ── SEJA UM PARCEIRO ── */
.become-partner-section {
  background: #fff;
  padding: 64px 0;
}
.bp-header {
  text-align: center;
}
.bp-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 6px 24px rgba(13, 27, 62, 0.25);
}
.bp-toggle-btn:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(33, 85, 252, 0.35);
}
.bp-toggle-btn svg {
  transition: transform 0.3s;
}
.bp-toggle-btn.open svg {
  transform: rotate(45deg);
}
.bp-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s;
  opacity: 0;
}
.bp-content.open {
  max-height: 900px;
  opacity: 1;
}
.bp-inner {
  padding: 40px 0 8px;
}
.bp-step-title {
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.bp-step-sub {
  text-align: center;
  font-size: 14px;
  color: var(--text-lt);
  margin-bottom: 28px;
}
.bp-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}
.bp-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 24px;
  border: 2px solid var(--border);
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  transition: all 0.22s;
  text-align: center;
}
.bp-type-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(33, 85, 252, 0.14);
  transform: translateY(-3px);
}
.bp-type-card.selected {
  border-color: var(--blue);
  background: rgba(33, 85, 252, 0.04);
}
.bp-type-icon {
  font-size: 32px;
  line-height: 1;
}
.bp-type-card strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  display: block;
}
.bp-type-card p {
  font-size: 13px;
  color: var(--text-lt);
  line-height: 1.5;
  margin: 0;
}
.bp-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 36px 40px;
  background: var(--bg-lt);
  border-radius: 20px;
  border: 1px solid var(--border);
  margin-top: 28px;
}
.bp-form-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.bp-form-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(33, 85, 252, 0.1);
  border: 1px solid rgba(33, 85, 252, 0.2);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.4px;
}
.bp-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-lt);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.bp-back-btn:hover {
  color: var(--navy);
}
.bp-form-group {
  margin-bottom: 14px;
}
.bp-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 6px;
}
.bp-form-group input,
.bp-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.bp-form-group input:focus,
.bp-form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(33, 85, 252, 0.12);
}
.bp-form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.bp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bp-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(33, 85, 252, 0.35);
}
.bp-submit:hover {
  background: #1a44d4;
  transform: translateY(-1px);
}
.bp-success {
  text-align: center;
  padding: 24px;
}
.bp-success-icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.bp-success h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.bp-success p {
  font-size: 14px;
  color: var(--text-lt);
}

/* ── DÚVIDAS FREQUENTES — FAQ ── */
.faq-section {
  background: var(--bg-lt);
  padding: 64px 0;
}
.faq-header {
  text-align: center;
  margin-bottom: 4px;
}
.faq-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #fff;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(13, 27, 62, 0.08);
}
.faq-toggle-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 8px 24px rgba(33, 85, 252, 0.15);
}
.faq-toggle-btn svg {
  transition: transform 0.3s;
}
.faq-toggle-btn.open svg {
  transform: rotate(45deg);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s;
  opacity: 0;
}
.faq-content.open {
  max-height: 4000px;
  opacity: 1;
}
.faq-list {
  max-width: 720px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background 0.2s;
}
.faq-q:hover {
  background: rgba(33, 85, 252, 0.03);
}
.faq-q .faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    background 0.2s;
}
.faq-item.open .faq-q .faq-chevron {
  transform: rotate(180deg);
  background: var(--blue);
  color: #fff;
}
.faq-item.open .faq-q {
  background: rgba(33, 85, 252, 0.04);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 24px 20px;
}
.faq-empty {
  text-align: center;
  padding: 40px;
  color: var(--text-lt);
  font-size: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .hero-mobile {
    display: block;
  }
  .hero-desktop {
    display: none;
  }
  .mobile-cta-bar {
    display: block;
  }
  .nav-links,
  .nav-badge {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .navbar.open .nav-links {
    display: flex;
  }
  .navbar.open .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 18px;
    padding: 22px 24px 20px;
    background: rgba(7, 21, 52, 0.98);
    border-radius: 18px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
    display: flex;
    z-index: 1000;
  }
  .navbar.open .nav-links a {
    display: block;
    width: 100%;
    color: rgba(255, 255, 255, 0.95);
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .hamburger span {
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }
  .features-section,
  .split-section,
  .stats-section,
  .testimonials-section,
  .mission-section,
  .become-partner-section,
  .faq-section,
  .download-section {
    padding: 48px 0;
  }
  .features-grid,
  .split-grid,
  .partnership-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .split-card {
    padding: 36px 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
  .bp-type-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .bp-form-wrap {
    padding: 28px 20px;
    margin: 16px 16px 0;
  }
  .bp-form-row {
    grid-template-columns: 1fr;
  }
  body {
    padding-bottom: 0;
  }
  .footer {
    padding-bottom: 100px;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .bp-toggle-btn,
  .faq-toggle-btn {
    padding: 14px 24px;
    font-size: 15px;
  }
}
