:root {
  --navy: #083344;
  --teal: #0d7377;
  --teal-2: #14919b;
  --gold: #e8b86d;
  --plantao: #007a33;
  --plantao-dark: #006029;
  --bg: #f4f7f8;
  --text: #163042;
  --muted: #5b6d78;
  --line: #d7e2e6;
  --white: #fff;
  --shadow: 0 16px 40px rgba(8, 51, 68, 0.12);
  --radius: 16px;
  --font: "Source Sans 3", system-ui, sans-serif;
  --display: "Outfit", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 { font-family: var(--display); letter-spacing: -0.03em; line-height: 1.2; }
.container { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }

.topbar {
  background: #fff;
  color: #1a1a1a;
  border-bottom: 1px solid #ececec;
  font-size: 0.92rem;
}
.topbar-row {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 56px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  width: auto;
  max-width: none;
  padding-left: max(1rem, calc((100% - 1180px) / 2));
  padding-right: 1.25rem;
}
.topbar-tagline {
  margin: 0;
  flex: 1;
  min-width: 0;
  color: #2a2a2a;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-align: left;
}
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #111;
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
}
.topbar-phone:hover { color: var(--plantao); }
.topbar-phone-icon { flex: 0 0 auto; }

.plantao {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  margin-left: auto;
}
.plantao-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  border: 0;
  background: var(--plantao);
  color: #fff;
  padding: 0.55rem 1.4rem 0.55rem 1.1rem;
  cursor: pointer;
  font: inherit;
  line-height: 1.05;
  text-align: left;
  height: 100%;
  min-width: 11.5rem;
}
.plantao-btn:hover,
.plantao.is-open .plantao-btn { background: var(--plantao-dark); color: #fff; }
.plantao-btn svg { flex: 0 0 auto; display: block; }
.plantao-btn-label {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.plantao-btn-label small {
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.1;
}
.plantao-btn-label strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.plantao-panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  width: min(280px, calc(100vw - 1.5rem));
  background: #fff;
  border: 2px solid var(--plantao);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
  z-index: 50;
  overflow: hidden;
}
.plantao-panel[hidden] { display: none !important; }
.plantao-panel-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--plantao);
  color: #fff;
  padding: 0.7rem 0.85rem;
  text-transform: uppercase;
  line-height: 1.05;
}
.plantao-panel-head span {
  display: flex;
  flex-direction: column;
}
.plantao-panel-head small {
  font-size: 0.68rem;
  font-weight: 700;
}
.plantao-panel-head strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.plantao-panel-body {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 0.9rem;
  color: #111;
  background: #fff;
}
.plantao-panel-body:hover { color: #111; background: #f7fbf8; }
.plantao-panel-wa {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  flex: 0 0 auto;
}
.plantao-panel-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.15;
}
.plantao-panel-copy small {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #555;
}
.plantao-panel-copy strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
}

.navbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}
.logo img { display: block; height: 52px; width: auto; }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  font: inherit;
}
.menu { display: flex; gap: 0.15rem; list-style: none; margin: 0; padding: 0; }
.menu > li { position: relative; }
.menu > li > a {
  display: block;
  padding: 0.75rem 0.7rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
}
.menu > li > a:hover { color: var(--plantao); }
.menu ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.4rem;
  list-style: none;
  margin: 0;
  z-index: 30;
}
.menu ul a { display: block; padding: 0.55rem 0.7rem; color: var(--text); border-radius: 8px; font-size: 0.88rem; }
.menu ul a:hover { background: #eef7f7; }
.menu .has-sub:hover > ul, .menu .has-sub:focus-within > ul { display: block; }

.hero {
  position: relative;
  overflow: hidden;
  background: #eef6fb;
}
.hero-slide {
  display: none;
  position: relative;
  background: #eef6fb;
  color: var(--navy);
}
.hero-slide.is-active { display: block; }
.hero-slide > .container {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 4.5rem) 0;
  margin-inline: auto;
  width: min(1180px, calc(100% - 2rem));
}
.hero-banner-img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  vertical-align: top;
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 36rem);
  color: var(--navy);
}
.hero-kicker {
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--plantao);
}
.hero-heading {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.hero-heading strong {
  color: var(--plantao);
  font-weight: 800;
}
.hero-heading span { color: var(--plantao); }
.hero-lead {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--muted);
}
.hero-nav { position: absolute; inset: auto 1rem 1.2rem auto; display: flex; gap: 0.4rem; z-index: 3; }
.hero-nav button { width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(8, 51, 68, 0.12); cursor: pointer; }
.hero-dots { position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%); display: flex; gap: 0.4rem; z-index: 3; }
.hero-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(8, 51, 68, 0.2); }
.hero-dots button.is-active { background: var(--plantao); }

