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

:root {
  --coral-main: #E07A5F;
  --coral-deep: #D64E2A;
  --coral-soft: #EAA694;

  --red: #BE1A22;
  --red-dark: #9F131A;
  --red-light: #FFF1F2;

  --primary: #BE1A22;
  --primary-dark: #9F131A;
  --primary-2: #D84A52;
  --primary-3: #F1A6AA;
  --primary-soft: #FFF1F2;

  --white: #FFFFFF;
  --off: #FDF8F8;
  --off2: #FAEFEF;
  --off3: #FCF4F4;

  --ink: #2A191A;
  --ink2: #4A2A2B;
  --muted: #745D5E;
  --muted2: #AB9899;

  --border: #F0DEDE;
  --border2: #E5CBCD;

  --blue: #3F8FA8;
  --blue-bg: #EAF6FA;

  --teal: #3B9B83;
  --teal-bg: #E9F7F2;

  --amber: #C48A2C;
  --amber-bg: #FFF7E8;

  --purple: #7D6AC8;
  --purple-bg: #F2F0FF;

  --font-d: 'Plus Jakarta Sans', sans-serif;
  --font-b: 'Inter', sans-serif;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --shadow-soft: 0 18px 50px rgba(190, 26, 34, 0.10);
  --shadow-card: 0 16px 46px rgba(190, 26, 34, 0.08);
  --shadow-strong: 0 30px 80px rgba(190, 26, 34, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 241, 242, 0.95), transparent 34%),
    linear-gradient(180deg, #FFFFFF 0%, #FDF8F8 100%);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

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

/* =========================
   HEADER
========================= */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(240, 222, 222, 0.9);
  box-shadow: 0 10px 30px rgba(190, 26, 34, 0.04);
}

.nav-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 40px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo-badge img {
  width: 120px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  transition: color .2s ease, background .2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a.is-active {
  color: var(--primary);
}

.nav-links a.link-login {
  color: var(--primary);
  font-weight: 700;
}

.nav-links a.link-login:hover {
  color: var(--primary-dark);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(112, 51, 51, 0.16);
  background: #fff;
  box-shadow: 0 12px 30px rgba(55, 30, 30, 0.12);
  list-style: none;
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 60;
}

.nav-submenu li a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.nav-submenu li a:hover {
  color: var(--ink);
  background: #fff1f2;
}

.nav-item-has-submenu:hover .nav-submenu,
.nav-item-has-submenu:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-btn, .nav-btn-footer {
  background: #BE1A22;
  color: #fff !important;
  padding: 12px 22px !important;
  border-radius: 999px;
  font-weight: 800 !important;
  font-size: 14px !important;
  box-shadow: 0 12px 28px rgba(190, 26, 34, 0.20);
}

.nav-btn-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px !important;
}

.nav-btn:visited,
.nav-btn:active,
.nav-btn:focus {
  background: #BE1A22;
  color: #fff !important;
}

.nav-btn:hover {
  background: #BE1A22 !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(190, 26, 34, 0.2);
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  background: var(--primary);
  transition: transform .2s ease, opacity .2s ease;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.site-modal[hidden] {
  display: none;
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
}

.site-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 25, 26, 0.45);
  backdrop-filter: blur(2px);
}

.site-modal__content {
  position: relative;
  width: min(760px, calc(100% - 32px));
  margin: min(12vh, 120px) auto 0;
  border-radius: 22px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(190, 26, 34, 0.12);
  box-shadow: 0 26px 70px rgba(42, 25, 26, 0.22);
}

.site-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.site-modal__title {
  margin-bottom: 18px;
  font-family: var(--font-d);
  font-size: 28px;
  color: var(--ink);
}

.site-modal__links {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.site-modal__links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  min-height: 130px;
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--off);
  border: 1px solid rgba(190, 26, 34, 0.10);
  color: var(--ink2);
  font-weight: 700;
}

.site-modal__links a:hover {
  background: #fff1f2;
}

.site-modal__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: var(--primary);
  background: #fff;
  border: 1px solid rgba(190, 26, 34, 0.15);
  box-shadow: 0 10px 20px rgba(190, 26, 34, 0.08);
}

.site-modal__link--patient {
  background: #fff4f5;
  border-color: #f3d9dd;
}

.site-modal__link--patient .site-modal__icon {
  background: #ffecef;
  border-color: #f2c9d0;
  color: #be1a22;
}

.site-modal__link--patient:hover {
  background: #ffecef;
  border-color: #ecc1c9;
}

.site-modal__link--professional {
  background: #f3f7ff;
  border-color: #d9e4f8;
}

.site-modal__link--professional .site-modal__icon {
  background: #eaf1ff;
  border-color: #cddcf9;
  color: #4663b9;
}

.site-modal__link--professional:hover {
  background: #eaf1ff;
  border-color: #c8d8f6;
}

.site-modal__link--pharmacy {
  background: #eefaf5;
  border-color: #d1ecdf;
}

.site-modal__link--pharmacy .site-modal__icon {
  background: #e3f6ee;
  border-color: #bde6d2;
  color: #2f8f67;
}

.site-modal__link--pharmacy:hover {
  background: #e3f6ee;
  border-color: #b7decb;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;
  padding-top: 74px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 239, 231, 0.96) 32%,
      rgba(235, 249, 238, 0.94) 66%,
      rgba(255, 241, 242, 0.9) 100%
    );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(253, 248, 241, 0.78) 58%,
    var(--off) 88%,
    var(--off) 100%
  );
}



.hero-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 92px 40px;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(190, 26, 34, 0.14);
  color: var(--primary);
  box-shadow: 0 12px 30px rgba(190, 26, 34, 0.06);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(200, 50, 58, 0.12);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -3.4px;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 14px;
  background: rgba(200, 50, 58, 0.13);
  z-index: -1;
  border-radius: 999px;
}

.hero-sub {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 450;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

h2 em {
  font-style: normal;
  color: var(--primary);
}

.btn-red,
.btn-outline,
.btn-white-solid,
.btn-ghost-wh {
  border-radius: 999px;
  min-height: 52px;
  padding: 0 28px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: .2s ease;
}

.btn-red {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 18px 42px rgba(190, 26, 34, 0.22);
}

.btn-red:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.76);
  color: var(--primary);
  border: 1px solid rgba(190, 26, 34, 0.18);
  box-shadow: 0 12px 30px rgba(190, 26, 34, 0.06);
}

.btn-outline:hover {
  background: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline.nr1-btn {
  background: rgba(255, 247, 232, 0.9);
  color: #b6781f;
  border-color: rgba(196, 138, 44, 0.42);
  box-shadow: 0 12px 30px rgba(196, 138, 44, 0.14);
}

.btn-outline.nr1-btn:hover {
  background: #fff4de;
  border-color: #c48a2c;
  color: #a26f22;
}

/* =========================
   PROVA SOCIAL
========================= */

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(190, 26, 34, 0.12);
  max-width: 520px;
}

.proof-avatars {
  display: flex;
}

.proof-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: var(--primary);
  margin-left: -8px;
}

.proof-av:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 14px;
  color: var(--muted);
}

.proof-text strong {
  color: var(--primary);
  font-weight: 900;
}

/* =========================
   HERO PROOF
========================= */
.hero-orbit {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(47, 125, 115, 0.12);
  pointer-events: none;
}

.orbit-ring-1 {
  width: 520px;
  height: 520px;
}

.orbit-ring-2 {
  width: 680px;
  height: 680px;
  border-style: dashed;
  border-color: rgba(47, 125, 115, 0.08);
}

.orbit-center {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.orbit-center-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 199, 184, 0.28) 0%, rgba(234, 246, 243, 0.9) 68%, transparent 100%);
  box-shadow: 0 20px 50px rgba(47, 125, 115, 0.10);
}

.orbit-person {
  position: relative;
  z-index: 2;
  width: 580px;
  max-width: 100%;
  object-fit: contain;
}

.solution-bubble {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(47, 125, 115, 0.12);
  border-radius: 20px;
  padding: 14px 16px;
  min-width: 170px;
  box-shadow: 0 18px 40px rgba(47, 125, 115, 0.10);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, box-shadow .2s ease;
}

.solution-bubble:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(47, 125, 115, 0.14);
}

.bubble-tag {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 6px;
}

