.site-header {
  background: #fff;
  height: var(--header-h);
  position: relative;
  z-index: 40;
}
.site-header.is-stuck {
  position: fixed;
  inset: 0 0 auto 0;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}
.header-spacer { display: none; height: var(--header-h); }
.site-header.is-stuck + .header-spacer { display: block; }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img { height: 72px; width: auto; display: block; }
.nav-desktop { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-desktop a {
  font-family: Abel, "Trebuchet MS", sans-serif;
  color: #555;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] { color: #5598cf; }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #333;
  cursor: pointer;
  padding: 8px;
}
.mobile-panel {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 8px 20px 16px;
}
.mobile-panel ul { list-style: none; margin: 0; padding: 0; }
.mobile-panel a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  text-transform: uppercase;
  color: #444;
  border-bottom: 1px solid #eee;
  font-family: Abel, "Trebuchet MS", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
}

.page-hero {
  background: var(--navy);
  color: #fff;
  min-height: 113px;
  display: flex;
  align-items: center;
}
.page-hero h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-slider { position: relative; height: 600px; overflow: hidden; background: #0b3a4a; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 121, 147, 0.46);
}
.hero-copy { position: relative; z-index: 1; max-width: 640px; padding: 0 48px; }
.slider-arrow:focus { outline: none; }
.hero-copy h2 {
  margin: 0 0 10px;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero-copy p { margin: 0 0 22px; font-size: 22px; font-weight: 500; line-height: 1.35; }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 0.85;
}
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  border: 0;
  border-radius: 6px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
}
.btn:hover { background: #15357a; }
.btn-magenta { background: #a21a6b; }
.btn-magenta:hover { background: #861457; }

.about {
  background: var(--gray-2);
  margin: 70px 0 80px;
  padding: 28px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
}
.about-grid img { width: 100%; height: 298px; object-fit: cover; border-radius: 25px; display: block; }
.about h2 { margin: 0; color: var(--navy); font-size: 32px; font-weight: 700; line-height: 1.15; }
.about h3 { margin: 6px 0 14px; color: var(--navy); font-size: 16px; font-weight: 700; letter-spacing: 0.02em; }
.about p { margin: 0; color: #666; font-size: 15px; }
.about p + p { margin-top: 14px; }
.rule { width: 180px; height: 2px; background: #7eb6e0; margin-top: 16px; }

.section-title {
  text-align: center;
  color: var(--navy);
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 36px;
}
.section-title.sky { color: var(--sky); font-weight: 600; font-size: 22px; }

.audience {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 90px;
}
.audience-card {
  position: relative;
  min-height: 460px;
  border-radius: 25px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.audience-card .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 30, 40, 0.55), rgba(20, 30, 40, 0.15));
}
.audience-card .inner { position: relative; z-index: 1; padding: 36px 28px 32px; text-align: center; width: 100%; }
.audience-card strong { display: block; font-size: 20px; letter-spacing: 0.04em; margin-bottom: 8px; }
.audience-card p { margin: 0 0 18px; font-size: 18px; line-height: 1.35; }
.audience--produtos {
  max-width: 892px;
  margin: 30px auto 50px;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.audience--produtos > span { display: none; }
.audience--produtos .audience-card { align-items: center; min-height: 430px; }
.audience--produtos .shade {
  background: rgba(53, 49, 49, 0.5);
  transition: background 0.25s ease;
}
.audience--produtos .audience-card:hover .shade { background: rgba(13, 119, 188, 0.5); }
.audience--produtos .inner { padding: 48px 32px; }
.audience--produtos strong { font-size: 18px; font-weight: 700; letter-spacing: 0.04em; }
.audience--produtos p { font-size: 16px; font-weight: 500; }
.audience--produtos .btn { border-radius: 24px; padding: 10px 22px; }
.audience-card.fade-left { animation: fadeLeft 0.9s ease both; }
.audience-card.fade-right { animation: fadeRight 0.9s ease both; }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: none; } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: none; } }

.health {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  margin: 80px 0;
}
.health-copy {
  background: var(--gray);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.health-copy h2 { margin: 0 0 16px; color: var(--navy); font-size: 30px; font-weight: 800; line-height: 1.2; max-width: 460px; }
.health-copy p { margin: 0 0 28px; font-size: 16px; color: #444; }
.health-actions { display: flex; gap: 28px; flex-wrap: wrap; }
.health-photo { background: #353131 center/cover no-repeat; min-height: 320px; }

.featured {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  margin: 10px 0 70px;
}
.feature-card {
  border: 1px solid #e4e4e4;
  padding: 28px 22px 26px;
  text-align: center;
}
.feature-card h3 { margin: 0 0 12px; font-size: 18px; font-weight: 600; color: #222; }
.feature-card p { margin: 0 0 22px; color: var(--muted); font-weight: 500; min-height: 72px; }

.partners { background: var(--gray); padding: 48px 0 36px; margin-top: 30px; }
.partners h2 {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 0 0 22px;
  color: #222;
}
.partner-row { display: flex; align-items: center; gap: 8px; }
.partner-viewport { overflow: hidden; flex: 1; }
.partner-track { display: flex; transition: transform 0.35s ease; }
.partner-track a {
  flex: 0 0 20%;
  display: grid;
  place-items: center;
  height: 78px;
  padding: 0 8px;
  box-sizing: border-box;
}
.partner-track img { max-height: 58px; width: auto; max-width: 100%; object-fit: contain; background: #fff; }
.partner-arrow {
  width: 36px; height: 36px; border-radius: 50%; border: 0; background: #d0d0d0; color: #fff; cursor: pointer; flex: none;
}

.site-footer { background: var(--navy); color: #fff; padding: 42px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr auto 1fr;
  gap: 28px;
  align-items: start;
}
.site-footer h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.85);
  padding-bottom: 8px;
  max-width: 220px;
}
.site-footer p, .site-footer a { color: #fff; text-decoration: none; margin: 0; }
.site-footer .contact-line { display: flex; align-items: center; gap: 8px; margin: 6px 0; }
.fb {
  width: 42px; height: 42px; border-radius: 6px; background: #3b5998;
  display: grid; place-items: center; color: #fff; margin-top: 28px;
}
.footer-logo { justify-self: end; }
.footer-logo img { width: 210px; height: auto; }
.copyright {
  background: var(--bar);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  font-size: 13px;
}
.copyright a { color: #fff; }

.wa-float, .to-top {
  position: fixed;
  z-index: 50;
  bottom: 18px;
}
.wa-float { right: 18px; }
.wa-float a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 16px 10px 12px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.to-top {
  left: 18px;
  width: 36px; height: 36px;
  border: 0;
  background: #3a3a3a;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.prose { padding: 48px 0 20px; }
.prose .lead { text-align: center; color: var(--sky); font-size: 20px; font-weight: 600; margin: 8px 0 28px; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin: 10px 0 36px;
}
.split img { width: 100%; border-radius: 4px; display: block; }
.split p { margin: 0 0 14px; color: #222; font-size: 15px; }
.about-page .split img { border-radius: 18px; height: 280px; object-fit: cover; }

.band {
  position: relative;
  min-height: 230px;
  margin: 0 auto 22px;
  max-width: 920px;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.band-copy {
  background: rgba(70, 90, 120, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 24px 28px;
}
.band-copy h3 { margin: 0 0 8px; font-size: 22px; }
.band-copy p { margin: 0; font-size: 15px; }

.icon-grid, .check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 16px;
  text-align: center;
  margin: 10px 0 28px;
}
.icon-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.icon-item i {
  display: block;
  font-size: 34px;
  color: var(--navy);
  margin: 0 auto 8px;
}
.icon-item svg, .icon-item .ico { color: var(--navy); margin-bottom: 8px; }
.icon-item h3, .icon-item strong { display: block; color: var(--navy); font-size: 16px; font-weight: 600; margin: 8px 0; }
.icon-item p { margin: 0; color: #666; font-size: 14px; }
.check-grid { grid-template-columns: 1fr 1fr; text-align: left; max-width: 760px; margin-inline: auto; gap: 10px 40px; }
.check-grid li, .ticks li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--navy);
  font-weight: 600;
}
.ticks { margin: 0; padding: 0; }
.ticks li { margin: 8px 0; font-weight: 500; color: #333; }
.dot {
  width: 22px; height: 22px; border-radius: 50%; background: #7ec8ee; color: #fff;
  display: inline-grid; place-items: center; flex: none; font-size: 13px;
}

.cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.plain-card { border: 1px solid #d5d5d5; padding: 22px 26px 26px; text-align: center; }
.plain-card h3 { color: var(--sky); font-weight: 600; margin: 0 0 12px; }
.plain-card img { width: 100%; max-width: 280px; margin-top: 12px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 18px;
  margin: 10px 0 40px;
}
.product-card { background: #f3f3f3; text-decoration: none; color: #333; display: block; }
.product-card img { width: 100%; height: 180px; object-fit: cover; display: block; background: #ddd; }
.product-card span { display: block; text-align: center; padding: 12px 8px 14px; font-size: 15px; }

.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 18px 0 28px; }
.cert-card {
  background: #f4f7fb;
  border-radius: 8px;
  text-align: center;
  padding: 18px 16px 20px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.cert-card img { height: 120px; width: auto; object-fit: contain; }
.cert-card h3 { margin: 10px 0 4px; color: #555; font-size: 16px; }
.cert-card p { margin: 2px 0; color: #666; }
.price-line { color: #8a8a8a; font-size: 22px; font-weight: 600; margin: 8px 0 6px; }
.info-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; background: #f7f9fb; padding: 36px 28px; margin: 20px 0 40px; }
.info-3 h3 { text-align: center; color: var(--navy); }
.info-3 p { color: #555; font-size: 14px; }
.advantages {
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 420px;
  background: url("/assets/img/parallax-image.png") center/cover no-repeat;
  width: 100vw;
  margin: 10px calc(50% - 50vw) 36px;
  padding: 48px max(28px, calc(50vw - 570px)) 48px 0;
}
.advantages-box {
  width: min(640px, 58%);
  background: #26478d;
  color: #fff;
  margin: 0;
  padding: 32px 36px 22px 52px;
  border-radius: 160px 0 0 160px;
}
.advantages-box h3 { text-align: center; margin: 0 0 16px; color: #fff; font-weight: 600; font-size: 22px; }
.advantages-box ul {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.advantages-box li { margin: 0; display: flex; gap: 8px; font-size: 14px; color: #fff; font-weight: 400; line-height: 1.35; }
.advantages-box .fas, .advantages-box .fab { color: #fff; margin-top: 2px; flex: none; }
.advantages-box .serasa { display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: center; margin: 12px 0 0; font-size: 14px; }
.advantages-box .serasa span { display: inline-flex; align-items: center; gap: 6px; }
.quick { display: flex; flex-wrap: wrap; gap: 12px; margin: 12px 0 30px; }
.quick a { min-width: 140px; text-align: center; }

.insurers h2 { color: var(--sky); text-align: center; font-weight: 600; }
.insurer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.insurer {
  border: 1px solid #9ec3e4;
  background: #f4f7fa;
  border-radius: 6px;
  padding: 14px 16px 12px;
}
.insurer h3 { margin: 0 0 8px; text-align: center; color: var(--sky); font-size: 16px; font-weight: 600; }
.insurer a, .insurer span { display: flex; gap: 8px; align-items: center; color: #3a3a3a; text-decoration: none; margin: 3px 0; font-size: 14px; }
.useful { display: flex; gap: 16px; flex-wrap: wrap; margin: 8px 0 28px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; margin-bottom: 40px; }
.field { display: block; margin: 0 0 14px; color: #444; font-size: 14px; }
.field input, .field textarea {
  width: 100%;
  box-sizing: border-box;
  margin-top: 4px;
  border: 1px solid #ccc;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 14px;
}
.robot {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid #d3d3d3; background: #f9f9f9; padding: 12px 14px; max-width: 300px;
}
.map iframe { width: 100%; height: 360px; border: 0; }
.hp { position: absolute; left: -9999px; }

.archive-entry { padding: 8px 0 28px; border-bottom: 1px solid #eee; margin-bottom: 28px; }
.archive-entry img { width: 100%; max-height: 460px; object-fit: cover; display: block; margin-bottom: 16px; }
.archive-entry h2 { margin: 0 0 8px; font-size: 26px; }
.archive-entry h2 a { color: #222; text-decoration: none; }
.meta { color: #777; font-size: 13px; margin-bottom: 10px; }
.meta a { color: #777; }
.more {
  display: inline-block; border: 1px solid #ccc; padding: 8px 14px; text-decoration: none; color: #444; background: #fafafa;
}

.cta-wrap { text-align: center; margin: 28px 0 10px; }
.note { text-align: center; color: #666; font-size: 13px; }

@media (max-width: 1024px) {
  .health-copy { padding: 40px 28px; }
  .featured { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-logo { justify-self: start; }
  .icon-grid.cols-5, .icon-grid { grid-template-columns: repeat(3, 1fr); }
  .insurer-grid, .cert-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .mobile-panel.is-open { display: block; }
  .hero-slider { height: 420px; }
  .hero-copy h2 { font-size: 28px; }
  .hero-copy p { font-size: 16px; }
  .slider-arrow { display: none; }
  .about-grid, .split, .health, .contact-layout, .advantages, .cards-2, .info-3, .audience {
    grid-template-columns: 1fr;
  }
  .audience-card { min-height: 380px; }
  .band { grid-template-columns: 1fr; min-height: 280px; }
  .icon-grid, .icon-grid.cols-5, .product-grid, .cert-grid, .insurer-grid { grid-template-columns: 1fr 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .advantages { padding: 20px 16px; min-height: 0; }
  .advantages-box { width: 100%; border-radius: 16px; padding: 22px 18px; }
  .advantages-box ul { grid-auto-flow: row; grid-template-rows: none; grid-template-columns: 1fr; }
  .partner-track a { flex-basis: 50%; }
  .page-hero h1 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .icon-grid, .icon-grid.cols-5, .product-grid, .cert-grid, .insurer-grid { grid-template-columns: 1fr; }
  .container { width: min(1140px, calc(100% - 28px)); }
}
