:root {
  /* BRANDING - NEW MANUAL */
  --primary-blue: #1A73E8;
  --primary-hover: #1557B0;
  --accent-ai: linear-gradient(95deg, #4285f4 0%, #9b72cb 50%, #d96570 100%);

  /* NEUTROS & FUNDOS */
  --bg-page: #FFFFFF;
  --bg-surface: #F8F9FA;
  --border-subtle: #DADCE0;

  /* TEXTO */
  --text-main: #202124;
  --text-body: #3C4043;
  --text-muted: #5F6368;

  /* SHAPES */
  --radius-pill: 999px;
  --radius-card: 24px;

  /* SHADOWS - GOOGLE STYLE */
  --shadow-subtle: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  --shadow-card: 0 4px 8px 3px rgba(60, 64, 67, 0.15);
  --shadow-hover: 0 8px 12px 6px rgba(60, 64, 67, 0.15);

  /* LEGACY MAPPINGS (for backward compatibility) */
  --bg: var(--bg-page);
  --text: var(--text-main);
  --muted: var(--text-muted);
  --primary: var(--primary-blue);
  --card: #ffffff;
  --radius: var(--radius-card);
  --shadow: var(--shadow-subtle);
  --shadow-2: var(--shadow-hover);

  /* KEEPING SOME EXISTING VARS BUT UPDATED */
  --green: #188038;
  /* Steto/Google Green */
  --green-bg: #e6f4ea;
  --green-br: #ceead6;
  --yellow: #f59e0b;
  --purple: #a142f4;
  /* Adjusted to match Gemini feel if needed */

  --steto-green: #188038;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif
}

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

img {
  max-width: 100%;
  display: block
}

.gold {
  color: #d4af37;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto
}

.container-footer {
  width: min(1160px, 92%);
  margin: 0 auto 100px auto
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .90);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--border-subtle)
}

.offers-band {
  background: var(--bg-surface);
  padding: 5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 0;
  gap: 1rem
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  font-weight: 300;
}

.nav-links a {
  color: var(--muted);
  padding: .35rem .6rem;
  border-radius: 999px;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary);
  background: rgba(11, 39, 74, .08);
}

.nav-links a.is-active {
  color: var(--primary);
  background: rgba(11, 39, 74, .14);
  box-shadow: inset 0 0 0 1px rgba(11, 39, 74, .12);
}

.nav-links a:focus-visible {
  outline: 2px solid rgba(11, 39, 74, .2);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .nav {
    flex-wrap: wrap;
    gap: .75rem;
  }

  .nav-right {
    width: 100%;
    justify-content: center;
  }
}

.logo {
  height: 32px;
  width: auto;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
  filter: brightness(1.05);
}

.btn,
.btn-baixar {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--primary-blue);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  /* Google uses lighter weights */
  box-shadow: none;
  /* Manual: Sem sombra no estado normal */
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease
}

.btn,
.btn-light,
.btn-premium,
.btn-baixar,
.dl-btn {
  outline-offset: 2px;
}

.btn:hover,
.btn-baixar:hover {
  transform: translateY(-1px);
  background: var(--primary-hover);
  box-shadow: var(--shadow-hover)
}

.btn-light {
  background: #fff;
  color: var(--primary);
  border: 1px solid #e6ecf5;
  border-radius: 999px;
  padding: .6rem .9rem;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease
}

.btn-light:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow)
}

.btn:focus-visible,
.btn-light:focus-visible,
.btn-premium:focus-visible,
.btn-baixar:focus-visible,
.dl-btn:focus-visible {
  outline: 3px solid #2d6cdf55;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 39, 74, .18);
  font-weight: 700;
  color: var(--primary);
  background: rgba(255, 255, 255, .9);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(11, 39, 74, .28);
  box-shadow: 0 18px 32px rgba(11, 39, 74, .18);
}

.btn-outline:focus-visible {
  outline: 2px solid rgba(33, 82, 255, .35);
  outline-offset: 3px;
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-transform: none;
  /* Google style isn't usually all caps */
  letter-spacing: normal;
  background: var(--accent-ai);
  color: #fff;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.4);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  border: none;
}

.btn-premium:hover,
.btn-premium:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 38px 72px rgba(236, 72, 153, .45);
  filter: brightness(1.05);
}

.btn-premium:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .55);
  outline-offset: 3px;
}

.clinic-cta {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .8rem;
}

.clinic-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.clinic-link span {
  color: var(--primary);
  font-size: 1.2em;
  transition: transform .2s ease;
}

.clinic-link:hover span {
  transform: translateX(4px);
}

