:root {
  --blue-900: #071850;
  --blue-800: #10236d;
  --blue-700: #17368f;
  --blue-100: #eef4ff;
  --ink: #172033;
  --muted: #5e6b82;
  --line: #dbe4f0;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --gold: #b79951;
  --shadow: 0 24px 60px rgba(7, 24, 80, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(23, 54, 143, 0.12), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f7f9fd 42%, #fff 100%);
  line-height: 1.6;
}

a {
  color: var(--blue-700);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.55rem clamp(1rem, 4vw, 3.2rem);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  display: block;
  width: min(185px, 38vw);
  height: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
}

.nav a {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--blue-800);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover {
  background: var(--blue-100);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.85fr);
  min-height: 480px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #fff;
}

.hero__copy {
  display: grid;
  align-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
}

.hero h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.85rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero p {
  max-width: 38rem;
  font-size: 1.05rem;
}

.hero__image {
  min-height: 360px;
  background:
    linear-gradient(90deg, rgba(7, 24, 80, 0.65), transparent 45%),
    url("assets/hero-care.jpg") center / cover;
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--gold);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button,
.notice a,
.contact-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.62rem 1rem;
  border: 1px solid var(--blue-700);
  border-radius: 999px;
  background: var(--blue-700);
  color: #fff;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.actions,
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: -2rem auto 0;
  width: min(1120px, calc(100% - 2rem));
  padding: 1rem 1.15rem;
  border-radius: 1.1rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.notice strong,
.notice span {
  display: block;
}

.notice span {
  color: var(--muted);
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.4rem;
}

h2 {
  margin: 0 0 0.8rem;
  color: var(--blue-900);
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h3 {
  margin: 0 0 0.4rem;
  color: var(--blue-800);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.2;
}

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

.specialties article,
.values article {
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
}

.specialties p,
.values p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.8fr);
  align-items: center;
  gap: clamp(1.6rem, 5vw, 3.5rem);
}

.split img {
  width: 100%;
  border-radius: 1.1rem;
  box-shadow: var(--shadow);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.compact {
  max-width: 820px;
  text-align: center;
}

.compact .contact-row {
  justify-content: center;
}

.lgpd {
  max-width: 980px;
}

.lgpd ol {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.3rem;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 1.5rem;
}

.pill-grid span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
}

.callout {
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--gold);
  background: #fff;
}

.footer {
  display: grid;
  grid-template-columns: 240px minmax(14rem, 1fr) minmax(20rem, 0.9fr);
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.6rem, 4vw, 3rem);
  background: var(--blue-900);
  color: #fff;
}

.footer img {
  width: 100%;
  border-radius: 0.8rem;
  background: #fff;
}

.footer a {
  color: #fff;
}

.footer iframe {
  width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 1rem;
}

@media (max-width: 900px) {
  .site-header,
  .notice {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero,
  .split,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 17ch;
    font-size: clamp(2.15rem, 8vw, 3.4rem);
  }

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

@media (max-width: 620px) {
  .brand img {
    width: 165px;
  }

  .nav a {
    padding: 0.45rem 0.55rem;
    font-size: 0.82rem;
  }

  .hero__copy {
    padding: 2.2rem 1rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9.2vw, 2.55rem);
    line-height: 1.04;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero__image {
    min-height: 230px;
  }

  .specialties,
  .values {
    grid-template-columns: 1fr;
  }

  .notice {
    margin-top: 1rem;
  }
}