.solution-bubble strong {
  display: block;
  font-family: var(--font-d);
  font-size: 14px !important;
  line-height: 1.3;
  color: var(--primary);
  font-weight: 600;
  text-align: center;
}

.solution-bubble.consultoria-bubble {
  border-color: rgba(63, 143, 168, 0.35);
  background: linear-gradient(140deg, rgba(234, 246, 250, 0.96), rgba(224, 240, 247, 0.9));
  box-shadow: 0 14px 35px rgba(63, 143, 168, 0.18);
}

.solution-bubble.consultoria-bubble .bubble-tag,
.solution-bubble.consultoria-bubble strong {
  color: var(--blue);
}

.solution-bubble.nr1-bubble {
  border-color: rgba(196, 138, 44, 0.34);
  background: linear-gradient(140deg, rgba(255, 247, 232, 0.97), rgba(255, 239, 208, 0.92));
  box-shadow: 0 14px 34px rgba(196, 138, 44, 0.16);
}

.solution-bubble.nr1-bubble .bubble-tag,
.solution-bubble.nr1-bubble strong {
  color: var(--amber);
}

.solution-bubble.plataforma-bubble {
  border-color: rgba(190, 26, 34, 0.24);
  background: linear-gradient(140deg, rgba(255, 244, 245, 0.96), rgba(255, 236, 238, 0.9));
  box-shadow: 0 14px 32px rgba(190, 26, 34, 0.12);
}

.solution-bubble.plataforma-bubble .bubble-tag,
.solution-bubble.plataforma-bubble strong {
  color: #c45a61;
}

.solution-bubble.plataforma-exams-bubble {  
  border-color: rgba(26, 190, 113, 0.24);
  background: linear-gradient(140deg, rgba(236, 255, 232, 0.96), rgba(224, 255, 210, 0.9));
  box-shadow: 0 14px 32px rgba(26, 190, 113, 0.12);
}

.solution-bubble.plataforma-exams-bubble .bubble-tag,
.solution-bubble.plataforma-exams-bubble strong {
  color: #26b473;
}

.solution-bubble.plataforma-checkups-bubble {
  border-color: rgba(138, 26, 190, 0.24);
  background: linear-gradient(140deg, rgba(236, 232, 255, 0.96), rgba(224, 210, 255, 0.9));
  box-shadow: 0 14px 32px rgba(138, 26, 190, 0.12);
}

.solution-bubble.plataforma-checkups-bubble .bubble-tag,
.solution-bubble.plataforma-checkups-bubble strong {
  color: #985ac4;
}

.bubble-1 {
  top: 80px;
  left: 0px;
}

.bubble-2 {
  top: 200px;
  right: -40px;
}

.bubble-3 {
  left: -40px;
  bottom: 230px;
}


/* =========================
   SEÇÕES GERAIS
========================= */

.sec {
  padding: 112px 40px;
}

.sec-inner {
  max-width: 1220px;
  margin: 0 auto;
}

.sec-tag {
  display: block;
  width: fit-content;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 auto 12px;
  text-align: center;
}

.sec-bar {
  width: 54px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--primary-2));
  border-radius: 2px;
  margin: 0 auto 34px;
}

.sec-title {
  font-family: var(--font-d);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -2.3px;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 18px;
}

.sec-body {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 570px;
  font-weight: 450;
}

/* =========================
   TRANSFORMAÇÃO
========================= */

.transform-sec {
  background: linear-gradient(180deg, var(--off) 0%, #FFFFFF 100%);
}

.transform-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.np-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.np-card {
  background: var(--white);
  border: 1px solid rgba(190, 26, 34, 0.10);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(190, 26, 34, 0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.np-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.np-card.wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.np-ico {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 900;
}

.np-card h4 {
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.np-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.ico-red {
  background: var(--red-light);
  color: var(--red);
}

.ico-blue {
  background: var(--blue-bg);
  color: var(--blue);
}

.ico-teal {
  background: var(--teal-bg);
  color: var(--teal);
}

.ico-amber {
  background: var(--amber-bg);
  color: var(--amber);
}

.ico-purple {
  background: var(--purple-bg);
  color: var(--purple);
}

/* =========================
   SOLUÇÕES
========================= */

.sol-sec {
  background: #fff;
}

.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.sol-card {
  min-height: 340px;
  background: var(--white);
  border: 1px solid rgba(190, 26, 34, 0.10);
  border-radius: 30px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 12px 34px rgba(190, 26, 34, 0.05);
  position: relative;
  overflow: hidden;
}

.sol-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(190, 26, 34, 0.06);
}

.sol-card.featured {
  background:
    radial-gradient(circle at 100% 100%, rgba(255,255,255,0.30), transparent 38%),
    linear-gradient(135deg, var(--primary), var(--primary-3));
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 28px 70px rgba(190, 26, 34, 0.22);
}

.sol-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.sol-eyebrow {
  font-size: 10px;
  letter-spacing: 2.3px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.sol-card.featured .sol-eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.sol-card h3 {
  font-family: var(--font-d);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.9px;
  line-height: 1.05;
  color: var(--primary);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.sol-card.featured h3 {
  color: #fff;
}

.sol-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
  position: relative;
  z-index: 1;
}

.sol-card.featured p {
  color: rgba(255, 255, 255, .88);
}

.sol-card.consultoria-card {
  border-color: rgba(63, 143, 168, 0.24);
  box-shadow: 0 16px 42px rgba(63, 143, 168, 0.14);
}

.sol-card.consultoria-card::before {
  background: rgba(63, 143, 168, 0.14);
}

.sol-card.consultoria-card .sol-eyebrow,
.sol-card.consultoria-card h3 {
  color: var(--blue);
}

.sol-card.consultoria-card .sol-link {
  color: var(--blue);
  border-color: rgba(63, 143, 168, 0.4);
}

.sol-card.consultoria-card .sol-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.sol-card.nr1-card {
  border-color: rgba(196, 138, 44, 0.26);
  box-shadow: 0 16px 42px rgba(196, 138, 44, 0.14);
}

.sol-card.nr1-card::before {
  background: rgba(196, 138, 44, 0.15);
}

.sol-card.nr1-card .sol-eyebrow,
.sol-card.nr1-card h3 {
  color: var(--amber);
}

.sol-card.nr1-card .sol-link {
  color: #b6781f;
  border-color: rgba(196, 138, 44, 0.42);
}

.sol-card.nr1-card .sol-link:hover {
  background: #c48a2c;
  border-color: #c48a2c;
  color: #fff;
}

.sol-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  border: 1px solid rgba(190, 26, 34, 0.22);
  padding: 12px 20px;
  border-radius: 999px;
  align-self: flex-start;
  position: relative;
  z-index: 1;
  transition: .2s ease;
}

.sol-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.sol-link.wh {
  color: #fff;
  border-color: rgba(255, 255, 255, .48);
}

.sol-link.wh:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

/* =========================
   DIFERENCIAIS
========================= */

.dif-sec {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--off) 100%);
}

.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(190, 26, 34, 0.10);
  border-radius: 30px;
  overflow: hidden;
  margin-top: 52px;
  box-shadow: var(--shadow-card);
}

.dif-item {
  background: var(--white);
  padding: 34px 30px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-right: 1px solid rgba(190, 26, 34, 0.08);
  border-bottom: 1px solid rgba(190, 26, 34, 0.08);
}

.dif-item:nth-child(3n) {
  border-right: none;
}

.dif-item:nth-child(n+4) {
  border-bottom: none;
}

.dif-bignum {
  font-family: var(--font-d);
  font-size: 42px;
  font-weight: 900;
  color: rgba(190, 26, 34, 0.14);
  line-height: 1;
  min-width: 44px;
}

.dif-content h4 {
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 7px;
}

.dif-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* =========================
   CTA FINAL
========================= */


.cta-sec.cta-final {
  position: relative;
  overflow: hidden;
  padding: 110px 40px;
  background:
    radial-gradient(circle at 10% 18%, rgba(200, 50, 58, 0.16), transparent 36%),
    radial-gradient(circle at 90% 20%, rgba(123, 199, 184, 0.44), transparent 40%),
    linear-gradient(135deg, #fff9f9 0%, #f2faf7 52%, #deefe8 100%);
  text-align: left;
}

.cta-sec.cta-final::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    var(--off) 0%,
    rgba(253, 248, 248, 0.85) 44%,
    rgba(253, 248, 248, 0) 100%
  );
  z-index: 1;
}

