:root {
  --green: #43bd22;
  --green-dark: #087331;
  --orange: #ff9d00;
  --orange-dark: #ef6b00;
  --dark: #121820;
  --muted: #667085;
  --light: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(18, 24, 32, 0.14);
}

/* RESET */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1320px, calc(100% - 40px));
  margin-inline: auto;
}

/* TOPO */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 8px 0;
}

.brand img {
  width: auto;
  height: 68px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
}

.menu a {
  font-size: 14px;
  transition: color 0.2s ease;
}

.menu a:not(.btn-nav):hover {
  color: var(--green-dark);
}

.btn-nav,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-nav:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-nav,
.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 12px 30px rgba(67, 189, 34, 0.28);
}

.secondary {
  color: var(--green-dark);
  background: var(--white);
  border: 2px solid rgba(8, 115, 49, 0.18);
}

.menu-btn {
  display: none;
  padding: 10px 13px;
  color: var(--white);
  background: var(--green-dark);
  border: 0;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 16px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(67, 189, 34, 0.2), transparent 32%),
    radial-gradient(circle at 10% 90%, rgba(255, 157, 0, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7fff3 56%, #fff4e5 100%);
}

.hero::before {
  position: absolute;
  right: -8%;
  bottom: -210px;
  left: -8%;
  height: 280px;
  content: "";
  background: linear-gradient(135deg, var(--orange), var(--green));
  border-radius: 50% 50% 0 0;
  opacity: 0.1;
}

.hero-intro {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 140px;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
}

.hero-heading {
  position: relative;
  z-index: 2;
  grid-column: 2;
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  padding: 9px 14px;
  color: #aa5100;
  background: #fff2da;
  border: 1px solid #ffd39b;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green-dark);
  background: #ecfff0;
  border-color: #bfeac8;
}

.hero h1 {
  max-width: 1260px;
  margin: 8px auto 0;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--green-dark);
}

.hero .hero-description {
  width: 100%;
  max-width: 1100px;
  margin: 8px auto 0;
  color: #475467;
  font-size: 15.5px;
  line-height: 1.4;
  text-align: center;
}

.hero .hero-description span {
  display: block;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: #475467;
  font-size: 16px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 10px auto 16px;
}

.hero .btn {
  min-height: 44px;
  padding: 11px 18px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  grid-column: 3;
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
  height: min(195px, 20vw);
  max-height: 195px;
  min-height: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 30px rgba(18, 24, 32, 0.16));
}