.patient-app-callout {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .95rem 1.1rem;
  background: rgba(33, 82, 255, .08);
  border: 1px solid rgba(33, 82, 255, .18);
  border-radius: 18px;
  color: var(--primary);
  width: min(100%, 420px);
}

.patient-app-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 1.2rem;
}

.patient-app-callout strong {
  display: block;
  font-size: 1rem;
  color: #12386f;
}

.patient-app-callout p {
  margin: .2rem 0 0;
  color: #0b274a;
  font-size: .95rem;
  line-height: 1.6;
}

@media (max-width: 640px) {

  .clinic-cta,
  .clinic-link,
  .clinic-cta .patient-app-callout,
  .patient-app-callout {
    width: 100%;
  }

  .clinic-link {
    justify-content: center;
    text-align: center;
  }
}

.cross-platform-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(11, 39, 74, .08);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid;
  gap: clamp(1.2rem, 3vw, 1.8rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.cross-platform-copy h2 {
  margin: .3rem 0 .5rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.cross-platform-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.cross-platform-pill {
  border-color: rgba(59, 130, 246, .25);
  background: rgba(59, 130, 246, .12);
  color: #1d4ed8;
  margin-bottom: .8rem;
}

.cross-platform-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .75rem;
}

.cross-platform-list li {
  background: rgba(11, 39, 74, .04);
  border-radius: 16px;
  padding: .85rem 1rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

.cross-platform-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: .6rem;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  flex-shrink: 0;
}

.cross-platform-list li {
  display: flex;
  align-items: center;
}

.btn-baixar {
  display: none;
}

.nav .btn-baixar {
  display: none;
}

/* utilitários de visibilidade */
.only-desktop {
  display: none;
}

.only-mobile {
  display: inline-flex;
}

@media (min-width: 960px) {
  .btn-baixar {
    display: inline-flex
  }

  .only-desktop {
    display: inline-flex;
  }

  .nav .btn-baixar {
    display: inline-flex;
  }

  .only-mobile {
    display: none;
  }

  .nav-right {
    justify-content: flex-end;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .8rem;
  border: 1px solid var(--green-br);
  background: var(--green-bg);
  color: #065f46
}

.pill-hero {
  border-color: #d9eaff;
  background: #e9f4ff;
  color: #0a58ca;
  margin: 0 0 1.2rem -.3rem;
}

.top-pill {
  margin-bottom: 30px;
}

@media (min-width: 960px) {
  .top-pill {
    margin-bottom: 9rem;
  }
}

.gradient-text,
.gradient-text-blue {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.gradient-text {
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  /* Pleasant Blue Gradient */
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block
}

.gradient-text-blue {
  background: linear-gradient(90deg, #0ea5e9, #6366f1);
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block
}

/* HERO */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: center;
  padding: 0.5rem 0 1rem;
}

.hero>* {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.05;
  margin: .2rem 0 .6rem;
  letter-spacing: -.02em
}

.hero p.lead {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: var(--muted);
  max-width: 42ch
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  min-width: 160px;
}

.btn-store svg {
  width: 20px;
  height: 20px;
}

.btn-ios {
  background-color: #334155;
  color: #fff;
  border: 1px solid transparent;
}

.btn-ios:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-android {
  background-color: transparent;
  color: #334155;
  border: 1px solid #334155;
}

.btn-android:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* CLINIC PAGE */
.clinic-page header {
  position: sticky;
}

.clinic-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 3.8rem 0 2.6rem;
}

.clinic-hero::before,
.clinic-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  opacity: .25;
  z-index: 0;
}

.clinic-hero::before {
  background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, .55), rgba(124, 58, 237, 0));
  top: -160px;
  left: -200px;
}

.clinic-hero::after {
  background: radial-gradient(circle at 70% 40%, rgba(37, 99, 235, .45), rgba(37, 99, 235, 0));
  top: 60px;
  right: -220px;
}

.clinic-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
  z-index: 1;
}

.clinic-hero-content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.clinic-hero-content h1,
.clinic-hero-content h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  margin: 0;
}