.btn { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--plantao); color: #fff; padding: 0.8rem 1.2rem; border-radius: 999px; border: 0; font: inherit; font-weight: 700; cursor: pointer; }
.btn:hover { background: var(--plantao-dark); color: #fff; }
.link-more { font-weight: 700; }

.differentials { background: linear-gradient(180deg, #e8f4f4, #fff); padding: 4rem 0; }
.differentials-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2rem; align-items: center; }
.differentials-intro h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.differentials-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.differentials-list li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow); }
.differentials-list h3 { margin: 0 0 0.6rem; font-size: 1.05rem; }

.phrase { background: var(--plantao); color: #fff; text-align: center; padding: 1.4rem 1rem; font-family: var(--display); font-size: clamp(1.2rem, 2.4vw, 1.8rem); font-weight: 700; }
.phrase p { margin: 0; }

.plans-block { padding: 4rem 0; }
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.plans-visual {
  min-height: 360px;
  border-radius: 24px;
  background: linear-gradient(160deg, #e8f6ec, #f4f7f8 55%, #fff);
  display: grid;
  place-items: end center;
  overflow: hidden;
}
.plans-visual img {
  display: block;
  width: auto;
  max-width: 100%;
  height: min(520px, 100%);
  object-fit: contain;
  object-position: bottom center;
}
.plans-visual-odonto,
.plans-visual-saude { background: linear-gradient(180deg, #f3faf5 0%, #e7f4eb 45%, #dcefe3 100%); }
.plans-copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; list-style: none; margin: 0; padding: 0; }
.brand-card {
  display: grid;
  place-items: center;
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.7rem;
  text-align: center;
  font-weight: 700;
  color: var(--navy);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.brand-card.has-image {
  grid-template-rows: 96px auto;
  align-content: stretch;
  gap: 0;
  padding: 0.85rem 0.85rem 0;
  min-height: 0;
}
.brand-card.has-image img {
  width: 100%;
  height: 100%;
  max-height: 96px;
  padding: 0.15rem;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
}
.brand-card.has-image span {
  display: block;
  align-self: center;
  padding: 0.7rem 0.25rem 0.9rem;
  font-size: 0.86rem;
  line-height: 1.3;
}
.brand-card:hover {
  border-color: var(--plantao);
  color: var(--plantao);
  box-shadow: 0 8px 20px rgba(0, 122, 51, 0.08);
}

.plan-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 1.75rem;
  align-items: center;
  margin: 0 0 2rem;
}
.plan-hero-copy h1 { margin-top: 0; }
.plan-hero-copy .lead {
  margin: 0.6rem 0 0;
  font-size: 1.1rem;
  color: var(--muted);
}
.plan-hero-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  place-items: center;
  min-height: 180px;
}
.plan-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
}

.plantao-band {
  background:
    linear-gradient(135deg, rgba(0, 122, 51, 0.04), rgba(8, 51, 68, 0.03)),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 18px,
      rgba(8, 51, 68, 0.025) 18px,
      rgba(8, 51, 68, 0.025) 19px
    ),
    #eef1f3;
  color: var(--navy);
  padding: 2.4rem 1rem;
}
.plantao-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(8, 51, 68, 0.1);
  padding: 0.7rem 0.7rem 0.7rem 1.15rem;
}
.plantao-card-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}
.plantao-card-icon svg { display: block; }
.plantao-card-copy {
  flex: 1;
  min-width: 0;
  line-height: 1.15;
}
.plantao-card-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a8790;
}
.plantao-card-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #1d2b33;
}
.plantao-card-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  flex: 0 0 auto;
  min-width: 12rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: var(--plantao);
  color: #fff;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 8px 18px rgba(0, 122, 51, 0.28);
}
.plantao-card-cta:hover {
  background: var(--plantao-dark);
  color: #fff;
}
.plantao-card-cta strong {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
}
.plantao-card-cta span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.95;
}

.clients-band, .blog-home { padding: 3.5rem 0; background: var(--bg); }
.clients-band h2, .blog-home h2 { text-align: center; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-lead { text-align: center; color: var(--muted); max-width: 40rem; margin: 0.6rem auto 1.4rem; }
.clients-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.7rem; }
.client-chip { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1rem; text-align: center; font-weight: 600; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.content-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; overflow: hidden; }
.content-card h2, .content-card h3 { margin-top: 0; font-size: 1.15rem; }
.content-card-media { display: grid; place-items: center; margin: -1.2rem -1.2rem 1rem; background: #fff; border-bottom: 1px solid var(--line); min-height: 140px; padding: 1rem; }
.content-card-media img { width: 100%; height: 110px; object-fit: contain; object-position: center; display: block; }

.plan-gallery {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 1.75rem;
}
.plan-gallery-1 { grid-template-columns: 1fr; }
.plan-gallery-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.plan-gallery-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.plan-gallery-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.plan-gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eef5f6;
}
.plan-gallery-item img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  display: block;
}
.plan-gallery-item figcaption {
  padding: 0.55rem 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
  background: #fff;
}

@media (max-width: 720px) {
  .plan-gallery-2,
  .plan-gallery-3,
  .plan-gallery-4 { grid-template-columns: 1fr; }
}