.cta-final-inner {
  max-width: 1220px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-final-content {
  max-width: 640px;
  text-align: center;
}

.cta-final-content h2 {
  font-family: var(--font-d);
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1;
  letter-spacing: -2.6px;
  color: var(--ink);
  margin-bottom: 24px;
}

.cta-final-content h2::first-line {
  color: var(--primary);
}

.cta-final-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 570px;
  margin: 0 auto 36px;
}

.cta-final-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================
   FOOTER
========================= */

footer {
  background: #e0e0e0;
  color: rgb(69, 69, 69);
  padding: 60px 40px 36px;
}

.ft-inner {
  max-width: 1220px;
  margin: 0 auto;
}

.ft-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
  margin-bottom: 36px;
}

.ft-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 310px;
}

.ft-col h6 {
  font-family: var(--font-d);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  font-weight: 900;
}

.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ft-col a {
  color: rgb(69, 69, 69);
  text-decoration: none;
  font-size: 14px;
  transition: .2s ease;
}

.ft-col a:hover {
  color: var(--primary);
}

.ft-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  gap: 12px;
  flex-wrap: wrap;
  color: rgb(69, 69, 69);
}

.ft-bot a, .ft-bot-links a {
  color: rgb(69, 69, 69);
  text-decoration: none;
}

.ft-bot a:hover {
  color: var(--primary);
}

.ft-bot-links {
  display: flex;
  gap: 22px;
}

/* =========================
   PÁGINAS INTERNAS
========================= */

.page-hero {
  padding: 150px 40px 78px;
  background:
    radial-gradient(circle at 80% 0%, rgba(255,241,242,0.95), transparent 38%),
    linear-gradient(180deg, #FFFFFF, var(--off));
}

.page-hero-inner {
  max-width: 940px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -2px;
  color: var(--primary);
}

.page-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 760px;
}

.content-sec {
  padding: 76px 40px;
}

.content-wrap {
  max-width: 940px;
  margin: 0 auto;
}

.content-sec h2 {
  font-family: var(--font-d);
  margin-bottom: 18px;
  font-size: 34px;
  letter-spacing: -0.8px;
  color: var(--primary);
}

.content-sec p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.bullet-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.bullet-list li {
  border: 1px solid var(--border);
  background: var(--off);
  border-radius: var(--r-sm);
  padding: 14px 16px;
}

.contact-box {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
  background: var(--off);
}

/* =========================
   CONTATO
========================= */

.contact-page {
  padding-top: 74px;
  background: #fff;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  z-index: 0;
  border-radius: 0 38px 38px 0;
  background: url("../img/contato-bg.jpg") center / cover no-repeat;
  pointer-events: none;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, #fff 42%, rgba(255, 255, 255, 0.96) 56%, rgba(255, 255, 255, 0.76) 68%, rgba(255, 255, 255, 0.34) 82%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  min-height: 350px;
  margin: 0 auto;
  padding: 74px 60px 48px;
  display: flex;
  align-items: center;
}

.contact-hero-copy {
  max-width: 560px;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(190, 26, 34, 0.06);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.contact-eyebrow i,
.contact-card-icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: currentColor;
}

.contact-eyebrow i {
  font-size: 15px;
}

.contact-hero h1 {
  max-width: 520px;
  color: var(--primary);
  font-family: var(--font-d);
  font-size: clamp(46px, 6vw, 76px);
  line-height: .95;
  letter-spacing: -3px;
  margin-bottom: 22px;
}