.clinic-hero-content p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.clinic-pill {
  border-color: rgba(11, 39, 74, .15);
  background: rgba(255, 255, 255, .8);
  color: var(--primary);
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-hint {
  font-size: .95rem;
  color: var(--muted);
  max-width: 56ch;
}

.mac-device {
  width: min(820px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  /* filter: drop-shadow(0 18px 45px rgba(15, 38, 80, .16)); REMOVED */
  transform: scale(0.95) translateY(20px);
  opacity: 0.8;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease;
  will-change: transform, opacity;
}

.mac-device.scaled {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.mac-lid {
  width: 100%;
  border-radius: 30px;
  padding: 3px 10px 10px;
  background: linear-gradient(145deg, rgba(15, 28, 56, .92), rgba(15, 28, 56, .75));
  position: relative;
}

.mac-camera {
  display: block;
  width: 64px;
  height: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .24);
  margin: 5px auto 5px;
}

.mac-screen {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 0.5px solid rgba(255, 255, 255, .08);
  background: #f5f5f5;
}

.mac-screen .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.mac-screen .slide.active {
  opacity: 1;
  position: relative;
}

.mac-hinge {
  width: 86%;
  height: 6px;
  background: linear-gradient(90deg, rgba(180, 190, 210, .85), rgba(220, 230, 245, .85));
  border-radius: 99px;
}

.mac-base {
  width: 92%;
  height: 12px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(178, 190, 212, .6), rgba(214, 222, 237, .9));
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, .35);
}

.clinic-benefits {
  padding: 2rem 0 3rem;
  position: relative;
}

.clinic-benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, 86%);
  height: 100%;
  background: radial-gradient(circle at top, rgba(37, 99, 235, .08), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: .6rem;
}

.section-title p {
  color: var(--muted);
  font-size: 1.05rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.benefit-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(124, 58, 237, .08));
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card h3 {
  margin-top: 0;
  margin-bottom: .8rem;
  font-size: 1.25rem;
}

.benefit-card p {
  color: var(--muted);
}

/* Diferenciais (Clean UI) */
.offers-band {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
  color: var(--text-main);
  border-radius: 32px;
  padding: clamp(3rem, 6vw, 5rem) 0;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  border: 1px solid var(--border-subtle);
}

.offers-inner {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  z-index: 1;
}

.offers-copy h2 {
  margin-top: .4rem;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--text-main);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.offers-copy p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 580px;
  line-height: 1.6;
}

.offers-pill {
  border-color: rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.05);
  color: var(--primary-blue);
  font-weight: 600;
}

.offers-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.offer-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  border-color: rgba(37, 99, 235, 0.1);
}

.offer-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.offer-icon i {
  width: 24px;
  height: 24px;
}

.ecosystem .consult-banner {
  margin-top: clamp(1rem, 2.2vw, 1.8rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(.85rem, 1.8vw, 1.5rem);
  padding: clamp(1rem, 2.2vw, 1.6rem) clamp(1.2rem, 3vw, 2.2rem);
  border-radius: 18px;
  border: 1px solid rgba(11, 39, 74, .08);
  background: linear-gradient(135deg, rgba(233, 243, 255, .9), rgba(206, 230, 255, .7));
  box-shadow: 0 12px 28px rgba(15, 76, 153, .14);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.consult-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, .18);
  color: #1d4ed8;
  flex: 0 0 auto;
}

.consult-banner-copy {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.consult-banner-copy h3 {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.4rem);
}

.consult-banner-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.consult-banner-link {
  font-weight: 700;
  color: #0b274a;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
}

.consult-banner:hover,
.consult-banner:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(11, 39, 74, .18);
  box-shadow: 0 24px 42px rgba(15, 76, 153, .18);
}

.consult-banner:focus-visible {
  outline: 2px solid rgba(33, 82, 255, .4);
  outline-offset: 3px;
}

.offer-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.offer-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Removed duplicate .offer-icon definition as it is defined above with the card styles */

[data-eco].ecosystem,
[data-eco].ecosystem * {
  box-sizing: border-box;
}

[data-eco].ecosystem .ecosystem-header {
  text-align: left;
  margin-bottom: 3rem;
  max-width: 800px;
}

[data-eco].ecosystem .ecosystem-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #111827;
  margin-bottom: 1rem;
}

[data-eco].ecosystem .ecosystem-header p {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.6;
}

[data-eco].ecosystem .ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

[data-eco].ecosystem .ecosystem-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(11, 39, 74, .05);
  border-radius: 24px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}

[data-eco].ecosystem .ecosystem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
}

[data-eco].ecosystem .ecosystem-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #93c5fd;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

[data-eco].ecosystem .ecosystem-card .icon svg {
  width: 28px;
  height: 28px;
  stroke: #2563eb;
}

[data-eco].ecosystem .ecosystem-card h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  color: #111827;
  font-weight: 700;
}

[data-eco].ecosystem .ecosystem-card p {
  margin: 0 0 2.5rem;
  color: #4b5563;
  line-height: 1.6;
  font-size: 1rem;
  flex-grow: 1;
}

.btn-card-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  background-color: #1d4ed8;
  color: #fff;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s;
  border: none;
  gap: 0.5rem;
}

.btn-card-primary:hover {
  background-color: #1e40af;
}

.btn-card-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background-color: transparent;
  color: #374151;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
}

