:root {
  --champagne: #efe0bd;
  --champagne-soft: #f8f1e3;
  --champagne-deep: #dec58f;
  --gold: #b98a32;
  --deep-gold: #93661d;
  --ink: #2c2520;
  --muted: #766b60;
  --ivory: #fffaf0;
  --wine: #6f2937;
  --sage: #74806e;
  --line: rgba(115, 91, 54, 0.12);
  --shadow: 0 30px 80px rgba(50, 38, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 255, 255, 0.9), transparent 23%),
    linear-gradient(115deg, rgba(185, 138, 50, 0.2), transparent 34%),
    linear-gradient(180deg, var(--champagne-soft), #ffffff 48%, #f3ead8);
  font-family: "Inter", Arial, sans-serif;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 250, 240, 0.9);
  border-bottom: 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--deep-gold);
}

.brand img {
  width: clamp(220px, 22vw, 350px);
  height: auto;
  filter: saturate(1.45) contrast(1.32) brightness(0.92);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: #4b3b29;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--deep-gold);
}

.site-nav .nav-cta {
  min-height: 42px;
  padding: 12px 18px;
  color: #fffaf0;
  background: linear-gradient(135deg, var(--deep-gold), var(--gold));
  border: 0;
  box-shadow: 0 14px 26px rgba(147, 102, 29, 0.18);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 77px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
  padding: clamp(58px, 7vw, 104px) clamp(20px, 6vw, 96px) clamp(58px, 7vw, 104px);
  overflow: hidden;
}

.hero::before {
  content: "LANDE CLINIC";
  position: absolute;
  left: clamp(20px, 6vw, 96px);
  right: clamp(20px, 6vw, 96px);
  top: 48%;
  z-index: -1;
  color: rgba(185, 138, 50, 0.075);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5rem, 18vw, 18rem);
  line-height: 0.78;
  white-space: nowrap;
  transform: translateY(-50%);
}

.hero-copy {
  max-width: 760px;
}

.location-line {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--deep-gold);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.6rem, 7.1vw, 7.2rem);
}

h2 {
  font-size: clamp(2.7rem, 5vw, 5.4rem);
}

h3 {
  font-size: 1.6rem;
}

p {
  line-height: 1.75;
}

.hero-copy p:not(.eyebrow),
.lead {
  color: #50453b;
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  padding-top: 12px;
}

.hero-actions,
.hero-actions,
.feature-panel,
.contact-form {
  display: flex;
  gap: 14px;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 0;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.button.primary {
  color: #fffdf7;
  background: linear-gradient(135deg, var(--deep-gold), var(--gold));
  box-shadow: 0 16px 34px rgba(147, 102, 29, 0.24);
}

.button.ghost {
  color: var(--deep-gold);
  background: rgba(255, 255, 255, 0.44);
}

.button.ghost.dark {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.72);
}

.hero-media {
  position: relative;
  min-height: 640px;
  overflow: visible;
  background: transparent;
  display: grid;
  place-items: end center;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 8% 1% 4% 4%;
  z-index: -1;
  background:
    radial-gradient(circle at 44% 22%, rgba(255, 250, 240, 0.98), transparent 30%),
    linear-gradient(135deg, rgba(185, 138, 50, 0.32), rgba(255, 250, 240, 0.72));
  border-radius: 46% 54% 44% 56%;
  pointer-events: none;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
}

.hero-media picture {
  display: grid;
  place-items: end center;
}

.hero-media img {
  object-fit: cover;
  object-position: center bottom;
  border-radius: 46% 54% 44% 56%;
  filter: saturate(0.92) contrast(1.04);
  filter: saturate(0.96) contrast(1.02) drop-shadow(0 34px 42px rgba(50, 38, 24, 0.18));
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 20px;
  color: var(--deep-gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  margin: 10px auto 0;
  background: linear-gradient(var(--gold), transparent);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0 clamp(20px, 6vw, 96px);
  background: linear-gradient(90deg, rgba(255, 250, 240, 0.5), rgba(239, 224, 189, 0.48));
}

.authority-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0 clamp(20px, 6vw, 96px);
  background: linear-gradient(90deg, rgba(239, 224, 189, 0.36), rgba(255, 250, 240, 0.44));
}

.authority-band div {
  min-height: 140px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px;
  background: transparent;
}

.authority-band span,
.method-statement span,
.experience-note span {
  color: var(--deep-gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.authority-band strong {
  max-width: 360px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.02;
}

.intro-band div {
  min-height: 148px;
  padding: 28px;
  background: transparent;
}

.intro-band strong {
  display: block;
  margin-bottom: 12px;
  color: var(--deep-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
}

.intro-band span {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 6vw, 96px);
}

.landeface,
.experience {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.24), rgba(239, 224, 189, 0.18));
}