.contact-hero p {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-channels {
  padding: 26px 40px 84px;
}

.contact-channels-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-card {
  min-height: 240px;
  padding: 32px 28px;
  border: 1px solid rgba(190, 26, 34, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(70, 35, 38, 0.06);
}

.contact-card .contact-card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card .contact-card-content-compact {
  gap: 0px;
}

.contact-card-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-card-line i {
  margin-top: 2px;
  color: var(--primary);
  font-size: 16px;
}

.contact-card-line p {
  margin-bottom: 0;
}

.contact-card-head {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(190, 26, 34, 0.06);
  color: var(--primary);
}

.contact-card-icon i {
  font-size: 28px;
}

.contact-card h2 {
  margin-bottom: 10px;
  color: var(--primary);
  font-family: var(--font-d);
  font-size: 19px;
  letter-spacing: -.3px;
}

.contact-card-head h2 {
  margin-bottom: 0;
}

.contact-card a:not(.contact-card-action),
.contact-card strong {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.contact-card-action {
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(190, 26, 34, 0.28);
  border-radius: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.contact-card-action:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   TEMAS POR CONTEXTO
========================= */

body.nr1-theme {
  --primary: #D8933A;
  --primary-dark: #B57822;
  --primary-2: #E8B56A;
  --primary-3: #F6D8A7;
  --primary-soft: #FFF7EA;
  --off: #FFFBF4;
  --off2: #FFF5E6;
  --off3: #FFF8EE;
  --border: #F3E4CD;
  --border2: #E9D2AB;
  --shadow-soft: 0 18px 50px rgba(216, 147, 58, 0.11);
  --shadow-card: 0 16px 46px rgba(216, 147, 58, 0.09);
  --shadow-strong: 0 30px 80px rgba(216, 147, 58, 0.17);
}

body.nr1-theme .kpi-d,
body.nr1-theme .chip-sub,
body.nr1-theme .ico-teal {
  color: #2F7D73;
}

body.nr1-theme .ico-teal {
  background: #EAF6F3;
}

body.consultorias-theme {
  --primary: #212661;
  --primary-dark: #181D4D;
  --primary-2: #60B1C2;
  --primary-3: #A8DCE7;
  --primary-soft: #EEF6FB;
  --off: #F7FBFD;
  --off2: #EDF6FA;
  --off3: #F3F9FC;
  --border: #D8E8EF;
  --border2: #C0DCE6;
  --ink: #1D234D;
  --ink2: #303A6D;
  --muted: #566387;
  --muted2: #7F8AAD;
  --shadow-soft: 0 18px 50px rgba(33, 38, 97, 0.10);
  --shadow-card: 0 16px 46px rgba(33, 38, 97, 0.08);
  --shadow-strong: 0 30px 80px rgba(33, 38, 97, 0.16);
}

/* =========================
   ANIMAÇÕES
========================= */

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fu1 { animation: fadeUp .7s .1s both; }
.fu2 { animation: fadeUp .7s .2s both; }
.fu3 { animation: fadeUp .7s .35s both; }
.fu4 { animation: fadeUp .7s .5s both; }
.fu5 { animation: fadeUp .7s .65s both; }

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1024px) {
  .nav-inner,
  .hero-inner,
  .sec,
  .cta-sec,
  footer,
  .page-hero,
  .content-sec,
  .contact-channels {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contact-hero::before {
    background-size: auto 100%;
  }

  .contact-hero::after {
    background: linear-gradient(90deg, #fff 0%, #fff 44%, rgba(255, 255, 255, 0.96) 60%, rgba(255, 255, 255, 0.68) 76%, rgba(255, 255, 255, 0.18) 92%, rgba(255, 255, 255, 0) 100%);
  }

  .contact-hero-inner {
    min-height: 330px;
    padding: 62px 22px 44px;
  }

  .contact-hero-copy {
    max-width: 500px;
  }

  .contact-hero h1 {
    max-width: 470px;
    font-size: clamp(42px, 7vw, 64px);
  }

  .contact-channels-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner,
  .transform-layout,
  .sol-grid,
  .dif-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 56px;
    padding-top: 70px;
  }

  .hero-orbit {
    min-height: auto;
    padding: 20px 0 10px;
  }

  .orbit-ring-1 {
    width: 420px;
    height: 420px;
  }

  .orbit-ring-2 {
    width: 520px;
    height: 520px;
  }

  .orbit-center {
    width: 260px;
    height: 260px;
  }

  .orbit-person {
    width: 230px;
  }

  .solution-bubble {
    min-width: 150px;
    padding: 12px 14px;
  }

  .nav-btn-footer {
    margin-top: 18px !important;
    padding: 11px 18px !important;
  }

  .bubble-1 { top: 30px; left: 30px; }
  .bubble-2 { top: 90px; right: 10px; }
  .bubble-3 { right: 20px; bottom: 80px; }
}

@media (max-width: 1024px) {
  nav {
    overflow: visible;
  }

  .nav-inner {
    height: 66px;
    padding-left: 18px;
    padding-right: 18px;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    right: 0;
    bottom: auto;
    width: min(340px, 100vw);
    max-height: calc(100dvh - 66px);
    margin: 0;
    padding: 18px;
    background: #fff;
    border-left: 1px solid rgba(190, 26, 34, 0.1);
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 2100;
  }

  body.nav-open .nav-links {
    transform: translateX(0);
  }

  .nav-links > li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 10px 4px;
    font-size: 15px;
  }

  .nav-links a.link-login {
    color: var(--primary);
    font-weight: 600;
  }

  .nav-item-has-submenu .nav-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    box-shadow: none;
    border: 1px solid rgba(190, 26, 34, 0.1);
    margin-top: 4px;
    border-radius: 10px;
    padding: 8px;
    background: rgba(255, 249, 249, 0.9);
  }

  .nav-btn {
    padding: 12px 16px !important;
    font-size: 14px !important;
    text-align: center;
  }

  .site-modal__content {
    width: calc(100% - 24px);
    margin-top: 74px;
    padding: 22px 16px 16px;
    border-radius: 16px;
  }

  .site-modal__title {
    font-size: 24px;
    margin-bottom: 14px;
    text-align: center;
  }

  .site-modal__links {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-modal__links a {
    min-height: 92px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 12px;
  }

  .site-modal__icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    font-size: 18px;
  }

  .logo-badge {
    max-width: 145px;
  }

  .logo-badge img {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 66px;
  }

  .hero-inner {
    padding: 54px 22px 70px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 54px);
    letter-spacing: -2px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-red,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-proof {
    padding-top: 20px;
    margin-top: 20px;
    align-items: flex-start;
  }

  .dash-body {
    padding: 20px;
  }

  .kpi-row {
    grid-template-columns: 1fr;
  }

  .svc-item {
    align-items: flex-start;
    gap: 12px;
  }

  .tag {
    white-space: nowrap;
  }

  .sec-title {
    letter-spacing: -1.4px;
  }

  .sec-body {
    font-size: 16px;
  }

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

  .sol-grid,
  .dif-grid {
    margin-top: 36px;
  }

  .sol-card,
  .dif-item,
  .np-card {
    padding: 26px;
  }

  .cta-sec {
    padding: 84px 22px;
  }

  .cta-btns {
    flex-direction: column;
  }

  .btn-white-solid,
  .btn-ghost-wh {
    width: 100%;
    justify-content: center;
  }

  .ft-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 28px;
  }

  .ft-top > div:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  .ft-top > div:first-child .logo-badge {
    justify-content: center;
  }
  .ft-top .ft-col {
    text-align: center;
  }

  .ft-brand-desc {
    margin-right: auto;
    margin-left: auto;
  }

  footer .ft-col h6 {
    font-size: 12px;
  }

  footer .ft-col a {
    font-size: 15px;
  }

  .nav-btn-footer {
    margin-top: 16px !important;
    text-align: center;
  }

  .ft-bot {
    align-items: center;
  }

  .hero-orbit {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: auto;
  }

  .orbit-ring {
    display: none;
  }

  .orbit-center {
    width: 240px;
    height: 240px;
    margin-bottom: 12px;
  }

  .orbit-person {
    width: 210px;
  }

  .solution-bubble {
    position: static;
    width: 100%;
    min-width: auto;
  }

  .hero-orbit {
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .ft-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ft-top > div,
  .ft-col,
  .ft-col ul {
    align-items: center;
  }

  .ft-brand-desc {
    margin-right: auto;
    margin-left: auto;
  }

  footer .ft-col h6 {
    font-size: 13px;
  }

  footer .ft-col a {
    font-size: 16px;
  }

  .nav-btn-footer {
    width: auto;
    max-width: 100%;
  }

  .ft-bot {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .ft-bot-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* =========================
   HOME PACIENTE
========================= */

.patient-hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 12%, rgba(224, 122, 95, 0.18), transparent 34%),
    radial-gradient(circle at 12% 18%, rgba(234, 166, 148, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fdf4f1 48%, #f8f9fa 100%);
}

.patient-hero-inner {
  gap: 74px;
}

.patient-hero-copy {
  max-width: 610px;
}

.patient-hero .hero-sub {
  margin-bottom: 12px;
}

.patient-hero-text {
  max-width: 560px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 450;
}

.patient-hero-note {
  margin-top: 18px;
  color: var(--coral-deep);
  font-size: 14px;
  font-weight: 800;
}

.cta-final-content p.patient-cta-note {
  font-size: 12px;
  font-weight: 600;
}


.patient-hero-visual {
  position: relative;
  min-height: 560px;
}

.patient-hero-orbit {
  min-height: 560px;
}

.patient-hero-orbit .solution-bubble {
  min-width: 150px;
}

.patient-hero-orbit .solution-bubble strong {
  font-size: 20px;
}

.patient-hero-orbit .bubble-4 {
  right: 28px;
  bottom: 98px;
}

.patient-hero-orbit .bubble-5 {
  left: 118px;
  bottom: 12px;
}

.patient-hero-visual::before {
  content: "";
  position: absolute;
  inset: 74px 58px 54px 36px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(234, 166, 148, 0.36));
  border: 1px solid rgba(224, 122, 95, 0.18);
  box-shadow: var(--shadow-strong);
}

.patient-visual-card,
.health-chip {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(224, 122, 95, 0.18);
  box-shadow: 0 18px 42px rgba(224, 122, 95, 0.10);
  backdrop-filter: blur(14px);
}

.patient-person-card {
  left: 54px;
  right: 34px;
  top: 142px;
  display: flex;
  gap: 18px;
  align-items: center;
  border-radius: 30px;
  padding: 26px;
}

.patient-person-card strong {
  display: block;
  font-family: var(--font-d);
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}

.patient-person-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.patient-avatar {
  position: relative;
  width: 100px;
  height: 100px;
  flex: 0 0 100px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 30%, #ffd8c9 0 18%, transparent 19%),
    linear-gradient(180deg, #eaf6f3 0%, #d8eee8 100%);
  overflow: hidden;
}

.patient-avatar::before,
.patient-avatar::after,
.patient-avatar span {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
}

.patient-avatar::before {
  top: 26px;
  width: 30px;
  height: 30px;
  background: #7b4a35;
}

.patient-avatar::after {
  bottom: -12px;
  width: 70px;
  height: 58px;
  background: var(--primary);
}

.patient-avatar span {
  top: 39px;
  width: 34px;
  height: 34px;
  background: #ffd8c9;
  z-index: 1;
}

.health-chip {
  min-width: 152px;
  border-radius: 22px;
  padding: 14px 16px;
}

.health-chip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
}

.health-chip strong {
  color: var(--coral-deep);
  font-family: var(--font-d);
  font-size: 20px;
  line-height: 1;
}

.chip-pressure {
  top: 64px;
  left: 18px;
}

.chip-glucose {
  top: 84px;
  right: 0;
}

.chip-weight {
  left: 0;
  bottom: 144px;
}

.chip-exams {
  right: 28px;
  bottom: 108px;
}

.chip-history {
  left: 122px;
  bottom: 34px;
}

.section-center {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-center .sec-bar {
  margin-left: auto;
  margin-right: auto;
}

.pain-sec {
  background: linear-gradient(180deg, #fcf5f2 0%, #fff 100%);
}

.patient-card-grid {
  display: grid;
  gap: 22px;
}

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

.patient-card {
  background: var(--white);
  border: 1px solid rgba(224, 122, 95, 0.16);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 14px 38px rgba(224, 122, 95, 0.08);
  transform: translateY(0);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.patient-card:hover,
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(224, 122, 95, 0.28);
}

.patient-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.patient-card h3,
.benefit-card h3,
.step-card h3 {
  font-family: var(--font-d);
  color: var(--coral-deep);
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.patient-card p,
.benefit-card p,
.step-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.monitor-sec {
  background: #fff;
}

.monitor-sec .sec-title em {
  font-style: normal;
  color: var(--coral-deep);
}

.monitor-layout,
.pharmacy-layout,
.purpose-inner,
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}

.monitor-head {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.monitor-copy {
  max-width: 560px;
}

.monitor-copy .sec-body {
  max-width: 500px;
}

.monitor-cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.monitor-card {
  border-radius: 16px;
  border: 1px solid rgba(224, 122, 95, 0.16);
  background: #fff;
  box-shadow: 0 10px 26px rgba(224, 122, 95, 0.08);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.monitor-card-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
}

.monitor-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-d);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.monitor-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.phone-mockup-wrap {
  display: flex;
  justify-content: center;
}

.phone-mockup-media {
  position: relative;
  width: min(510px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: url("../video/bck-automonitoramento-g.png") center / contain no-repeat;
}

.phone-mockup-video {
  display: block;
  width: 37%;
  height: auto;
  border-radius: 9% / 5%;
}

.benefits-sec {
  background: linear-gradient(180deg, #fff 0%, #fcf5f2 100%);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.benefit-card {
  min-height: 220px;
  border-radius: 30px;
  border: 1px solid rgba(224, 122, 95, 0.16);
  background: var(--white);
  padding: 18px;
  box-shadow: 0 14px 38px rgba(224, 122, 95, 0.08);
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 22px;
  row-gap: 8px;
  align-items: center;
  transform: translateY(0);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.benefit-card-image {   
  width: 120px;
  height: 120px;
  object-fit: cover;
  grid-row: 1 / span 3;
}

.benefit-card h3,
.benefit-card p {
  padding-left: 0;
  padding-right: 0;
}

.benefit-card h3 {
  align-self: end;
  margin-bottom: 0;
}

.benefit-card p {
  align-self: start;
}

.benefit-card-action {
  justify-self: start;
  align-self: start;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--red-light);
  color: var(--primary);
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.benefit-card-action:hover,
.benefit-card-action:focus-visible {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.benefit-image-modal .site-modal__backdrop {
  background: rgba(42, 25, 26, 0.72);
}

.benefit-image-modal__content {
  width: fit-content;
  max-width: 94vw;
  max-height: 90vh;
  margin-top: 5vh;
  padding: 28px;
  border-radius: 24px;
}

.benefit-image-modal__title {
  margin: 0 52px 22px 0;
  font-size: 24px;
}

.benefit-image-modal__image {
  width: auto;
  max-width: calc(94vw - 56px);
  max-height: calc(90vh - 120px);
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(224, 122, 95, 0.18);
  background: #fff;
}

.benefit-card:nth-child(5) {
  grid-column: 1 / -1;
  width: calc((100% - 22px) / 2);
  justify-self: center;
}

.pharmacy-sec {
  background: #fff;
}

.pharmacy-illustration {
  min-height: 440px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(145deg, #fff1f2, #eaf6f3);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(190, 26, 34, 0.10);
  box-shadow: var(--shadow-card);
}

.pharmacy-counter {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 78px;
  height: 88px;
  border-radius: 22px 22px 34px 34px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(190, 26, 34, 0.10);
}

.pharmacy-person {
  position: absolute;
  bottom: 134px;
  width: 104px;
  height: 156px;
  border-radius: 46px 46px 22px 22px;
}

.pharmacy-person::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -48px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f5c7ae;
  transform: translateX(-50%);
}

.pharmacy-person-left {
  left: 96px;
  background: var(--primary);
}

.pharmacy-person-right {
  right: 102px;
  background: #fff;
  border: 1px solid rgba(190, 26, 34, 0.12);
}

.pharmacy-person-right::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 40px;
  height: 5px;
  border-radius: 999px;
  background: var(--primary);
}

.pharmacy-care-card {
  position: absolute;
  right: 34px;
  top: 42px;
  max-width: 220px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(190, 26, 34, 0.10);
  box-shadow: 0 14px 34px rgba(190, 26, 34, 0.10);
}

.pharmacy-care-card strong,
.pharmacy-care-card span {
  display: block;
}

.pharmacy-care-card strong {
  color: var(--primary);
  font-family: var(--font-d);
  line-height: 1.25;
  margin-bottom: 6px;
}

.pharmacy-care-card span {
  color: var(--muted);
  font-size: 13px;
}

.services-sec {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 16%, rgba(224, 122, 95, 0.12), transparent 26%),
    radial-gradient(circle at 96% 14%, rgba(234, 166, 148, 0.16), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fcf5f2 100%);
}

.services-subtitle {
  max-width: 560px;
  margin: -6px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 210px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(224, 122, 95, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px rgba(224, 122, 95, 0.09);
  padding: 26px 28px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 122, 95, 0.28);
  box-shadow: var(--shadow-card);
}

.service-card-media {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.94), transparent 34%),
    linear-gradient(145deg, #fff5f2, #f4d7cf);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card-media span {
  color: rgba(214, 78, 42, 0.55);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.service-media-fast {
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.94), transparent 34%),
    linear-gradient(145deg, #fff7f4, #f4f8f7);
}

.service-media-talk {
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.94), transparent 34%),
    linear-gradient(145deg, #fff5f2, #eef7fb);
}

.service-media-procedure {
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.94), transparent 34%),
    linear-gradient(145deg, #fff5f2, #fff7e8);
}

.service-card-content h3 {
  max-width: 330px;
  margin-bottom: 16px;
  color: var(--coral-deep);
  font-family: var(--font-d);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.8px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(224, 122, 95, 0.18);
  background: #fff;
  color: var(--ink2);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(224, 122, 95, 0.06);
}

.service-tags span::before {
  content: attr(data-icon);
  min-width: 16px;
  height: 16px;
  margin-right: 6px;
  border-radius: 50%;
  color: var(--coral-deep);
  background: rgba(234, 166, 148, 0.26);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
}

.services-trust-note {
  width: fit-content;
  max-width: 100%;
  margin: 28px auto 0;
  padding: 12px 20px;
  border: 1px solid rgba(224, 122, 95, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink2);
  box-shadow: 0 12px 30px rgba(224, 122, 95, 0.08);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.services-trust-note strong {
  color: var(--coral-deep);
}

.steps-sec {
  background: #fff;
}

.steps-sec .steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}

.steps-sec .steps-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 16.6667%;
  right: 16.6667%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(224, 122, 95, 0.22), rgba(224, 122, 95, 0.55), rgba(224, 122, 95, 0.22));
  z-index: 0;
}

.steps-sec .step-card {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.steps-sec .step-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 18px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(224, 122, 95, 0.55);
  color: var(--coral-deep);
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 0 0 8px #fff, 0 12px 24px rgba(224, 122, 95, 0.10);
}

.steps-sec .step-card h3 {
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.steps-sec .step-card p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* ================================
   BLOCO PROPÓSITO
================================ */

.purpose-sec {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(224, 122, 95, 0.14), transparent 34%),
    radial-gradient(circle at 8% 18%, rgba(234, 166, 148, 0.16), transparent 32%),
    linear-gradient(135deg, #fffaf8 0%, #fdf3ef 45%, #ffffff 100%);
}

.purpose-sec::before {
  content: "";
  position: absolute;
  inset: 22px;
  pointer-events: none;
}

.purpose-sec::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 122, 95, 0.14), transparent 68%);
  pointer-events: none;
}