.btn-card-outline:hover {
  border-color: #9ca3af;
  background-color: #f9fafb;
}

.proof-card {
  background: linear-gradient(135deg, rgba(18, 56, 111, .95), #0b274a);
  color: #fff;
  border-radius: 24px;
  padding: 2.4rem;
  box-shadow: var(--shadow-2);
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}

.proof-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(37, 99, 235, .22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #bfdbfe;
}

.proof-card h2,
.proof-card h3 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
}

.proof-card ul {
  padding-left: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.proof-card li {
  margin-bottom: .8rem;
  line-height: 1.6;
}

.pricing {
  position: relative;
  overflow: hidden;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.pricing>* {
  position: relative;
  z-index: 1;
}

.pricing-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2rem, 4vw, 2.6rem);
}

.pricing-pill {
  border-color: #bbf7d0;
  background: #ecfdf5;
  color: var(--steto-green-700);
}

.pricing-table {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border-radius: 22px;
  padding: clamp(1.8rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 39, 74, .08);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pricing-card.highlight {
  background: linear-gradient(135deg, rgba(236, 253, 245, .95), #ffffff);
  color: inherit;
  box-shadow: 0 18px 42px rgba(22, 163, 74, .15);
  border: 1px solid rgba(34, 197, 94, .45);
  position: relative;
  overflow: hidden;
}

.pricing-card.highlight::after {
  content: none;
}

.pricing-card-head h3 {
  margin: 0;
  font-size: 1.45rem;
}

.pricing-card-head .pricing-price {
  margin: .6rem 0 0;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .45rem;
}

.pricing-card-head .pricing-price strong {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
}

.pricing-price-old {
  position: relative;
  font-size: .95rem;
  color: rgba(11, 39, 74, .55);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.pricing-note {
  margin: .35rem 0 0;
  color: var(--muted);
  font-weight: 500;
}

.pricing-subtitle {
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
}

.pricing-card.highlight .pricing-price {
  color: var(--muted);
}

.pricing-card.highlight .pricing-note {
  color: var(--steto-green-700);
}

.pricing-card.highlight .pricing-subtitle {
  color: var(--muted);
}

.pricing-card.highlight .pricing-price strong {
  color: var(--steto-green);
}

.pricing-card.highlight .pricing-price-old {
  color: rgba(22, 163, 74, .55);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: #dcfce7;
  border: 1px solid #86efac;
  color: var(--steto-green-700);
  font-size: .8rem;
  font-weight: 600;
  margin-top: .6rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .75rem;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-weight: 600;
  color: inherit;
}

.pricing-list i[data-lucide] {
  color: var(--steto-green);
}

.pricing-item-text {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  line-height: 1.5;
}

.pricing-item-title {
  font-weight: 700;
}

.pricing-item-text small {
  font-size: .85rem;
}

.pricing-card:not(.highlight) .pricing-item-text small {
  color: var(--muted);
}

.pricing-card.highlight .pricing-item-text small {
  color: var(--muted);
}

.pricing-card.highlight .pricing-list i[data-lucide] {
  color: var(--steto-green);
}

.pricing-card .btn-outline,
.pricing-card .btn-premium {
  margin-top: auto;
}

.pricing-card.highlight .pricing-list li {
  color: var(--primary);
}

@media (min-width: 960px) {
  .offers-inner {
    grid-template-columns: minmax(0, 340px) 1fr;
    align-items: center;
  }

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

  .proof-card {
    padding: clamp(2.4rem, 4vw, 3rem);
  }

  .pricing-table {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media (max-width: 720px) {
  .offers-band {
    border-radius: 22px;
    padding: 3rem 0;
  }

  .ecosystem .consult-banner {
    grid-template-columns: 1fr;
    justify-items: flex-start;
    text-align: left;
  }

  .consult-banner-link {
    justify-self: flex-start;
  }
}

/* Cleaning up Clinic Hero Background */
.clinic-hero::before,
.clinic-hero::after {
  content: none;
  display: none;
}

.clinic-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

/* Plug & Play Section */
/* Plug & Play Section */
.clinic-proof {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  /* Separated from hero */
  position: relative;
  z-index: 10;
  max-width: 1000px;
}

@media (min-width: 800px) {
  .clinic-proof {
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
  }
}

.clinic-proof::before {
  content: none;
  /* Remove blob */
}

.proof-card,
.proof-highlight {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  /* Premium shadow */
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.proof-card h3,
.proof-highlight h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
  letter-spacing: -0.02em;
}

.proof-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-icon i {
  width: 28px;
  height: 28px;
}

.proof-card ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.proof-card li {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

.proof-card li strong {
  display: block;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

/* Highlight Box */
.proof-highlight {
  background: linear-gradient(145deg, #fff, #f8fafc);
  border-color: rgba(37, 99, 235, 0.1);
  justify-content: space-between;
}

.proof-highlight p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.proof-highlight .btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

.clinic-final-cta {
  padding: 4.2rem 0;
  background: linear-gradient(135deg, rgba(11, 39, 74, .92), rgba(15, 76, 153, .85));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.clinic-final-cta::before,
.clinic-final-cta::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  opacity: .35;
}

.clinic-final-cta::before {
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(124, 58, 237, .45), transparent 65%);
}

.clinic-final-cta::after {
  bottom: -200px;
  right: -160px;
  background: radial-gradient(circle, rgba(37, 99, 235, .5), transparent 65%);
}

.final-cta-card {
  text-align: center;
  background: rgba(255, 255, 255, .06);
  padding: clamp(2rem, 4vw, 2.8rem);
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .18);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .18);
}

.final-cta-card h2 {
  color: #fff;
}

.final-cta-card p {
  color: rgba(255, 255, 255, .9);
}

.clinic-final-cta .contact-hint {
  color: rgba(255, 255, 255, .75);
}

.clinic-founders {
  padding: 3rem 0 3.8rem;
  position: relative;
  overflow: hidden;
}

.clinic-founders::before,
.clinic-founders::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  opacity: .18;
  z-index: 0;
}

.clinic-founders::before {
  top: -160px;
  right: -140px;
  background: radial-gradient(circle, rgba(37, 99, 235, .35), transparent 70%);
}

.clinic-founders::after {
  bottom: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(124, 58, 237, .3), transparent 70%);
}

.clinic-founders-card {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(11, 39, 74, .08);
  box-shadow: 0 25px 55px rgba(11, 39, 74, .12);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.8rem);
  position: relative;
  z-index: 1;
}

.clinic-founders-copy h2 {
  margin: 0 0 .6rem;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.clinic-founders-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.clinic-founders-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.clinic-founders-content .photo {
  width: min(280px, 58vw);
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(11, 39, 74, .16);
}

.clinic-founders-content .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clinic-founders-content .story {
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

.clinic-founders-content .story p {
  margin: 0;
}

.clinic-founders .chevron-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  background: rgba(11, 39, 74, .08);
  color: var(--primary);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.clinic-founders .chevron-btn:hover {
  transform: translateY(-2px);
  background: rgba(11, 39, 74, .15);
}

.cta-bar {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 92%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  background: var(--steto-blue-900);
  color: #fff;
  padding: 1.4rem;
  border-radius: 16px;
  box-shadow: var(--steto-shadow-2);
  z-index: 60;
}

.cta-bar-content {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.cta-bar-title {
  margin: 0;
  font-weight: 800;
}

.cta-bar-subtitle {
  margin: 0;
  font-size: .85rem;
  opacity: .85;
}

.cta-bar-actions {
  display: flex;
  gap: .6rem;
}

@media (max-width: 720px) {
  .cta-bar {
    width: auto;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    padding: 0.6rem 0.6rem 0.6rem 1.2rem;
    /* Left padding for text, others tight */
    border-radius: 999px;
    background: rgba(11, 39, 74, 0.85);
    /* Semi-transparent dark */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .cta-bar-content {
    /* Setup to hide title/subtitle and show custom text via pseudo if needed, 
        but let's try to just hide content and keep it minimal or show a label */
    display: none;
    /* Actually, let's keep it visible but simplified: "Instalar Steto" */
  }

  /* Inject "Instalar Steto" text for mobile */
  .cta-bar::before {
    content: "Instalar App";
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .cta-bar-actions {
    width: auto;
  }

  .cta-bar-actions .btn-light {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    height: auto;
    min-height: 0;
  }
}

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

.footer {
  padding: 2.5rem 0 2rem;
  text-align: center;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer-top {
  display: flex;
  gap: .8rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  gap: .6rem;
  align-items: center;
}

.footer-note {
  margin-top: .6rem;
  font-size: .85rem;
  color: var(--muted);
}

#footer-logo {
  height: 20px;
  width: auto;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(11, 39, 74, .35);
  padding: 1.5rem;
  backdrop-filter: blur(3px);
  z-index: 100;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
}

.modal-dialog {
  position: relative;
  background: #fff;
  border-radius: 24px;
  max-width: 540px;
  width: min(540px, 100%);
  box-shadow: var(--shadow-2);
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--muted);
}

.modal-content {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-form-wrapper {
  overflow: visible;
}

.modal-head {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.modal-head h2 {
  margin: 0;
  font-size: 1.8rem;
}

.modal-head p {
  color: var(--muted);
  margin: 0;
}

.modal-form {
  display: grid;
  gap: .9rem;
}

.modal-form label {
  font-weight: 600;
}

.modal-form input,
.modal-form textarea {
  border: 1px solid rgba(11, 39, 74, .16);
  border-radius: 12px;
  padding: .75rem 1rem;
  font: inherit;
  resize: vertical;
}

.modal-form input:focus,
.modal-form textarea:focus {
  outline: 2px solid rgba(18, 86, 200, .35);
  border-color: transparent;
}

.modal-form button {
  justify-content: center;
  margin-top: .6rem;
}

.modal-content--center {
  align-items: center;
  text-align: center;
  gap: 1.4rem;
}

.modal-content--center p {
  color: var(--muted);
  margin: 0;
  max-width: 36ch;
}

.modal-content--center .btn {
  min-width: 180px;
  justify-content: center;
}

.modal-open {
  overflow: hidden;
}

.optional {
  font-weight: 500;
  color: var(--muted);
}

@media (max-width: 720px) {

  .clinic-hero::before,
  .clinic-hero::after {
    width: 300px;
    height: 300px;
  }

  .clinic-founders-card {
    text-align: center;
  }

  .clinic-founders .chevron-btn {
    margin: 0;
  }

  .clinic-founders-content .story {
    padding-top: .6rem;
  }

  .clinic-founders-content .photo {
    width: min(240px, 70vw);
  }
}

@media (min-width: 960px) {
  .clinic-hero {
    padding: 4.5rem 0 3.5rem;
  }

  .clinic-proof {
    grid-template-columns: 1.5fr 1fr;
    align-items: stretch;
  }

  .clinic-hero-inner {
    gap: 3.4rem;
  }

  .clinic-founders-content .story {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .cross-platform-card {
    padding: 1.4rem;
  }

  .cross-platform-list li {
    align-items: flex-start;
  }

  #founder-prev {
    order: 0;
  }

  .clinic-founders-content .photo {
    order: 1;
  }

  #founder-next {
    order: 2;
  }

  .clinic-founders-content .story {
    order: 3;
  }
}

@media (max-width: 520px) {
  .modal-content {
    padding: 2rem 1.4rem 1.6rem;
  }

  .modal-close {
    top: .6rem;
    right: .6rem;
  }
}

/* HERO IMAGE REPLACEMENT */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  perspective: 1000px;
}

.hero-app-image {
  width: min(480px, 92%);
  /* Increased from 340px */
  border-radius: 36px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(1.1);
  /* Starts BIG */
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s ease-out;
  will-change: transform, opacity;
}

.hero-app-image.shrunk {
  transform: scale(1);
  /* Shrinks to normal */
  opacity: 1;
}

@media (min-width: 960px) {
  .hero-app-image {
    width: 520px;
    /* Increased from 360px coverage */
    margin: 0;
  }
}

/* SECTIONS */
.section {
  padding: 2.6rem 0 2.2rem
}

.section h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin: 0 0 .9rem;
  background: linear-gradient(90deg, #0b274a, #000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid #e7edf6;
  box-shadow: var(--shadow)
}

.features .feat {
  display: flex;
  gap: .8rem;
  align-items: flex-start
}

.features .icon {
  width: 45px;
  height: 45px;
  margin: .5rem 0;
  min-width: 36px;
  min-height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eff6ff;
  color: #0a58ca;
  flex: 0 0 auto
}

/* KPIs (Diferenciais) */
.kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem
}

.kpi {
  --kpi-grad: linear-gradient(135deg, #7c3aed, #a78bfa);
  position: relative;
  display: flex;
  align-items: center;
  gap: .8rem;
  background: #fff;
  border: 1px solid #e6ecf5;
  border-radius: 14px;
  padding: .95rem;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease, box-shadow .2s ease, color .2s ease;
  overflow: hidden;
}

.kpi.in {
  transform: none;
  opacity: 1
}

.kpi .ico {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--kpi-grad);
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
  transition: transform .3s ease;
}

.kpi::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  opacity: 0;
  pointer-events: none;
  background: var(--kpi-grad);
  transition: opacity .35s ease;
}

.kpi:hover::after,
.kpi.active::after {
  opacity: 0.14;
}

.kpi:hover,
.kpi.active {
  box-shadow: 0 18px 50px rgba(0, 0, 0, .15);
}

.kpi:hover .ico,
.kpi.active .ico {
  transform: scale(1.07);
}

.kpi .title {
  font-weight: 800
}

.kpi .hint {
  color: #6b7a93;
  font-size: .92rem
}

/* Steps (Como usar) */

/* How It Works (Timeline) */
.howto {
  padding: 5rem 0;
}

.howto-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.howto-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.howto-header p {
  font-size: 1.15rem;
  color: var(--muted);
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  margin-bottom: 3rem;
}

@media (min-width: 800px) {
  .steps-timeline {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
  }
}

.timeline-step {
  flex: 1;
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  /* Clean shadow */
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-5px);
}

.timeline-step.highlight-step {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 12px 32px -8px rgba(37, 99, 235, 0.15);
}

.step-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon i {
  width: 28px;
  height: 28px;
}

.timeline-step h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--text-main);
  font-weight: 700;
}

.timeline-step p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.timeline-connector {
  display: none;
}

@media (min-width: 800px) {
  .timeline-connector {
    display: block;
    flex: 0 0 40px;
    height: 2px;
    background: #e2e8f0;
    margin-top: 2.8rem;
    /* Align with center of icon roughly */
    position: relative;
  }
}

.howto-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.trial-note {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Social proof */

/* Community Card */
.community-wrapper {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.community-card {
  background: #f8fafc;
  /* Discrete light background */
  border-radius: 24px;
  padding: clamp(2rem, 3vw, 2.5rem);
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
  border: 1px dashed rgba(11, 39, 74, 0.15);
  /* Subtle border */
  box-shadow: none;
  /* Removed heavy shadow */
}

/* Removed the flashy blob before */
.community-card::before {
  content: none;
}

.community-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.avatar-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #e2e8f0;
  margin-left: -10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.avatar-ring:first-child {
  margin-left: 0;
  z-index: 4;
}

.avatar-ring:nth-child(2) {
  z-index: 3;
}

.avatar-ring:nth-child(3) {
  z-index: 2;
}

.avatar-ring:nth-child(4) {
  z-index: 1;
}

.avatar-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-avatar {
  background: #fff;
  color: #64748b;
}

.avatar-count {
  margin-left: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
}

.community-content h3 {
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--text-main);
}

.community-content p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.5;
}

.btn-white {
  background: #fff;
  color: var(--text-main);
  font-weight: 500;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--primary-blue);
}

