:root {
  --fundo-base: #fbf4e8;
  --fundo-acolhimento: #d8bbaa;
  --acento-expressivo: #a85e4e;
  --texto-marca: #49332d;
  --texto-principal: #2c211e;
  --superficie-elevada: #fffcf8;
  --texto-interativo: #9c5042;
  --texto-secundario: #6c554e;
  --branco: #ffffff;
  --borda-suave: rgba(73, 51, 45, 0.22);
  --borda-clara: rgba(255, 252, 248, 0.32);
  --sombra-quente: 0 24px 64px rgba(73, 51, 45, 0.12);
  --fonte-editorial: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --fonte-interface: "Manrope", Inter, "Segoe UI", Roboto, Arial, sans-serif;
  --largura-conteudo: 1200px;
  --raio-pequeno: 8px;
  --raio-medio: 16px;
  --raio-grande: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--fundo-base);
  color: var(--texto-principal);
  font-family: var(--fonte-interface);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--texto-interativo);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: var(--raio-pequeno);
  background: var(--texto-principal);
  color: var(--branco);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--largura-conteudo));
  margin-inline: auto;
}

.draft-notice {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--texto-marca);
  color: var(--superficie-elevada);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  border-bottom: 1px solid var(--borda-suave);
}

.header-inner {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--texto-marca);
  text-decoration: none;
}