.page { padding: 2.5rem 0 3.5rem; }
.prose { max-width: 860px; }
.page .container.prose, .page .container.split { max-width: 1100px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.lead { font-size: 1.15rem; color: var(--muted); }
.breadcrumbs { background: #eef5f6; padding: 0.7rem 0; font-size: 0.88rem; }
.breadcrumbs span { margin: 0 0.35rem; color: var(--muted); }

.form { display: grid; gap: 0.85rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; }
.form label { display: grid; gap: 0.35rem; font-size: 0.9rem; color: var(--muted); }
.form input, .form textarea, .form select { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 0.7rem 0.8rem; font: inherit; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.hp { position: absolute; left: -9999px; }
.flash-ok { background: #e6f7ee; border: 1px solid #9ad4b3; padding: 0.7rem 0.9rem; border-radius: 10px; }
.flash-err { color: #9b1c1c; }

footer { background: #363636; color: #e6e6e6; padding: 3rem 0 6rem; }
footer h2 { color: #fff; font-size: 1.4rem; }
footer h2 span { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-about .footer-logo {
  display: block;
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-products ul { list-style: none; padding: 0; columns: 2; gap: 1.5rem; }
.footer-products a { color: #ececec; }
.footer-products a:hover { color: #fff; }
.footer-nap { display: flex; justify-content: space-between; gap: 1.5rem; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-nap-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
.footer-susep {
  display: block;
  width: min(220px, 100%);
  height: auto;
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.55rem;
}
.btn-quote { background: var(--gold); color: #083344; padding: 0.9rem 1.2rem; border-radius: 12px; font-weight: 800; text-align: center; }
.btn-quote:hover { color: #083344; }
.copyright { margin-top: 1.5rem; font-size: 0.85rem; color: #b0b0b0; }

.mobile-cta { display: none; position: fixed; inset: auto 0 0 0; background: #fff; border-top: 1px solid var(--line); z-index: 40; }
.mobile-cta a { flex: 1; text-align: center; padding: 0.85rem; font-weight: 700; color: var(--navy); }
.mobile-cta .is-wa { background: #25d366; color: #fff; }
.float-wa {
  position: fixed;
  right: 1rem;
  bottom: 1.2rem;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1.05rem 0.75rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #2fe374 0%, #25d366 55%, #1ebe57 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.38), 0 4px 12px rgba(8, 51, 68, 0.14);
  font-family: var(--display);
  line-height: 1.15;
  text-decoration: none;
  animation: float-wa-bob 2.8s ease-in-out infinite;
}
.float-wa::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: float-wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
.float-wa-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.float-wa-icon svg { display: block; }
.float-wa-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.float-wa-copy strong {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.float-wa-copy small {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.92;
}
.float-wa:hover {
  color: #fff;
  filter: brightness(1.04);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45), 0 6px 16px rgba(8, 51, 68, 0.16);
}
.float-wa:focus-visible {
  outline: 3px solid #083344;
  outline-offset: 3px;
}

@keyframes float-wa-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes float-wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .float-wa,
  .float-wa::before {
    animation: none;
  }
}

.pagination { display: flex; gap: 0.45rem; flex-wrap: wrap; margin: 1.5rem 0; }
.pagination a, .pagination span { padding: 0.4rem 0.7rem; border: 1px solid var(--line); border-radius: 8px; }

@media (max-width: 900px) {
  .hero-slide.is-active { min-height: 26rem; }
  .hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 82% 12%;
  }
  .hero-heading { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .hero-lead { font-size: 1rem; max-width: 20rem; }
  .topbar-tagline { display: none; }
  .topbar-phone { font-size: 0.85rem; }
  .plantao-btn { min-width: 0; padding: 0.45rem 0.85rem; }
  .plantao-btn-label small { font-size: 0.58rem; }
  .plantao-btn-label strong { font-size: 0.88rem; }
  .plantao-card {
    flex-direction: column;
    border-radius: 24px;
    text-align: center;
    padding: 1.2rem;
    gap: 0.9rem;
  }
  .plantao-card-icon {
    border-right: 0;
    padding-right: 0;
  }
  .plantao-card-cta {
    width: 100%;
    min-width: 0;
  }
  .nav-toggle { display: inline-flex; }
  nav { display: none; width: 100%; }
  .navbar-inner.is-open nav { display: block; padding-bottom: 1rem; }
  .menu { flex-direction: column; }
  .menu ul { position: static; box-shadow: none; border: 0; }
  .menu > li > a { color: var(--navy); }
  .differentials-grid, .plans-grid, .split, .footer-grid, .form-row, .footer-nap, .plan-hero { grid-template-columns: 1fr; }
  .footer-nap { flex-direction: column; align-items: stretch; }
  .footer-nap-aside { align-items: stretch; }
  .footer-susep { margin-inline: auto; }
  .differentials-list { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  .float-wa { bottom: 4.6rem; }
  footer { padding-bottom: 7rem; }
}