.community::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08)
}

.community::before {
  top: -20px;
  left: -20px
}

.community::after {
  bottom: -20px;
  right: -20px
}

.community .big {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 800
}


.community .avatars {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  z-index: 1
}

.community .avatar-quote {
  display: flex;
  align-items: center;
  gap: .5rem
}

.community .avatar-quote img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: float 4s ease-in-out infinite
}

.community .avatar-quote:nth-child(2) img {
  animation-delay: 1s
}

.community .avatar-quote:nth-child(3) img {
  animation-delay: 2s
}

.community .avatar-quote .quote {
  font-size: .85rem;
  font-style: italic;
  max-width: 180px
}

.community .text {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  z-index: 1
}

.community .divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, .3);
  z-index: 1
}

.community .founders {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.community .founders .photo {
  position: relative;
  flex: 0 0 auto;
}

.community .founders .photo img {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
}

.community .founders .chevron-btn {
  background: rgba(0, 0, 0, .5);
  border: none;
  border-radius: 50%;
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.community .founders .chevron-btn:hover {
  background: rgba(0, 0, 0, .7);
}

.community .founders .story {
  flex: 1;
}

.community .founders .story p {
  font-style: italic;
}

@media (max-width: 480px) {
  .community .founders {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .community .founders #founder-prev {
    order: 0;
  }

  .community .founders .photo {
    order: 1;
  }

  .community .founders #founder-next {
    order: 2;
  }

  .community .founders .story {
    order: 3;
    flex-basis: 100%;
    margin-top: .6rem;
  }
}


@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

.testi-grid {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding: 1rem;
  scroll-snap-type: x mandatory
}

.testi-grid::-webkit-scrollbar {
  display: none
}

.testi {
  background: #fff;
  border: 1px solid #e6ecf5;
  border-radius: 16px;
  padding: 1rem;
  flex: 0 0 260px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.testi .header {
  display: flex;
  align-items: center;
  gap: .8rem
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover
}

.stars {
  display: flex;
  gap: .1rem
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: #fbbf24
}

.name {
  font-weight: 700
}

/* FAQ */
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq details p {
  margin-top: .8rem;
  color: #6b7a93
}

.faq .chevron {
  transition: transform .3s ease
}

.faq details[open] .chevron {
  transform: rotate(180deg)
}

footer {
  padding: 2rem 0;
  color: #5a6a83;
  font-size: .9rem
}

/* QR Popover - versão mais 3D e mais quadrada */
.qr-popover {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}

.qr-popover .qr-card {
  position: fixed;
  left: 0;
  top: 0;
  transform: translate(-50%, -110%);
  min-width: 248px;
  max-width: 280px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid #dbe5f3;
  border-radius: 12px;
  box-shadow:
    0 22px 50px rgba(9, 20, 40, .28),
    0 6px 16px rgba(9, 20, 40, .14),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  padding: .9rem;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  pointer-events: auto;
}

.qr-popover .qr-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(120px 60px at 50% 0%, rgba(255, 255, 255, .65), transparent 60%);
  pointer-events: none;
}

.qr-popover .qr-card.show {
  display: flex;
}

.qr-popover img {
  width: 168px;
  height: 168px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(11, 39, 74, .12);
  border: 1px solid #edf2fb;
}

.qr-title {
  font-weight: 800;
  font-size: 1rem;
  color: #0b274a;
  text-align: center;
}

.qr-caption {
  font-weight: 600;
  font-size: .9rem;
  text-align: center;
  color: #41526b;
}

/* Pequeno triângulo apontando para o botão */
.qr-popover .qr-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid #dbe5f3;
  border-bottom: 1px solid #dbe5f3;
  box-shadow: 0 8px 20px rgba(11, 39, 74, .12);
  transform-origin: center;
  rotate: 45deg;
}

