@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Roboto-Light-Latin-BizgZZ3y.woff2") format("woff2");
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Roboto-Regular-Latin-DXyFPIdK.woff2") format("woff2");
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Roboto-Medium-Latin-C6iW8rdg.woff2") format("woff2");
}

:root {
  --brand-blue: #034fa3;
  --brand-blue-dark: #022e63;
  --brand-navy: #07182f;
  --brand-orange: #ff5a1f;
  --brand-orange-dark: #e7440b;
  --brand-green: #12a66a;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #dbe3ee;
  --soft: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 18px 40px rgb(15 23 42 / 0.12);
  --radius: 8px;
  scroll-behavior: smooth;
  color-scheme: light;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Roboto, Arial, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

p,
h1,
h2,
h3,
dl,
dd,
ul {
  margin: 0;
}

ul {
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
  padding: 0.65rem 1rem;
  background: rgb(255 255 255 / 0.94);
  border-bottom: 1px solid rgb(219 227 238 / 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 70px;
  min-height: 56px;
  text-decoration: none;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a,
.site-footer a {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 500;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--brand-orange);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.72rem 1rem;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.header-cta,
.button--primary {
  background: var(--brand-orange);
  color: var(--white);
}

.header-cta:hover,
.button--primary:hover {
  background: var(--brand-orange-dark);
}

.button--light {
  background: rgb(255 255 255 / 0.92);
  color: var(--brand-navy);
  border-color: rgb(255 255 255 / 0.8);
}

.button--light:hover {
  background: var(--white);
}

.button--outline {
  background: var(--white);
  color: var(--brand-blue);
  border-color: var(--line);
}

.button--outline:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue-dark);
}

.button:active,
.header-cta:active {
  transform: translateY(1px);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0.65rem;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--brand-blue-dark);
}

.hero {
  min-height: calc(100svh - 146px);
  display: grid;
  align-items: center;
  padding: 6rem 1rem 5rem;
  background:
    linear-gradient(90deg, rgb(7 24 47 / 0.9) 0%, rgb(7 24 47 / 0.7) 47%, rgb(7 24 47 / 0.18) 100%),
    url("../images/medica_clinico_geral_atendendo_D_Db_QRG_Xp_87529b9231.webp") center / cover no-repeat;
}

.hero__content {
  width: min(100%, 1120px);
  margin: 0 auto;
  color: var(--white);
}

.eyebrow {
  color: var(--brand-orange);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin-top: 0.45rem;
  color: var(--white);
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 0.98;
}

.hero__lead {
  max-width: 690px;
  margin-top: 1.15rem;
  color: rgb(255 255 255 / 0.88);
  font-size: 1.22rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 140px));
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-stats div {
  min-height: 90px;
  border: 1px solid rgb(255 255 255 / 0.24);
  border-radius: var(--radius);
  padding: 0.85rem;
  background: rgb(255 255 255 / 0.12);
  backdrop-filter: blur(8px);
}

.hero-stats dt {
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
}

.hero-stats dd {
  margin-top: 0.35rem;
  color: rgb(255 255 255 / 0.8);
  font-size: 0.86rem;
}

.plan-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.plan-strip__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 1rem;
}

.plan-strip article {
  min-height: 116px;
  padding: 1.2rem 1rem;
  border-left: 1px solid var(--line);
}

.plan-strip article:last-child {
  border-right: 1px solid var(--line);
}

.plan-strip span,
.plan-kicker {
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
}

.plan-strip strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.1;
}

.plan-strip small {
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 4.5rem 1rem;
}

.section--muted {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1120px) / 2 + 1rem));
  background: #eef4fb;
}

.section__intro {
  display: grid;
  gap: 0.65rem;
  max-width: 720px;
  margin-bottom: 2rem;
}

.section__intro h2,
.split-band h2 {
  color: var(--ink);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.08;
}

.section__intro p:not(.eyebrow),
.split-band p,
.benefit-card p,
.pricing-card li,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card,
.pricing-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgb(15 23 42 / 0.06);
}

.benefit-card {
  display: grid;
  gap: 0.75rem;
  min-height: 230px;
  padding: 1.15rem;
}

.benefit-card h3,
.pricing-card h3 {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.15;
}

.icon-dot {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: inset 0 0 0 10px rgb(255 255 255 / 0.28);
}

.icon-dot--blue {
  background: var(--brand-blue);
}

.icon-dot--green {
  background: var(--brand-green);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 1rem 1rem 4.5rem;
}

.split-band__media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-band__media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
}

.split-band__content {
  display: grid;
  gap: 1rem;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-orange);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.2rem;
}

.pricing-card--featured {
  border-color: var(--brand-orange);
  box-shadow: 0 18px 40px rgb(255 90 31 / 0.18);
}

.price {
  color: var(--ink);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 400;
}

.pricing-card ul {
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.pricing-card li {
  min-height: 22px;
  padding-left: 1rem;
  position: relative;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
}

.table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.table-wrap:focus-visible,
.button:focus-visible,
.header-cta:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible {
  outline: 3px solid rgb(255 90 31 / 0.36);
  outline-offset: 3px;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 1rem;
  text-align: left;
  vertical-align: middle;
}

thead th {
  background: var(--brand-blue-dark);
  color: var(--white);
  font-weight: 500;
}

tbody th {
  color: var(--ink);
  font-weight: 500;
}

tbody td {
  color: var(--muted);
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 860px;
}

.faq-list details {
  padding: 1rem 1.15rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 500;
}

.faq-list p {
  margin-top: 0.65rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem max(1rem, calc((100vw - 1120px) / 2 + 1rem));
  background: var(--brand-navy);
  color: var(--white);
}

.site-footer img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  box-sizing: border-box;
  padding: 6px;
  border-radius: var(--radius);
  background: var(--white);
}

.site-footer p {
  margin-top: 0.6rem;
  color: rgb(255 255 255 / 0.74);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.site-footer a {
  color: rgb(255 255 255 / 0.86);
}

.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 14px 28px rgb(37 211 102 / 0.28), 0 8px 14px rgb(15 23 42 / 0.18);
}

.whatsapp-float:hover {
  background: #1fbd5b;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    justify-self: stretch;
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    gap: 0;
    padding: 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    justify-self: end;
  }

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

  .split-band {
    grid-template-columns: 1fr;
  }

  .split-band__media {
    order: 2;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    gap: 0.6rem;
  }

  .brand,
  .brand img {
    width: 56px;
    height: 56px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0.62rem 0.75rem;
    font-size: 0.9rem;
  }

  .hero {
    min-height: calc(100svh - 126px);
    padding: 4.4rem 1rem 3.6rem;
    background:
      linear-gradient(90deg, rgb(7 24 47 / 0.94) 0%, rgb(7 24 47 / 0.82) 62%, rgb(7 24 47 / 0.5) 100%),
      url("../images/medica_clinico_geral_atendendo_D_Db_QRG_Xp_87529b9231.webp") center / cover no-repeat;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero__lead {
    font-size: 1.04rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .plan-strip__inner,
  .benefit-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .plan-strip article,
  .plan-strip article:last-child {
    border-right: 1px solid var(--line);
  }

  .section,
  .section--muted {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .section__intro h2,
  .split-band h2 {
    font-size: 1.85rem;
  }

  .split-band {
    padding-bottom: 3.5rem;
    gap: 2rem;
  }

  .split-band__media img {
    height: 360px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
