/* CliendiPrev — the placeholder that stands at cliendiprev.com.br until the
 * clinic's real site is written. Deliberately small: one column, system fonts
 * (the CSP is font-src 'self', so there is nothing to fetch), no script.
 *
 * The green is read off the logo, which is the only piece of the clinic's
 * identity that exists so far. */

:root {
  --green: #00a04a;
  --green-dark: #007a39;
  --ink: #16211b;
  --muted: #5d6b62;
  --line: #dfe7e2;
  --ground: #f6f9f7;
  --surface: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0 1.25rem;
  background: var(--ground);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.masthead {
  display: flex;
  justify-content: center;
  padding: 3rem 0 0;
}

.mark {
  width: 180px;
  height: auto;
  border-radius: 12px;
}

.page {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero {
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--green-dark);
}

.lede {
  margin: 0.35rem 0 0;
  font-size: 1.125rem;
  color: var(--muted);
}

.note {
  margin: 1.25rem auto 0;
  max-width: 34rem;
  color: var(--muted);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
}

h2 {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.pairs {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pair {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
}

.pair:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

dt {
  font-weight: 600;
}

dd {
  margin: 0;
  color: var(--muted);
  font-style: italic;
}

.staff p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.button {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
}

.button:hover,
.button:focus-visible {
  background: var(--green-dark);
}

:focus-visible {
  outline: 3px solid var(--green-dark);
  outline-offset: 2px;
}

.footer {
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 0 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 30rem) {
  .masthead {
    padding-top: 2rem;
  }

  .mark {
    width: 140px;
  }

  h1 {
    font-size: 1.875rem;
  }
}