/* base */
html {
  scroll-behavior: smooth
}

/* Responsive */
@media (min-width:960px) {
  .hero {
    grid-template-columns: 1.05fr .95fr;
    gap: 3.2rem
  }

  .hero-visual {
    justify-self: end
  }

  .kpis {
    grid-template-columns: repeat(4, 1fr)
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* Acessibilidade: reduz movimento */
@media (prefers-reduced-motion: reduce) {

  .carousel .slide,
  .kpi,
  .kpi::after,
  .kpi .ico,
  .step-n,
  .btn,
  .btn-light {
    transition: none
  }
}

.patient-app-highlight {
  display: grid;
}

.patient-app-highlight-card {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: 28px;
  background: radial-gradient(circle at top right, rgba(92, 152, 255, .22), rgba(33, 82, 255, .08) 55%), #f6f9ff;
  border: 1px solid rgba(33, 82, 255, .12);
  box-shadow: 0 40px 65px -45px rgba(10, 39, 84, .6);
}

.patient-app-highlight-icon {
  width: clamp(70px, 12vw, 120px);
  height: clamp(70px, 12vw, 120px);
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: linear-gradient(135deg, #2152ff, #5b7cfa);
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3rem);
  box-shadow: 0 25px 35px -18px rgba(33, 82, 255, .55);
}

.patient-app-highlight-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: .4rem 0 .8rem;
}

.patient-app-highlight-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #0b274a;
  margin-bottom: 1rem;
}