/* Mantem compatibilidade caso o card visual seja usado no HTML. */
.hero-card {
  position: relative;
  min-height: 520px;
  padding: 34px;
  overflow: hidden;
  background: linear-gradient(145deg, #101820, #182635);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero-card::after {
  position: absolute;
  top: -60px;
  right: -90px;
  width: 290px;
  height: 290px;
  content: "";
  background: linear-gradient(135deg, var(--green), var(--orange));
  border-radius: 50%;
  opacity: 0.88;
}

.circle {
  position: absolute;
  border: 34px solid;
  border-radius: 50%;
}

.circle.one {
  bottom: -70px;
  left: -95px;
  width: 310px;
  height: 310px;
  border-color: rgba(67, 189, 34, 0.32);
}

.circle.two {
  right: -55px;
  bottom: 30px;
  width: 240px;
  height: 240px;
  border-color: rgba(255, 157, 0, 0.34);
}

.person-card {
  position: absolute;
  right: 38px;
  bottom: 90px;
  left: 38px;
  z-index: 2;
  padding: 34px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.tag {
  display: inline-block;
  padding: 8px 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.person-card h2 {
  margin: 15px 0 10px;
  font-size: 34px;
}

.person-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.person-card a {
  color: var(--green-dark);
  font-weight: 900;
}

/* SECOES */
.section {
  padding: 82px 0;
}

.section-title {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.section-title h2,
.audience-grid h2,
.cta-box h2 {
  margin: 12px 0;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-title p,
.audience-grid p,
.cta-box p {
  color: var(--muted);
  line-height: 1.7;
}

/* FORMULARIOS DE SIMULACAO */
.simulation-section {
  background: var(--light);
}

.simulation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.simulation-form {
  position: relative;
  padding: 30px;
  background: var(--white);
  border: 1px solid #e5e9ef;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(18, 24, 32, 0.08);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.form-heading > div > span {
  display: block;
  margin-bottom: 3px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 0;
  font-size: 22px;
}

.form-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 8px;
  font-size: 21px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: block;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field > span {
  display: block;
  margin-bottom: 7px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  outline: none;
  font: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(67, 189, 34, 0.12);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  color: #475467;
  font-size: 12px;
  line-height: 1.5;
  cursor: pointer;
}

.consent-field input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--green-dark);
}

.submit-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-message {
  min-height: 20px;
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.form-message.success {
  color: var(--green-dark);
}

.form-message.error {
  color: #b42318;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 14px 18px;
  color: var(--green-dark);
  background: #ecfff0;
  border: 1px solid #bfeac8;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

.form-security-note i {
  flex: 0 0 auto;
  font-size: 20px;
}

/* EMPRESTIMOS */
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid #eef0f4;
  border-radius: 18px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.service-card.highlight {
  color: var(--white);
  background: linear-gradient(145deg, var(--green-dark), var(--green));
}

.service-card.highlight p {
  color: #eaffed;
}

.icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  background: #fff4df;
  border-radius: 14px;
  font-size: 25px;
}

.highlight .icon {
  background: rgba(255, 255, 255, 0.18);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

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

/* ATENDIMENTO */
.audience-section {
  background: var(--light);
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 40px;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.audience-card,
.audience-list > div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 24px 28px;
  color: #061426;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  font-size: 1.35rem;
  font-weight: 900;
}

.audience-card img {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.prefeitura-icon {
  font-size: 44px;
  line-height: 1;
}

/* PLANOS DE SAUDE */
.health-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #101820, #0d2a1a);
}

.health-section::before {
  position: absolute;
  top: -120px;
  right: -90px;
  width: 390px;
  height: 390px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.18;
}

.health-section .container {
  width: min(1440px, calc(100% - 40px));
}

.health-section .section-title {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin-bottom: 48px;
}

.section-title.light {
  color: var(--white);
}

.section-title.light p {
  color: #d5e6da;
}

.health-section .section-title h2 {
  max-width: 1220px;
  margin: 14px auto 22px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
}

.health-section .section-title p {
  max-width: 980px;
  margin: 0 auto;
  font-size: 18px;
}

.health-logos {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 190px));
  justify-content: center;
  gap: 24px;
  margin-top: 50px;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  height: 125px;
  padding: 22px;
  background: var(--white);
  border-bottom: 6px solid var(--green);
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-8px);
}

.logo-card img {
  max-width: 150px;
  max-height: 78px;
  object-fit: contain;
}

.logo-card:not(:has(img)) {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.amil { color: #1765d8; }
.assim { color: #e73828; }
.unimed { color: #008f4c; }
.golden { color: #b88100; }
.notre { color: #662d91; }
.bradesco { color: #c91517; }
.sulamerica { color: #f57c00; }

/* CTA */
.cta-section {
  background: var(--white);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 42px;
  background: linear-gradient(135deg, #fff8eb, #ecfff0);
  border: 1px solid #ffe0aa;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.cta-box > div {
  max-width: 820px;
}

/* AVISO LEGAL */
.legal-section {
  padding: 58px 0;
  background: #f6f8fb;
  border-top: 1px solid #e4e7ec;
}

.legal-content {
  max-width: 1120px;
}

.legal-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.legal-heading > div > span {
  display: block;
  margin-bottom: 4px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.legal-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.legal-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
  font-size: 23px;
}

.legal-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.legal-copy p {
  margin: 0;
  color: #475467;
  font-size: 14px;
  line-height: 1.75;
}

.fraud-alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 26px;
  padding: 20px 22px;
  color: #7a2e0e;
  background: #fff8eb;
  border: 1px solid #ffd39b;
  border-left: 5px solid var(--orange-dark);
  border-radius: 8px;
}

.fraud-alert > i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--orange-dark);
  font-size: 24px;
}

.fraud-alert h3 {
  margin: 0 0 6px;
  font-size: 18px;
  text-transform: uppercase;
}

.fraud-alert p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

/* RODAPE */
.footer {
  padding: 54px 0 0;
  color: var(--white);
  background: #0c1118;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 30px;
}

.footer-logo {
  width: auto;
  height: 95px;
  padding: 8px;
  object-fit: contain;
  background: var(--white);
  border-radius: 12px;
  mix-blend-mode: normal;
}

.footer p {
  color: #d7dde7;
  line-height: 1.65;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  color: var(--white);
  background: #171e28;
  border: 1px solid #2d3745;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);
}

.footer-social-link.instagram:hover {
  border-color: #e1306c;
}

.footer-social-link.discord:hover {
  border-color: #5865f2;
}

.footer-social-link i {
  font-size: 20px;
}

.footer-legal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #bfeac8;
  font-size: 13px;
  font-weight: 800;
}

.footer-legal-link:hover {
  color: var(--white);
}

.copy {
  margin-top: 40px;
  padding: 18px;
  color: #abb4c2;
  background: #070a0f;
  font-size: 13px;
  text-align: center;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.35);
  font-size: 34px;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

/* LOADER */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff, #f4fff0);
}

#loader img {
  width: 600px;
  max-width: 85%;
  margin-bottom: 25px;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
}

#loader h2 {
  margin: 0;
  color: #121820;
  font-size: 38px;
  font-weight: 900;
}

#loader p {
  margin-top: 15px;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 700;
}

.loader-bar {
  width: min(260px, 70vw);
  height: 8px;
  margin-top: 25px;
  overflow: hidden;
  background: #e5e7eb;
  border-radius: 999px;
}

.loader-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--orange));
  animation: loading 2s linear forwards;
}