.landeface {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.section-copy {
  max-width: 880px;
}

.section-copy > p,
.section-heading p {
  color: var(--muted);
}

.method-statement {
  display: grid;
  gap: 12px;
  margin: 32px 0 6px;
  padding: 28px 0;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0), rgba(239, 224, 189, 0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-statement strong {
  max-width: 760px;
  color: #3a2d24;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.04;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.steps article,
.service-grid article {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: transparent;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.steps article:hover,
.service-grid article:hover {
  transform: translateY(-4px);
  background: transparent;
  box-shadow: none;
}

.steps span {
  color: var(--wine);
  font-weight: 800;
}

.steps h3,
.service-grid h3 {
  margin-top: 12px;
  color: #3a2d24;
}

.steps p,
.service-grid p {
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-panel {
  position: sticky;
  top: 116px;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #fffaf0;
  background:
    linear-gradient(180deg, rgba(44, 37, 32, 0.16), rgba(44, 37, 32, 0.9)),
    url("assets/visual-skincare-mapping.jpg") center / cover,
    linear-gradient(145deg, rgba(222, 197, 143, 0.8), rgba(111, 41, 55, 0.42));
  box-shadow: none;
}

.sticker-panel {
  border: 0;
  clip-path: none;
  transform: none;
}

.feature-panel p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.15;
}

.doctor {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 241, 227, 0.9), rgba(248, 241, 227, 0.82) 48%, rgba(248, 241, 227, 0.66)),
    linear-gradient(0deg, rgba(239, 224, 189, 0.72), rgba(255, 250, 240, 0.4)),
    url("assets/dra-pamela-fundo-especialista.jpg") center top / cover;
}

.doctor-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.doctor-media picture {
  display: block;
  width: 100%;
}

.doctor-media img {
  width: 100%;
  height: min(74vh, 720px);
  object-fit: cover;
  object-position: center top;
  border: 0;
  clip-path: none;
  filter: saturate(0.94) contrast(1.04);
  box-shadow: none;
  transform: none;
}

.doctor-media img + img {
  display: none;
}

.doctor-media::before {
  content: none;
}

.signature {
  margin-top: 28px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--deep-gold);
  font-weight: 700;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
  border: 0;
  background: transparent;
}

.credential-grid div {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.credential-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--deep-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
}

.credential-grid span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.specialist-quote {
  padding: clamp(42px, 6vw, 76px) clamp(20px, 6vw, 96px);
  border-top: 0;
  border-bottom: 0;
  background: linear-gradient(90deg, rgba(255, 250, 240, 0.6), rgba(231, 210, 166, 0.36));
}

.specialist-quote p {
  max-width: 1180px;
  margin: 0 auto;
  color: var(--deep-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.45rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: 0.98;
  text-align: center;
}

.brand-manifest {
  display: grid;
  gap: 22px;
  padding: clamp(70px, 9vw, 124px) clamp(20px, 7vw, 120px);
  color: #fffaf0;
  background:
    linear-gradient(120deg, rgba(50, 38, 31, 0.95), rgba(117, 89, 50, 0.86)),
    radial-gradient(circle at 20% 20%, rgba(232, 205, 139, 0.26), transparent 34%);
}

.brand-manifest .eyebrow {
  color: var(--champagne);
}

.brand-manifest h2 {
  max-width: 1040px;
  margin: 0;
  color: #fffaf0;
  font-size: clamp(2.9rem, 5.8vw, 6.6rem);
  line-height: 0.98;
}

.brand-manifest p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.75;
}

.manifest-line {
  max-width: 860px;
  margin-top: 18px;
  padding: 28px 0;
  border-top: 1px solid rgba(232, 205, 139, 0.34);
  border-bottom: 1px solid rgba(232, 205, 139, 0.34);
}

.manifest-line span {
  color: var(--champagne);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 1;
}

.brand-manifest .manifest-closing {
  color: #fffaf0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: 1.05;
}

.clinic-atmosphere {
  min-height: min(92vh, 920px);
  display: grid;
  align-items: end;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 7vw, 120px);
  color: #fffaf0;
  background:
    linear-gradient(90deg, rgba(36, 30, 25, 0.84), rgba(36, 30, 25, 0.26) 54%, rgba(36, 30, 25, 0.08)),
    linear-gradient(0deg, rgba(36, 30, 25, 0.68), rgba(36, 30, 25, 0.02) 42%),
    url("assets/clinica-ambiente-sofa.jpg") center / cover;
}