.patient-app-pill {
  background: rgba(33, 82, 255, .12);
  color: #12386f;
}

.patient-app-highlight-list {
  display: grid;
  gap: .6rem;
  padding-left: 1.2rem;
  color: #0a2742;
  font-size: 1rem;
  line-height: 1.6;
}

.patient-app-highlight-list li::marker {
  color: #2152ff;
}

@media (max-width: 900px) {
  .patient-app-highlight-card {
    flex-direction: column;
    text-align: left;
  }

  .patient-app-highlight-icon {
    width: 86px;
    height: 86px;
  }
}

.logo-link {
  display: inline-flex;
}

.logo-link:focus-visible {
  outline: 2px solid #2152ff;
  outline-offset: 4px;
  border-radius: 12px;
}

/* === PRICING REDESIGN (Monthly/Annual) === */

/* Wrapper for clean centering */
.pricing-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* Toggle Switch */
.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.toggle-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.toggle-label.active {
  color: var(--text-main);
  font-weight: 700;
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked+.slider {
  background-color: var(--primary-blue);
}

input:checked+.slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

.discount-badge {
  background: #dcfce7;
  color: #166534;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  margin-left: 0.3rem;
  vertical-align: middle;
}

/* Premium Card */
.pricing-card.premium-card {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 40px -4px rgba(0, 0, 0, 0.08), 0 8px 16px -4px rgba(0, 0, 0, 0.04);
  /* Smoother, premium shadow */
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -6px rgba(0, 0, 0, 0.12);
}

.card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: var(--text-main);
}

.price-container .currency {
  font-size: 1.5rem;
  font-weight: 500;
  margin-right: 0.2rem;
}

.price-container .amount {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-container .period {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 0.3rem;
}

.billing-cycle {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
  margin: 2rem 0;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.icon-box {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-blue);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box svg {
  width: 18px;
  height: 18px;
}

.features-list strong {
  display: block;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0.1rem;
}

.features-list p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}

.btn-subscribe {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: var(--primary-blue);
  border-radius: 99px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-subscribe:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.35);
}

.guarantee-text {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}