@keyframes loading {
  to {
    width: 100%;
  }
}

/* TABLETS */
@media (max-width: 980px) {
  .hero-intro {
    grid-template-columns: 100px minmax(0, 1fr) 100px;
    gap: 12px;
  }

  .hero h1 {
    font-size: clamp(40px, 5vw, 50px);
  }

  .hero-visual {
    height: min(175px, 20vw);
    max-height: 175px;
    min-height: 0;
  }

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

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

  .health-logos {
    grid-template-columns: repeat(3, minmax(0, 190px));
  }

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

  .menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 20px;
    background: var(--white);
    border: 1px solid #edf0f5;
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .menu a {
    padding: 12px;
    text-align: center;
  }

  .menu.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .health-section .section-title h2 {
    font-size: clamp(36px, 7vw, 58px);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding: 16px 0 0;
  }

  .hero-intro {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-heading,
  .hero-visual {
    grid-column: 1;
  }

  .hero h1 {
    margin-inline: auto;
  }

  .hero p {
    margin-inline: auto;
  }

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

  .hero-visual {
    width: min(520px, 100%);
    height: 180px;
    max-height: 180px;
    min-height: 0;
    margin: 10px auto 0;
  }

  .simulation-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .legal-copy {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* CELULARES */
@media (max-width: 620px) {
  .container,
  .health-section .container {
    width: min(100% - 28px, 1320px);
  }

  .nav {
    min-height: 74px;
  }

  .brand img {
    height: 54px;
  }

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

  .hero h1 {
    margin-top: 10px;
    font-size: 34px;
    line-height: 1.08;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero .hero-description {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.5;
  }

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

  .btn {
    width: 100%;
  }

  .cards,
  .audience-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 160px;
    max-height: 160px;
    margin-top: 8px;
  }

  .section {
    padding: 64px 0;
  }

  .legal-section {
    padding: 44px 0;
  }

  .legal-heading {
    align-items: flex-start;
  }

  .legal-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .fraud-alert {
    padding: 18px 16px;
  }

  .form-security-note {
    align-items: flex-start;
    padding: 13px 14px;
    text-align: left;
  }

  .simulation-form {
    padding: 22px 18px;
  }

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

  .form-field.full {
    grid-column: auto;
  }

  .form-heading h3 {
    font-size: 20px;
  }

  .audience-card,
  .audience-list > div {
    min-height: 94px;
    padding: 18px 20px;
    font-size: 18px;
  }

  .audience-card img {
    width: 54px;
    height: 54px;
  }

  .health-section {
    padding: 72px 0;
  }

  .health-section .section-title h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .health-section .section-title p {
    font-size: 15px;
  }

  .health-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .logo-card {
    height: 105px;
    padding: 14px;
  }

  .logo-card img {
    max-width: 110px;
    max-height: 56px;
  }

  .cta-box {
    flex-direction: column;
    align-items: stretch;
    padding: 30px 24px;
  }

  .footer-logo {
    height: 82px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 58px;
    height: 58px;
    font-size: 31px;
  }

  #loader img {
    width: 220px;
    max-width: 80%;
  }

  #loader h2 {
    font-size: 30px;
  }

  #loader p {
    padding: 0 20px;
    font-size: 16px;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 31px;
  }

  .health-section .section-title h2 {
    font-size: 31px;
  }

  .health-logos {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.developer-credit {
  margin-left: 10px;
}

.developer-credit a {
  color: #43bd22;
  font-weight: 800;
}

.developer-credit a:hover {
  color: #ff9d00;
  text-decoration: underline;
}

@media (max-width: 620px) {
  .developer-credit {
    display: block;
    margin: 7px 0 0;
  }
}