.brand-name {
  font-family: var(--fonte-editorial);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand-descriptor {
  margin-top: 7px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.primary-nav a {
  position: relative;
  padding-block: 8px;
  color: var(--texto-secundario);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--texto-interativo);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover {
  color: var(--texto-interativo);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  padding-block: clamp(64px, 8vw, 112px) clamp(80px, 10vw, 128px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.hero-copy h1,
.section-heading h2,
.about-copy h2,
.closing h2 {
  margin: 0;
  color: var(--texto-marca);
  font-family: var(--fonte-editorial);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.99;
}

.hero-copy > p {
  max-width: 620px;
  margin: 32px 0 0;
  color: var(--texto-secundario);
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.6;
}

.demo-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: 40px;
}

.demo-action > span {
  color: var(--texto-secundario);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button {
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--raio-pequeno);
  font: 600 0.875rem/1.2 var(--fonte-interface);
  letter-spacing: 0.01em;
}

.button:disabled {
  cursor: not-allowed;
}

.button-primary {
  border-color: var(--texto-interativo);
  background: var(--texto-interativo);
  color: var(--branco);
}

.button-primary:disabled {
  opacity: 1;
}

.media-placeholder {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(73, 51, 45, 0.26);
  background: var(--fundo-acolhimento);
  color: var(--texto-marca);
}

.media-placeholder::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(73, 51, 45, 0.2);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.media-placeholder-label {
  font-family: var(--fonte-editorial);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.media-placeholder-caption {
  position: absolute;
  right: 32px;
  bottom: 28px;
  left: 32px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.hero-portrait {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(73, 51, 45, 0.2);
  border-radius: 180px 180px var(--raio-grande) var(--raio-grande);
  background: var(--fundo-acolhimento);
  box-shadow: var(--sombra-quente);
}

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

.hero-portrait figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 252, 248, 0.28);
  border-radius: var(--raio-medio);
  background: rgba(73, 51, 45, 0.82);
  color: var(--superficie-elevada);
  backdrop-filter: blur(8px);
}

.hero-portrait figcaption span {
  font-family: var(--fonte-editorial);
  font-size: 1.25rem;
  line-height: 1.1;
}

.hero-portrait figcaption small {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.treatments {
  padding-block: clamp(80px, 10vw, 128px);
  background: var(--superficie-elevada);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 48px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section-heading h2,
.about-copy h2 {
  font-size: clamp(2.5rem, 4.7vw, 4.25rem);
  line-height: 1.04;
}

.section-heading > p {
  max-width: 480px;
  margin: 0;
  color: var(--texto-secundario);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.treatment-card {
  min-width: 0;
  grid-column: span 2;
}

.treatment-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.treatment-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.treatment-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--raio-medio);
  background: rgba(216, 187, 170, 0.6);
}

.treatment-media .media-placeholder-label {
  font-size: clamp(1.625rem, 2.5vw, 2.25rem);
}

.treatment-content {
  padding-top: 28px;
}

.treatment-content h3,
.principle h3 {
  margin: 0;
  color: var(--texto-marca);
  font-family: var(--fonte-editorial);
  font-size: clamp(1.5rem, 2vw, 1.875rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.treatment-content p,
.principle p {
  margin: 14px 0 0;
  color: var(--texto-secundario);
  font-size: 0.9375rem;
}

.about {
  padding-block: clamp(80px, 10vw, 128px);
  background: var(--fundo-acolhimento);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.portrait-frame {
  margin: 0;
}

.portrait-frame img {
  width: 100%;
  height: auto;
  border-radius: var(--raio-grande);
  box-shadow: var(--sombra-quente);
}

.section-label,
.provisional-label {
  color: var(--texto-marca);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-copy .section-label {
  margin: 0 0 24px;
}

.about-lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: var(--texto-marca);
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 500;
  line-height: 1.5;
}

.about-copy > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--texto-principal);
}

.principles {
  padding-block: clamp(80px, 10vw, 128px);
}

.principles-heading {
  align-items: start;
}

.principles-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.principle {
  min-width: 0;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--borda-suave);
  border-radius: var(--raio-medio);
  background: rgba(255, 252, 248, 0.62);
}

.principle-topline {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}

.principle .provisional-label {
  color: var(--texto-interativo);
}

.principle > p {
  max-width: 330px;
}

.location-preview {
  padding-block: clamp(80px, 10vw, 128px);
  background: var(--superficie-elevada);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1.22fr);
  align-items: center;
  gap: clamp(48px, 7vw, 88px);
}

.location-copy h2 {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--texto-marca);
  font-family: var(--fonte-editorial);
  font-size: clamp(2.5rem, 4.7vw, 4.25rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.location-lead {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--texto-secundario);
}

.location-details {
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
}

.location-details > div {
  padding-top: 16px;
  border-top: 1px solid var(--borda-suave);
}

.location-details dt {
  color: var(--texto-marca);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-details dd {
  margin: 6px 0 0;
  color: var(--texto-secundario);
}

.map-preview {
  overflow: hidden;
  border: 1px solid var(--borda-suave);
  border-radius: var(--raio-grande);
  background: var(--fundo-acolhimento);
  box-shadow: var(--sombra-quente);
}

.map-preview iframe {
  display: block;
  width: 100%;
  min-height: 460px;
  border: 0;
}

.map-preview p {
  margin: 0;
  padding: 14px 20px;
  border-top: 1px solid var(--borda-suave);
  color: var(--texto-secundario);
  font-size: 0.75rem;
}
.closing {
  padding-block: clamp(72px, 8vw, 104px);
  background: var(--texto-marca);
  color: var(--superficie-elevada);
}

.closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 64px;
}

.closing h2 {
  max-width: 790px;
  color: var(--superficie-elevada);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.02;
}

.closing p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 252, 248, 0.78);
}

.demo-action-light {
  max-width: 240px;
  margin-top: 0;
}

.demo-action-light > span {
  color: rgba(255, 252, 248, 0.72);
}

.button-light {
  border-color: var(--borda-clara);
  background: var(--superficie-elevada);
  color: var(--texto-marca);
}

.button-light:disabled {
  opacity: 0.9;
}

.site-footer {
  border-top: 1px solid var(--borda-suave);
  background: var(--fundo-base);
}

.footer-inner {
  display: flex;
  min-height: 152px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand > span {
  color: var(--texto-marca);
  font-family: var(--fonte-editorial);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
}

.footer-brand small {
  margin-top: 7px;
  color: var(--texto-secundario);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  color: var(--texto-secundario);
  font-size: 0.8125rem;
  font-weight: 600;
}

@media (max-width: 860px) {
  .hero-grid,
  .about-grid,
  .location-grid,
  .closing-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 680px;
  }

  .hero-portrait {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 120px 120px var(--raio-grande) var(--raio-grande);
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

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

  .treatment-card,
  .treatment-card:nth-child(4),
  .treatment-card:nth-child(5) {
    grid-column: auto;
  }


  .about-grid {
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
    gap: 48px;
  }

  .closing-inner {
    gap: 40px;
  }

  .demo-action-light {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 40px), var(--largura-conteudo));
  }

  .draft-notice {
    font-size: 0.625rem;
  }

  .header-inner {
    min-height: 124px;
    flex-wrap: wrap;
    align-content: center;
    gap: 16px;
    padding-block: 20px;
  }

  .brand {
    width: 100%;
  }

  .primary-nav {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero-copy > p {
    margin-top: 24px;
  }

  .demo-action {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 32px;
  }

  .button {
    width: 100%;
  }

  .hero-portrait {
    aspect-ratio: 1;
    border-radius: 80px 80px var(--raio-medio) var(--raio-medio);
  }

  .hero-portrait figcaption {
    right: auto;
    bottom: 14px;
    left: 50%;
    width: calc(100% - 32px);
    max-width: 290px;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    transform: translateX(-50%);
  }

  .hero-portrait figcaption span {
    font-size: 1rem;
    white-space: nowrap;
  }

  .hero-portrait figcaption small {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    line-height: 1.25;
  }

  .media-placeholder::before {
    inset: 12px;
  }

  .media-placeholder-caption {
    right: 24px;
    bottom: 22px;
    left: 24px;
  }

  .treatment-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .treatment-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .portrait-frame {
    max-width: 520px;
  }

  .principles-list {
    grid-template-columns: 1fr;
  }

  .principle {
    padding: 28px;
  }

  .principle-topline {
    margin-bottom: 28px;
  }

  .closing h2 {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .footer-inner {
    min-height: 180px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }

  .footer-details {
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
