:root {
  --bg: #efe7dc;
  --bg-strong: #e7ddd0;
  --guidance-bg: #b4aca2;
  --surface: rgba(249, 244, 236, 0.72);
  --surface-strong: rgba(250, 246, 239, 0.9);
  --text: #322f28;
  --muted: #70695d;
  --line: rgba(99, 92, 77, 0.16);
  --accent: #83806a;
  --accent-deep: #6d6a57;
  --wood: #d5b0a2;
  --rose-soft: #dcc0b4;
  --illustration: #cfc5b7;
  --shadow: 0 28px 70px rgba(70, 63, 50, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-hyphens: none;
  hyphens: none;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Aptos", "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(241, 239, 232, 0.86)),
    url("./guidance%20image.png") center top / cover fixed no-repeat;
  word-break: normal;
  overflow-wrap: break-word;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.44), transparent 34%),
    linear-gradient(135deg, rgba(222, 223, 217, 0.84), rgba(206, 209, 200, 0.5));
  pointer-events: none;
}

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

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

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(131, 128, 106, 0.95), rgba(122, 119, 97, 0.95));
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(90, 82, 69, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 6px rgba(127, 142, 126, 0.1);
}

.brand-text {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: #fbf8f2;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  width: 16px;
  height: 1.5px;
  margin: 0 auto;
  background: #fbf8f2;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(247, 246, 241, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(127, 142, 126, 0.1);
  color: var(--text);
  outline: none;
}

.nav-cta {
  color: var(--text) !important;
  background: rgba(220, 192, 180, 0.28);
}

.section-frame {
  padding: 28px 22px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  gap: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  max-width: 18ch;
  text-wrap: balance;
}

.hero-text,
.about-copy p,
.area-card p,
.care-card p,
.contact-copy p,
.contact-item span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #f8f7f2;
  background: linear-gradient(135deg, var(--accent-deep), #8b876f);
  box-shadow: 0 16px 28px rgba(95, 83, 65, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(220, 192, 180, 0.18);
}

.hero-composition {
  display: grid;
  gap: 14px;
  align-items: start;
}

.stat-card,
.portrait-card,
.area-card,
.care-card,
.contact-panel,
.about-visual {
  border-radius: 24px;
  overflow: hidden;
}



.portrait-card {
  position: relative;
  min-height: 0;
  height: auto;
  aspect-ratio: 4 / 5;
  align-self: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.12)),
    rgba(255, 255, 255, 0.28);
}

.portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.portrait-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-grid;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 18px;
  color: #f5f3ed;
  background: rgba(127, 142, 126, 0.95);
  box-shadow: 0 16px 40px rgba(15, 15, 14, 0.2);
}

.badge-score {
  font-size: 1rem;
  font-weight: 700;
}

.badge-text {
  font-size: 0.84rem;
  color: rgba(245, 243, 237, 0.78);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  max-width: 11ch;
  text-wrap: balance;
}

.about-grid,
.contact {
  display: grid;
  gap: 20px;
}

.about {
  background:
    linear-gradient(135deg, rgba(131, 128, 106, 0.92), rgba(145, 141, 118, 0.76)),
    rgba(131, 128, 106, 0.84);
}

.about .eyebrow,
.about .section-heading h2 {
  color: #f6f3ed;
}

.about .eyebrow {
  color: rgba(246, 243, 237, 0.82);
}

.about-visual {
  display: block;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 4 / 5;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-copy {
  display: grid;
  gap: 18px;
  align-content: start;
  max-width: 560px;
  padding: 24px;
  margin: auto 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(247, 246, 241, 0.22);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 45px rgba(58, 52, 43, 0.12);
}

.about-copy p {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 252, 246, 0.92);
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.credential-row span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(220, 192, 180, 0.16);
  color: #fbf8f2;
  font-size: 0.92rem;
}

.areas-grid,
.care-grid {
  display: grid;
  gap: 14px;
}

.area-card,
.care-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: var(--surface-strong);
}

.area-card {
  border-color: rgba(109, 106, 87, 0.18);
  background: linear-gradient(180deg, rgba(131, 128, 106, 0.94), rgba(122, 119, 97, 0.96));
  box-shadow: 0 18px 34px rgba(78, 74, 59, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 98px;
  margin: 0 0 14px;
}

.area-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: 160px;
  object-fit: contain;
  object-position: center;
}

.area-image-tdah {
  height: 200px;
  max-width: 90%;
}

.care-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: 184px;
  object-fit: contain;
  object-position: center;
}

.care-image-large {
  height: 220px;
}

.line-illustration {
  width: min(100%, 120px);
  height: auto;
}

.line-illustration path,
.line-illustration circle,
.line-illustration ellipse,
.line-illustration line,
.line-illustration polyline {
  fill: none;
  stroke: var(--illustration);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.area-card h3,
.care-card h3,
.contact-item strong {
  margin: 0 0 10px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.area-card h3,
.area-card p {
  color: #f6efe5;
}

.area-card p,
.care-card p {
  margin: 0;
}



.contact-copy {
  display: grid;
  gap: 12px;
}

.contact-copy p {
  margin: 0;
  max-width: 56ch;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.contact-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  font-size: 1.1rem;
  color: var(--accent-deep);
  background: rgba(127, 142, 126, 0.12);
}

.contact-item div {
  display: grid;
  gap: 4px;
}

@media (min-width: 768px) {
  .site-shell {
    width: min(1280px, calc(100% - 48px));
    padding-top: 28px;
  }

  .topbar {
    padding: 18px 22px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 10px 14px;
    color: rgba(251, 248, 242, 0.9);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
  }

  .nav-cta {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2);
  }

  .nav-cta:hover {
    background: rgba(255, 255, 255, 0.3) !important;
  }

  .section-frame {
    padding: 24px 30px;
    margin-bottom: 14px;
  }

  .hero {
    grid-template-columns: 1.3fr minmax(300px, 0.7fr);
    align-items: center;
    min-height: 0;
  }

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

  .hero-text {
    font-size: 0.95rem;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-copy {
    display: grid;
    align-content: center;
    padding-right: 18px;
  }

  .hero-composition {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
  }

  .portrait-card {
    min-height: 0;
    height: auto;
    width: 100%;
    max-width: 300px;
  }

  .about-grid {
    grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 1.3fr);
    align-items: center;
    gap: 40px;
  }

  .about-visual {
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    padding: 0;
  }

  .about-copy {
    padding: 16px;
    gap: 12px;
  }

  .about-copy p {
    font-size: 0.95rem;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.2rem;
  }

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

  .area-card {
    padding: 14px 18px;
  }

  .area-image {
    height: 110px;
  }

  .area-image-tdah {
    height: 140px;
  }

  .area-card h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }

  .contact {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    align-items: start;
    gap: 32px;
  }

  .contact-copy p {
    font-size: 0.95rem;
  }

  .contact-panel {
    gap: 8px;
    padding: 12px;
  }

  .contact-item {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 10px 12px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .contact-item strong {
    font-size: 1.1rem;
    margin-bottom: 2px;
  }

  .contact-item span {
    font-size: 0.9rem;
  }
}

@media (min-width: 1100px) {
  .section-frame {
    padding: 26px 36px;
  }

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

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

  .contact-item {
    grid-template-columns: 42px 1fr;
    padding: 12px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }
}



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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.header-top, .navbar {
    background-color: var(--cor-fundo-sobre-mim);
    color: #ffffff;
}

.header-top a, .header-top h1, .header-top h2 {
    color: #ffffff;
}