.purpose-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.purpose-inner-stacked {
  grid-template-columns: 1fr;
  gap: 34px;
}

.purpose-inner-stacked .purpose-head {
  max-width: 100%;
}

.purpose-inner-stacked .purpose-head .sec-bar {
  margin-bottom: 0;
}

.purpose-inner-stacked .purpose-map {
  justify-self: center;
}

.purpose-inner-stacked .purpose-copy {
  max-width: 100%;
  text-align: center;
}

.purpose-inner-stacked .purpose-copy .sec-title,
.purpose-inner-stacked .purpose-copy .purpose-lead,
.purpose-inner-stacked .purpose-copy .purpose-body {
  max-width: none;
}

/* ================================
   TEXTO ESQUERDA
================================ */

.purpose-copy {
  max-width: 620px;
}

.purpose-copy .sec-tag {
  color: var(--coral-deep);
  letter-spacing: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.purpose-copy .sec-bar {
  width: 72px;
  height: 5px;
  border-radius: 999px;
  margin: 16px auto 48px;
  background: linear-gradient(90deg, var(--coral-deep), rgba(224, 122, 95, 0.4));
}

.purpose-copy .sec-title {
  max-width: 610px;
  margin: 0 0 30px;
  font-family: var(--font-d);
  font-size: clamp(44px, 5.1vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--ink);
}

.purpose-highlight {
  color: var(--coral-deep);
}

.purpose-lead,
.purpose-body {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.purpose-lead {
  margin: 0 0 18px;
  font-weight: 700;
  color: var(--ink2);
}

.purpose-body {
  margin: 0 0 18px;
}

.purpose-note-badge {
  margin-top: 26px;
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(224, 122, 95, 0.20);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 18px 45px rgba(224, 122, 95, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 16px 20px;
  color: var(--ink2);
  font-size: 15px;
  line-height: 1.5;
  backdrop-filter: blur(10px);
}

.purpose-note-actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.purpose-note-actions .purpose-note-badge {
  margin-top: 0;
}

.purpose-note-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(224, 122, 95, 0.18);
  background:
    radial-gradient(circle at 30% 20%, #fff 0%, transparent 38%),
    linear-gradient(145deg, #fff6f3 0%, #f4d9d2 100%);
  color: var(--coral-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  flex: 0 0 42px;
}

.purpose-note-icon::before {
  content: "";
  width: 16px;
  height: 20px;
  border: 2px solid var(--coral-deep);
  border-radius: 9px 9px 12px 12px;
  position: relative;
}

.purpose-note-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--coral-deep);
  border-bottom: 2px solid var(--coral-deep);
  transform: rotate(-45deg);
}

/* ================================
   MAPA DIREITA
================================ */

.purpose-map {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  grid-template-rows: 1fr 1.05fr 1fr;
  align-items: center;
  justify-items: center;
  transform: scale(0.8);
  transform-origin: center;
}

/* círculo luminoso central */
.purpose-map::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 50%, rgba(234, 166, 148, 0.52) 0%, rgba(255, 246, 242, 0.72) 48%, transparent 72%);
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, 0.60),
    0 0 58px rgba(224, 122, 95, 0.22);
  pointer-events: none;
}