.clinic-atmosphere-copy {
  max-width: 760px;
}

.clinic-atmosphere .eyebrow {
  color: var(--champagne);
}

.clinic-atmosphere h2 {
  color: #fffaf0;
  font-size: clamp(3rem, 6vw, 6.4rem);
}

.clinic-atmosphere p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.experience-note {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-note p {
  max-width: 840px;
  margin: 0;
  color: #50453b;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

.results-section {
  margin-top: clamp(42px, 6vw, 84px);
  margin-left: calc(clamp(20px, 6vw, 96px) * -1);
  margin-right: calc(clamp(20px, 6vw, 96px) * -1);
  padding: clamp(52px, 7vw, 92px) clamp(20px, 6vw, 96px);
  border: 0;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.78), rgba(231, 210, 166, 0.36)),
    var(--champagne-soft);
}

.results-copy {
  max-width: 880px;
  margin-bottom: 30px;
}

.results-copy h2 {
  margin: 0 0 14px;
  max-width: 780px;
  font-size: clamp(2.6rem, 4.7vw, 5rem);
}

.results-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.result-card {
  margin: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.result-card-wide {
  grid-column: span 2;
}

.result-card picture,
.result-card img {
  display: block;
  width: 100%;
}

.result-card img {
  height: auto;
  background: #050505;
}

.result-card figcaption {
  display: grid;
  gap: 6px;
  padding: 16px 0 6px;
  border-bottom: 1px solid var(--line);
}

.result-card figcaption strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--espresso);
}

.result-card figcaption span,
.result-note {
  color: var(--muted);
  line-height: 1.55;
}

.result-note {
  max-width: 780px;
  margin: 20px 0 0;
  font-size: 0.9rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 620px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(72px, 9vw, 126px) clamp(20px, 6vw, 96px);
  color: #fffaf0;
  background:
    linear-gradient(120deg, rgba(44, 37, 32, 0.9), rgba(111, 41, 55, 0.72)),
    linear-gradient(0deg, rgba(44, 37, 32, 0.55), rgba(44, 37, 32, 0.08)),
    url("assets/clinica-ambiente-detalhe.jpg") center / cover;
}

.contact .eyebrow {
  color: var(--champagne);
}

.contact-copy p {
  color: rgba(255, 250, 240, 0.82);
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-details article {
  display: grid;
  gap: 5px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 250, 240, 0.24);
}

.contact-details strong {
  color: var(--champagne);
}

.contact-details span,
.contact-details a {
  color: rgba(255, 250, 240, 0.86);
  line-height: 1.55;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.social-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.form-stack {
  display: grid;
  gap: 18px;
}

.contact-form {
  flex-direction: column;
  padding: 30px;
  background: rgba(255, 250, 240, 0.86);
  color: var(--ink);
  box-shadow: none;
}

.contact-form h3 {
  margin-bottom: 4px;
  color: var(--deep-gold);
  font-size: 1.8rem;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(115, 91, 54, 0.26);
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.82);
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(20px, 6vw, 96px);
  color: var(--muted);
  background: #fffaf0;
}

.site-footer img {
  width: 240px;
  height: auto;
}

.site-footer a {
  color: var(--deep-gold);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #fff;
  background: #1f8f5f;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(31, 143, 95, 0.28);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .landeface,
  .doctor,
  .contact {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    position: relative;
    top: auto;
  }

  .service-grid,
  .steps,
  .credential-grid,
  .authority-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-nav {
    gap: 14px;
    font-size: 0.78rem;
  }
}

@media (max-width: 780px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 22px 22px;
    background: #fffaf0;
    border-bottom: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 4px;
  }

  .brand img {
    width: 210px;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 58px;
    grid-template-columns: 1fr;
  }

  .hero::before {
    white-space: normal;
  }

  .scroll-cue {
    display: none;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  .hero-media,
  .hero-media picture,
  .hero-media img {
    min-height: 500px;
  }

  .intro-band,
  .steps,
  .service-grid,
  .results-grid,
  .credential-grid,
  .authority-band,
  .experience-note {
    grid-template-columns: 1fr;
  }

  .result-card-wide {
    grid-column: span 1;
  }

  .doctor-media {
    grid-template-columns: 1fr;
  }

  .doctor-media img,
  .doctor-media img + img {
    height: auto;
    max-height: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-media,
  .hero-media picture,
  .hero-media img {
    min-height: 430px;
  }

  .contact-form {
    padding: 22px;
  }

  .whatsapp-float {
    display: none;
  }
}
