:root {
  --sage: #5F7052;
  --sage-dark: #4B5940;
  --terracotta: #C97B4A;
  --cream: #F5F0E6;
  --beige: #EDE7D6;
  --white: #ffffff;
  --text-dark: #3d4a35;
  --text-body: #6b7563;
  --text-muted: #5b5b52;
  --text-light: #8a8a7d;
  --divider: #e5ddc8;
  --footer-bg: #3d4a35;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
}

.page {
  max-width: 520px;
  margin: 0 auto;
  background: var(--cream);
  min-height: 100vh;
}

.section {
  padding: 30px 24px;
}

.label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.label__line {
  width: 22px;
  height: 2px;
  background: var(--terracotta);
}

.label__text {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--sage);
  text-transform: uppercase;
}

.heading {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  margin: 0 0 10px;
}

.btn {
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-size: 12.5px;
  padding: 10px 22px;
  border-radius: 2px;
  text-decoration: none;
}

.btn--outline {
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
}

.btn--solid {
  background: var(--terracotta);
  color: #fff;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--divider);
}

.nav__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  color: var(--text-dark);
}

.nav__links {
  font-size: 10px;
  color: var(--text-body);
  letter-spacing: 0.5px;
}

.nav__links a {
  color: var(--text-body);
  text-decoration: none;
}

.nav__links a:hover {
  color: var(--terracotta);
}

.hero {
  background: var(--cream);
}

.hero__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 18px;
}

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

.hero__name {
  font-size: 34px;
}

.hero__subtitle {
  font-size: 13px;
  color: var(--text-body);
  max-width: 280px;
  line-height: 1.5;
  margin: 0 0 16px;
}

.sobre__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  margin: 14px 0;
}

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

.sobre__text {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
}

.servicos {
  background: var(--cream);
}

.servicos__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.servicos__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.servicos__item--last {
  border-bottom: none;
}

.servicos__arrow {
  color: var(--terracotta);
  font-size: 16px;
  font-weight: 400;
}

.contato__subtitle {
  font-size: 12.5px;
  color: var(--text-body);
  margin: 0 0 18px;
}

.contato__handle {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 16px;
}

.contato__address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
  margin-top: 20px;
}

.footer {
  background: var(--footer-bg);
  color: rgba(245, 240, 230, 0.7);
  font-size: 10px;
  text-align: center;
  padding: 12px 24px;
}

.sobre__credentials {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.sobre__credentials li {
  position: relative;
  padding-left: 14px;
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 6px;
}

.sobre__credentials li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--terracotta);
}