/* linhas externas do fluxo */
.purpose-map::after {
  content: "";
  position: absolute;
  inset: 82px 78px;
  border: 2px solid rgba(224, 122, 95, 0.30);
  border-radius: 170px;
  pointer-events: none;
  mask-image:
    linear-gradient(#000 0 0),
    linear-gradient(#000 0 0);
  -webkit-mask-image:
    linear-gradient(#000 0 0),
    linear-gradient(#000 0 0);
}

/* ================================
   NODES
================================ */

.purpose-node {
  position: relative;
  z-index: 3;
  width: 220px;
  min-height: 150px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
  border: 1px solid rgba(224, 122, 95, 0.16);
  box-shadow:
    0 22px 55px rgba(50, 12, 17, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  padding: 58px 24px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  backdrop-filter: blur(12px);
}

.purpose-node::before {
  content: "";
  position: absolute;
  top: -42px;
  left: 50%;
  width: 82px;
  height: 82px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 22%, #fff 0%, transparent 36%),
    linear-gradient(145deg, #fff7f4 0%, #f3d8d0 100%);
  border: 1px solid rgba(224, 122, 95, 0.20);
  box-shadow: 0 14px 32px rgba(224, 122, 95, 0.12);
}

.purpose-node::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translateX(-50%);
  background: var(--coral-deep);
  opacity: 0.98;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.purpose-node strong {
  font-family: var(--font-d);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.purpose-node span {
  font-size: 10px;
  line-height: 1.45;
  color: var(--muted);
}

/* posições */
.purpose-node-top {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  margin-top: 36px;
}

.purpose-node-left {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
  margin-right: 52px;
}

.purpose-node-right {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
  margin-left: 52px;
}

.purpose-node-bottom {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  margin-bottom: 28px;
}

.purpose-node-center {
  grid-column: 2;
  grid-row: 2;
  width: 245px;
  min-height: 245px;
  border-radius: 50%;
  padding: 74px 28px 34px;
  justify-content: center;
  background:
    radial-gradient(circle at 34% 18%, rgba(255, 255, 255, 0.95), transparent 36%),
    linear-gradient(145deg, #fff 0%, #fff0f2 100%);
  border: 1px solid rgba(190, 26, 34, 0.12);
  box-shadow:
    0 28px 70px rgba(190, 26, 34, 0.16),
    0 0 0 14px rgba(255, 255, 255, 0.56);
}

.purpose-node-center::before {
  top: 18px;
  width: 58px;
  height: 58px;
  box-shadow: none;
  border: 0;
  background: transparent;
}

.purpose-node-center::after {
  top: 30px;
  width: 44px;
  height: 34px;
}

.purpose-node-center strong {
  color: var(--ink);
  font-size: 38px;
}

.purpose-node-center span {
  font-size: 16px;
  max-width: 150px;
  align-self: center;
}

.purpose-node-bottom strong {
  display: inline-flex;
  align-self: center;
  padding: 12px 26px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, #d80f1b 100%);
  color: #fff;
  box-shadow: 0 14px 26px rgba(190, 26, 34, 0.20);
}

/* ================================
   ÍCONES DOS NODES EM CSS
================================ */

/* Histórico: documento */
.purpose-node-top::after {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2h9l5 5v15H6V2zm8 1.8V8h4.2L14 3.8zM8 11h8v1.8H8V11zm0 4h8v1.8H8V15zm0-8h4v1.8H8V7z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2h9l5 5v15H6V2zm8 1.8V8h4.2L14 3.8zM8 11h8v1.8H8V11zm0 4h8v1.8H8V15zm0-8h4v1.8H8V7z'/%3E%3C/svg%3E");
}

/* Farmácia */
.purpose-node-left::after {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16l1 5v2h-1v10H4V11H3V9l1-5zm2 9v6h5v-6H6zm7 0v6h5v-6h-5zm-7-7-.5 3h13L18 6H6zm5 8h2v2h2v2h-2v2h-2v-2H9v-2h2v-2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16l1 5v2h-1v10H4V11H3V9l1-5zm2 9v6h5v-6H6zm7 0v6h5v-6h-5zm-7-7-.5 3h13L18 6H6zm5 8h2v2h2v2h-2v2h-2v-2H9v-2h2v-2z'/%3E%3C/svg%3E");
}

/* Profissional */
.purpose-node-right::after {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm-8 9c.5-4.6 3.7-7 8-7s7.5 2.4 8 7h-2.2c-.5-3.2-2.6-5-5.8-5s-5.3 1.8-5.8 5H4zm4-1v-3h2v3H8zm6-3h2v3h-2v-3z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm-8 9c.5-4.6 3.7-7 8-7s7.5 2.4 8 7h-2.2c-.5-3.2-2.6-5-5.8-5s-5.3 1.8-5.8 5H4zm4-1v-3h2v3H8zm6-3h2v3h-2v-3z'/%3E%3C/svg%3E");
}

/* Dr Cuidado / coração */
.purpose-node-bottom::after,
.purpose-node-center::after {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 27C8 20.5 2 15.5 2 9.2 2 5 5.3 2 9.2 2c2.5 0 4.8 1.3 6.1 3.3C16.6 3.3 18.9 2 21.4 2 25.3 2 29 5 29 9.2c0 6.3-6 11.3-13 17.8z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 27C8 20.5 2 15.5 2 9.2 2 5 5.3 2 9.2 2c2.5 0 4.8 1.3 6.1 3.3C16.6 3.3 18.9 2 21.4 2 25.3 2 29 5 29 9.2c0 6.3-6 11.3-13 17.8z'/%3E%3C/svg%3E");
}

/* ================================
   CONEXÕES INTERNAS
================================ */

.purpose-node-center {
  position: relative;
}

.purpose-node-center .purpose-dot {
  display: none;
}

/* Linhas simples entre centro e cards */
.purpose-node-center::before {
  content: "";
  position: absolute;
  inset: -118px;
  border-radius: 50%;
  border: 1px solid rgba(190, 26, 34, 0.16);
  pointer-events: none;
}

/* Pequenos pontos de conexão */
.purpose-node-top,
.purpose-node-left,
.purpose-node-right,
.purpose-node-bottom {
  overflow: visible;
}

.purpose-node-top strong::before,
.purpose-node-left strong::before,
.purpose-node-right strong::before,
.purpose-node-bottom strong::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(190, 26, 34, 0.08);
}

.purpose-node-top strong::before {
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
}

.purpose-node-left strong::before {
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
}

.purpose-node-right strong::before {
  left: -17px;
  top: 50%;
  transform: translateY(-50%);
}

.purpose-node-bottom strong::before {
  left: 50%;
  top: -23px;
  transform: translateX(-50%);
}

.patient-final-cta {
  background:
    radial-gradient(circle at 10% 18%, rgba(214, 78, 42, 0.16), transparent 36%),
    radial-gradient(circle at 90% 20%, rgba(234, 166, 148, 0.20), transparent 40%),
    linear-gradient(135deg, #fff8f5 0%, #fcefe9 52%, #f7f8fa 100%);
}

.patient-final-cta .cta-final-content {
  max-width: 760px;
}

.patient-final-cta .patient-cta-note {
  margin-top: 12px  ;
  margin-bottom: 0;
}

.faq-sec {
  background: linear-gradient(180deg, #fcf5f2 0%, #fff 100%);
}

.faq-layout {
  align-items: flex-start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {

  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(224, 122, 95, 0.07);
  overflow: hidden;
  transition: height .34s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.faq-item.is-animating {
  overflow: hidden;
  will-change: height;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(224, 122, 95, 0.26);
  box-shadow: var(--shadow-card);
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: var(--coral-deep);
  font-family: var(--font-d);
  font-weight: 800;
  line-height: 1.25;
  padding: 24px 58px 24px 26px;
  position: relative;
  transition: color .2s ease, background .2s ease;
}

.faq-item summary:hover {
  background: rgba(234, 166, 148, 0.22);
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: rgba(234, 166, 148, 0.26);
  background-image:
    linear-gradient(var(--coral-deep), var(--coral-deep)),
    linear-gradient(var(--coral-deep), var(--coral-deep));
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 2px, 2px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background-color .25s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
  background-color: rgba(224, 122, 95, 0.22);
  background-size: 12px 2px, 0 12px;
}

.pain-sec .sec-bar,
.monitor-sec .sec-bar,
.benefits-sec .sec-bar,
.services-sec .sec-bar,
.steps-sec .sec-bar,
.purpose-sec .sec-bar,
.patient-final-cta .sec-bar,
.faq-sec .sec-bar {
  background: linear-gradient(90deg, var(--coral-deep), var(--coral-main));
}

.patient-hero h1 em,
.pain-sec .sec-title em,
.monitor-sec .sec-title em,
.benefits-sec .sec-title em,
.services-sec .sec-title em,
.steps-sec .sec-title em,
.purpose-sec .sec-title em,
.patient-final-cta .cta-final-content h2::first-line,
.faq-sec .sec-title em {
  color: var(--coral-deep);
}

.patient-hero .hero-pill,
.pain-sec .sec-tag,
.monitor-sec .sec-tag,
.benefits-sec .sec-tag,
.services-sec .sec-tag,
.steps-sec .sec-tag,
.purpose-sec .sec-tag,
.patient-final-cta .sec-tag,
.faq-sec .sec-tag {
  color: var(--coral-deep);
}

.faq-item p {
  margin-top: 10px;
  padding: 0 26px 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  animation: detailsFade .32s ease both;
}

@keyframes detailsFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .patient-hero-visual {
    min-height: 520px;
  }
}

@media (max-width: 1024px) {
  .patient-hero-inner,
  .monitor-layout,
  .pharmacy-layout,
  .purpose-inner,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .patient-hero-inner {
    gap: 46px;
  }

  .patient-hero-visual {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .patient-hero-orbit {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .patient-hero-orbit .bubble-4 {
    bottom: 18px;
  }

  .patient-hero-orbit .bubble-5 {
    left: 10px;
    bottom: 28px;
  }

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

  .monitor-layout {
    gap: 44px;
  }

  .monitor-head {
    margin-bottom: 0;
  }

  .monitor-copy {
    max-width: 760px;
  }

  .monitor-copy .sec-body {
    max-width: 760px;
  }

  .phone-mockup-wrap {
    justify-content: center;
  }

  .phone-mockup-media {
    width: min(460px, 100%);
  }

  .purpose-inner {
    gap: 54px;
  }

  .purpose-copy {
    max-width: 760px;
  }

  .purpose-copy .sec-title,
  .purpose-lead,
  .purpose-body {
    max-width: 760px;
  }

  .purpose-map {
    min-height: 600px;
    transform: none;
  }

  .purpose-map::before {
    inset: 72px 58px;
  }

  .purpose-map::after {
    inset: 118px 108px;
  }

  .purpose-node {
    width: 196px;
    min-height: 134px;
    padding: 18px 16px;
  }

  .purpose-node-center {
    width: 210px;
    min-height: 210px;
  }

  .pharmacy-layout {
    gap: 46px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .patient-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: 44px;
    align-items: center;
  }

  .patient-hero-orbit {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    max-width: none;
    padding: 0;
  }

  .patient-hero-orbit .orbit-ring {
    display: block;
  }

  .patient-hero-orbit .orbit-ring-1 {
    width: 370px;
    height: 370px;
  }

  .patient-hero-orbit .orbit-ring-2 {
    width: 470px;
    height: 470px;
  }

  .patient-hero-orbit .orbit-center {
    width: 250px;
    height: 250px;
    margin: 0;
  }

  .patient-hero-orbit .orbit-person {
    width: 250px;
  }

  .patient-hero-orbit .solution-bubble {
    position: absolute;
    width: auto;
    min-width: 132px;
    padding: 11px 13px;
  }

  .patient-hero-orbit .bubble-1 {
    top: 58px;
    left: 4px;
  }

  .patient-hero-orbit .bubble-2 {
    top: 158px;
    right: -8px;
  }

  .patient-hero-orbit .bubble-3 {
    left: -10px;
    right: auto;
    bottom: 174px;
  }

  .patient-hero-orbit .bubble-4 {
    right: 20px;
    bottom: 94px;
  }

  .patient-hero-orbit .bubble-5 {
    left: 84px;
    right: auto;
    bottom: 18px;
  }

  .monitor-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 54px;
  }

  .phone-mockup-wrap {
    justify-content: flex-end;
  }

  .phone-mockup-media {
    width: min(440px, 100%);
  }

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

  .service-card {
    grid-template-columns: 128px 1fr;
    gap: 20px;
    padding: 24px;
  }

  .service-card-media {
    width: 128px;
    height: 128px;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .purpose-sec {
    background:
      radial-gradient(circle at 50% 12%, rgba(224, 122, 95, 0.15), transparent 34%),
      radial-gradient(circle at 50% 45%, rgba(234, 166, 148, 0.14), transparent 38%),
      linear-gradient(135deg, #fffaf8 0%, #fdf3ef 45%, #ffffff 100%);
  }

  .purpose-sec::after {
    display: none;
  }

  .purpose-map::before {
    inset: auto;
    left: 50%;
    top: 50%;
    width: 220px;
    height: 220px;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .sec {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .patient-hero-inner {
    text-align: center;
    padding-top: 64px;
    padding-bottom: 78px;
  }

  .patient-hero-copy,
  .patient-hero .hero-sub,
  .patient-hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .patient-hero-orbit {
    align-items: center;
    max-width: 560px;
  }

  .patient-hero-orbit .orbit-center,
  .patient-hero-orbit .orbit-person {
    margin-left: auto;
    margin-right: auto;
  }

  .monitor-copy,
  .monitor-copy .sec-body {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .monitor-cards {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .benefit-card {
    grid-template-columns: 104px 1fr;
    column-gap: 18px;
  }

  .benefit-card-image {
    width: 104px;
    height: 104px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .purpose-map {
    width: min(680px, 100%);
    min-height: 530px;
    margin: 0 auto;
    transform: scale(0.88);
  }

  .purpose-map::after {
    inset: 104px 84px;
  }

  .purpose-node {
    width: 178px;
    min-height: 124px;
    padding: 50px 16px 18px;
  }

  .purpose-node-left {
    margin-right: 30px;
  }

  .purpose-node-right {
    margin-left: 30px;
  }

  .purpose-node-center {
    width: 190px;
    min-height: 190px;
    padding: 68px 22px 28px;
  }

  .purpose-node-center::before {
    inset: -88px;
  }

  .purpose-node-center strong {
    font-size: 30px;
  }

  .purpose-node-center span {
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .sec {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .contact-page {
    padding-top: 66px;
  }

  .contact-hero {
    border-radius: 0;
  }

  .contact-hero::before {
    inset: auto 0 0;
    width: 100%;
    height: 58%;
    border-radius: 0 0 28px 28px;
    background-position: 68% bottom;
    background-size: auto 100%;
  }

  .contact-hero::after {
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.98) 48%, rgba(255, 255, 255, 0.7) 68%, rgba(255, 255, 255, 0.18) 88%, rgba(255, 255, 255, 0) 100%);
  }

  .contact-hero-inner {
    min-height: 520px;
    padding: 42px 18px 260px;
    align-items: flex-start;
    text-align: left;
  }

  .contact-hero h1 {
    max-width: 330px;
    font-size: 40px;
    letter-spacing: -2px;
  }

  .contact-hero p {
    max-width: 330px;
    font-size: 16px;
  }

  .contact-channels {
    padding: 18px 18px 64px;
  }

  .contact-channels-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card,
  .contact-card:last-child {
    grid-column: auto;
  }

  .contact-card {
    min-height: auto;
    gap: 16px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .contact-card-icon {
    width: 46px;
    height: 46px;
  }

  .contact-card-icon i {
    font-size: 24px;
  }

  .patient-hero-inner {
    padding-top: 44px;
    padding-bottom: 64px;
    gap: 34px;
    text-align: center;
  }

  .patient-hero-copy,
  .patient-hero .hero-sub,
  .patient-hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .patient-hero .hero-pill {
    margin-left: auto;
    margin-right: auto;
  }

  .patient-hero h1 {
    font-size: 38px;
  }

  .patient-hero-text {
    font-size: 16px;
  }

  .patient-hero-visual {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .patient-hero-orbit {
    max-width: none;
    margin: 0 auto;
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .patient-hero-visual::before {
    display: none;
  }

  .patient-visual-card,
  .health-chip {
    position: static;
  }

  .patient-hero-orbit .solution-bubble {
    position: static;
    width: 100%;
    max-width: 360px;
  }

  .patient-hero-orbit .orbit-center,
  .patient-hero-orbit .orbit-person {
    margin-left: auto;
    margin-right: auto;
  }

  .patient-person-card {
    padding: 22px;
  }

  .patient-person-card strong {
    font-size: 19px;
  }

  .patient-avatar {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
    border-radius: 24px;
  }

  .pain-grid,
  .benefit-grid,
  .services-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-sec .steps-grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .steps-sec .steps-grid::before {
    top: 26px;
    bottom: auto;
    left: 75px;
    right: 75px;
    width: auto;
    height: 3px;
    background: linear-gradient(90deg, rgba(224, 122, 95, 0.22), rgba(224, 122, 95, 0.55), rgba(224, 122, 95, 0.22));
  }

  .monitor-layout {
    gap: 28px;
  }

  .monitor-sec .sec-title,
  .section-center .sec-title,
  .purpose-copy .sec-title,
  .cta-final-content h2,
  .faq-layout .sec-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .monitor-sec .sec-body,
  .purpose-lead,
  .purpose-body,
  .cta-final-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .monitor-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .monitor-card {
    padding: 12px 14px;
    justify-content: flex-start;
    text-align: left;
  }

  .monitor-card strong {
    font-size: 20px;
  }

  .monitor-card span {
    font-size: 13px;
  }

  .phone-mockup-wrap {
    justify-content: center;
  }

  .phone-mockup-media {
    width: 130%;
    background-image: none;
  }

  .phone-mockup-video {
    width: 75%;
  }

  .purpose-copy .sec-title {
    font-size: 38px;
    margin-bottom: 18px;
  }

  .purpose-lead,
  .purpose-body {
    font-size: 16px;
    line-height: 1.65;
  }

  .purpose-note-badge {
    align-items: flex-start;
    width: 100%;
  }

  .purpose-map {
    display: flex;
    flex-direction: column;
    min-height: auto;
    gap: 24px;
    padding: 20px 0 4px;
    align-items: center;
  }

  .purpose-map::before,
  .purpose-map::after,
  .purpose-node-center::before,
  .purpose-node-top strong::before,
  .purpose-node-left strong::before,
  .purpose-node-right strong::before,
  .purpose-node-bottom strong::before {
    display: none;
  }

  .purpose-node,
  .purpose-node-top,
  .purpose-node-left,
  .purpose-node-center,
  .purpose-node-right,
  .purpose-node-bottom {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    width: 100%;
    min-height: auto;
    max-width: 360px;
    border-radius: 26px;
    padding: 54px 22px 24px;
  }

  .purpose-node-center {
    order: -1;
    border-radius: 30px;
    padding-top: 70px;
  }

  .purpose-node-center strong {
    font-size: 34px;
  }

  .purpose-node strong {
    font-size: 26px;
  }

  .purpose-node::before {
    top: -36px;
    width: 72px;
    height: 72px;
  }

  .purpose-node::after {
    width: 24px;
    height: 24px;
    top: -13px;
  }

  .purpose-node-center::after {
    width: 38px;
    height: 30px;
    top: 28px;
  }

  .purpose-node-bottom strong {
    align-self: center;
  }

  .section-center {
    text-align: center;
    margin-bottom: 32px;
  }

  .section-center .sec-bar {
    margin-left: auto;
    margin-right: auto;
  }

  .patient-card,
  .benefit-card,
  .step-card {
    padding: 26px;
    text-align: center;
  }

  .steps-sec .step-card {
    display: block;
    min-width: 150px;
    padding: 0 6px;
    text-align: center;
    scroll-snap-align: start;
  }

  .steps-sec .step-card span {
    margin-bottom: 12px;
    width: 44px;
    height: 44px;
    font-size: 16px;
    box-shadow: 0 0 0 5px #fff, 0 8px 18px rgba(224, 122, 95, 0.10);
  }

  .steps-sec .step-card h3 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 14px;
  }

  .steps-sec .step-card p {
    font-size: 11px;
    line-height: 1.45;
    max-width: none;
    margin: 0;
  }

  .steps-sec .section-center .sec-title {
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 1.1;
    overflow-wrap: normal;
  }

  .patient-card-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .benefit-card {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    justify-items: center;
  }

  .benefit-card-image {
    width: min(220px, 100%);
    height: auto;
    grid-row: auto;
    margin: 0 auto;
  }

  .benefit-card-action {
    justify-self: center;
  }

  .benefit-image-modal__content {
    width: fit-content;
    max-width: calc(100% - 20px);
    max-height: 88vh;
    margin-top: 6vh;
    padding: 18px;
    border-radius: 18px;
  }

  .benefit-image-modal__title {
    margin-right: 44px;
    margin-bottom: 14px;
    font-size: 19px;
  }

  .benefit-image-modal__image {
    max-width: calc(100vw - 56px);
    max-height: calc(88vh - 92px);
    border-radius: 12px;
  }

  .services-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 24px;
    text-align: center;
    justify-items: center;
  }

  .service-card-media {
    width: 132px;
    height: 132px;
    margin: 0 auto;
  }

  .service-card-media img {
    margin: 0 auto;
  }

  .service-card-content h3 {
    max-width: none;
    font-size: 22px;
  }

  .service-card-content p {
    max-width: none;
  }

  .hero-ctas {
    align-items: center;
  }

  .cta-final-actions,
  .purpose-note-actions {
    justify-content: center;
  }

  .services-trust-note {
    width: 100%;
    border-radius: 22px;
  }

  .pharmacy-illustration {
    min-height: 360px;
  }

  .pharmacy-person-left {
    left: 50px;
  }

  .pharmacy-person-right {
    right: 48px;
  }

  .pharmacy-care-card {
    left: 24px;
    right: 24px;
    top: 24px;
    max-width: none;
  }

  .care-flow-item {
    padding-right: 18px;
  }

  .service-panel summary,
  .faq-item summary {
    padding: 22px 54px 22px 22px;
  }
}