/* =========================================================
   Dra. Suellen Beraldo — Harmonização & Rejuvenescimento
   Paleta: dourado/champagne · nude/creme · carvão
   ========================================================= */

:root {
  --cream:      #faf6f0;
  --cream-2:    #f3ece1;
  --nude:       #ede0d0;
  --nude-deep:  #e1cfb8;
  --gold:       #b89b6e;
  --gold-deep:  #9c7e4f;
  --gold-soft:  #cdb287;
  --ink:        #2c2620;
  --ink-soft:   #6c6157;
  --line:       #e6dac9;
  --white:      #ffffff;
  --dark:       #1f1a16;
  --dark-2:     #2a241e;
  --whats:      #25d366;
  --whats-deep: #1da851;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Segoe UI", system-ui, sans-serif;

  --container: 1180px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow:    0 18px 50px -22px rgba(60, 45, 28, .35);
  --shadow-sm: 0 10px 30px -18px rgba(60, 45, 28, .45);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  font-size: 17px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100% - 2.4rem, var(--container));
  margin-inline: auto;
}

.section { padding: clamp(4rem, 9vw, 8rem) 0; }

/* ---------- Tipografia base ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}
.eyebrow--dark { color: var(--gold-deep); }

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: .005em;
  color: var(--ink);
}
.section__title--light { color: var(--cream); }

.section__head {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section__sub {
  margin-top: 1.1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section__sub--light { color: rgba(250, 246, 240, .72); }

.lead { font-size: 1.15rem; color: var(--ink); margin-bottom: 1.1rem; }
p { margin-bottom: 1rem; color: var(--ink-soft); }

em { font-style: italic; color: var(--gold-deep); }

/* ---------- Botões ---------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  box-shadow: 0 14px 28px -16px rgba(156, 126, 79, .8);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 20px 36px -16px rgba(156, 126, 79, .9); }
.btn .ic { width: 1.15em; height: 1.15em; fill: currentColor; }

.btn--whats { --btn-bg: var(--whats); box-shadow: 0 14px 28px -16px rgba(37, 211, 102, .8); }
.btn--whats:hover { background: var(--whats-deep); box-shadow: 0 20px 36px -14px rgba(37, 211, 102, .9); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--nude-deep);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--white); border-color: var(--gold); color: var(--gold-deep); box-shadow: var(--shadow-sm); }

.btn--dark { background: var(--ink); box-shadow: 0 14px 28px -18px rgba(44, 38, 32, .9); }
.btn--dark:hover { background: var(--dark); }

.btn--small { padding: .7rem 1.3rem; font-size: .85rem; }
.btn--lg { padding: 1.15rem 2.4rem; font-size: 1.05rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
  color: var(--gold-deep);
  letter-spacing: .03em;
  margin-top: .5rem;
}
.link-arrow svg { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .35s var(--ease); }
.link-arrow:hover svg { transform: translateX(6px); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.header.is-scrolled {
  background: rgba(250, 246, 240, .9);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(184, 155, 110, .18);
  padding: .65rem 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: .75rem; }
.brand__mark {
  width: 46px; height: 46px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
}
.brand__role {
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.header:not(.is-scrolled) .brand__name { color: var(--white); text-shadow: 0 1px 14px rgba(0,0,0,.3); }
.header:not(.is-scrolled) .brand__role { color: var(--gold-soft); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  font-size: .92rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--ink);
  position: relative;
  padding: .2rem 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.header:not(.is-scrolled) .nav__link { color: rgba(255,255,255,.92); text-shadow: 0 1px 10px rgba(0,0,0,.25); }
.nav__cta { color: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease), background .35s;
}
.header:not(.is-scrolled) .nav-toggle span { background: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(160deg, #2a241e 0%, #1f1a16 55%, #14110e 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(184,155,110,.28), transparent 55%),
    radial-gradient(90% 70% at 0% 100%, rgba(205,178,135,.16), transparent 60%);
  pointer-events: none;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 .5H60M.5 0V60' stroke='%23ffffff' stroke-opacity='.025'/%3E%3C/svg%3E");
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero__content { color: var(--cream); }
.hero .eyebrow { color: var(--gold-soft); }
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: .005em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero__title em { color: var(--gold-soft); font-style: italic; }
.hero__text {
  max-width: 33ch;
  color: rgba(250, 246, 240, .8);
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.hero__actions .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: var(--gold-soft); color: #fff; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 4vw, 2.6rem);
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-soft);
}
.hero__trust span { font-size: .82rem; color: rgba(250,246,240,.6); letter-spacing: .02em; }

.hero__media { position: relative; justify-self: center; }
.hero__photo {
  position: relative;
  width: min(420px, 80vw);
  aspect-ratio: 4 / 5;
  border-radius: 220px 220px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7);
  border: 1px solid rgba(205,178,135,.35);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,26,22,.35));
}
.hero__badge {
  position: absolute;
  left: -14px; bottom: 32px;
  background: rgba(250,246,240,.42);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  padding: .55rem .95rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px -16px rgba(60, 45, 28, .3);
  border: 1px solid rgba(255,255,255,.22);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.hero__badge-top { font-size: .54rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .12rem; opacity: .85; }
.hero__badge-main { font-family: var(--serif); font-size: .9rem; font-weight: 500; color: var(--ink); line-height: 1.25; }
.hero__badge-sub { font-family: var(--serif); font-size: .9rem; font-weight: 500; color: var(--ink); line-height: 1.25; }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 14px;
  z-index: 3;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--gold-soft);
  border-radius: 2px;
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0%{opacity:0;transform:translateY(0)} 40%{opacity:1} 80%{opacity:0;transform:translateY(14px)} 100%{opacity:0} }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  animation: marquee 32s linear infinite;
}
.marquee__track span {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(250,246,240,.92);
}
.marquee__track i { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sobre ---------- */
.about { background: var(--cream); }
.about__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about__media { position: relative; }
.about__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.about__media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about__chip {
  position: absolute;
  right: -14px; top: 28px;
  background: var(--white);
  padding: .8rem 1.2rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: center;
  line-height: 1.1;
}
.about__chip-num { display: block; font-size: .66rem; letter-spacing: .2em; color: var(--gold-deep); text-transform: uppercase; }
.about__chip-label { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--ink); }

.about__list { margin: 1.6rem 0 2rem; display: grid; gap: .85rem; }
.about__list li { display: flex; align-items: flex-start; gap: .7rem; color: var(--ink); font-size: 1rem; }
.tick { flex: none; width: 1.4em; height: 1.4em; fill: none; stroke: var(--gold-deep); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; margin-top: .12em; }

/* ---------- Procedimentos ---------- */
.services { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); overflow: hidden; }

/* carrossel deslizante de procedimentos */
.services__carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);   /* full-bleed da faixa */
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.services__track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  padding: .6rem 0;
  animation: services-scroll 55s linear infinite;
}
.services__track:hover { animation-play-state: paused; }
.services__carousel .card {
  flex: 0 0 300px;
  width: 300px;
}
@keyframes services-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - .7rem)); } /* metade + metade do gap do meio */
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--nude);
  color: var(--gold-deep);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.card:hover .card__icon { background: var(--gold); color: #fff; }
.card__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--ink);
}
.card p { font-size: .94rem; margin-bottom: 0; }

.services__cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.services__cta p { font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: var(--ink); margin: 0; }

/* ---------- Resultados ---------- */
.results { background: var(--cream-2); }
.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: start;
}
.result {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.result:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
/* botão-imagem: mostra a foto inteira, sem cortar (sem "sangrar") */
.result__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  cursor: zoom-in;
  background:
    radial-gradient(120% 120% at 50% 0%, #f6efe5, #ece0cf);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.result__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;            /* imagem completa, nada é cortado */
  transition: transform .6s var(--ease);
}
.result:hover .result__media img { transform: scale(1.03); }
.result__zoom {
  position: absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(31,26,22,.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: scale(.85);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.result__media:hover .result__zoom,
.result__media:focus-visible .result__zoom { opacity: 1; transform: scale(1); }
.result__zoom svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.result figcaption {
  padding: 1.1rem 1.2rem 1.2rem;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
}
.results__note { text-align: center; margin-top: 1.8rem; font-size: .85rem; color: var(--ink-soft); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(18, 15, 12, .92);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure {
  margin: 0;
  max-width: min(92vw, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transform: scale(.96);
  transition: transform .35s var(--ease);
}
.lightbox.is-open .lightbox__figure { transform: scale(1); }
.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.8);
}
.lightbox__caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
  text-align: center;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .3s var(--ease), transform .3s var(--ease);
  line-height: 1;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__close {
  top: 18px; right: 18px;
  width: 48px; height: 48px;
  font-size: 2rem;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  font-size: 2.2rem;
}
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__prev { left: 18px; }
.lightbox__next { right: 18px; }

/* ---------- Método ---------- */
.method {
  background: linear-gradient(160deg, #2a241e, #1f1a16);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.method::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, rgba(184,155,110,.18), transparent 60%);
  pointer-events: none;
}
.method .eyebrow { color: var(--gold-soft); }
.method__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  position: relative;
  z-index: 1;
}
.step {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.step:hover { transform: translateY(-6px); border-color: var(--gold-soft); background: rgba(184,155,110,.07); }
.step__num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold-soft);
  display: block;
  margin-bottom: .6rem;
  line-height: 1;
}
.step__title { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin-bottom: .5rem; color: #fff; }
.step p { color: rgba(250,246,240,.68); font-size: .92rem; margin: 0; }

/* ---------- Depoimentos ---------- */
.testimonials { background: var(--cream); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: -.2rem; left: 1.2rem;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--nude-deep);
  line-height: 1;
}
.quote__stars { color: var(--gold); letter-spacing: .15em; margin-bottom: .9rem; position: relative; }
.quote p { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--ink); line-height: 1.5; margin-bottom: 1.4rem; }
.quote footer { display: flex; flex-direction: column; }
.quote__name { font-weight: 500; color: var(--ink); letter-spacing: .02em; }
.quote__role { font-size: .8rem; color: var(--gold-deep); letter-spacing: .1em; text-transform: uppercase; }

/* ---------- Localização ---------- */
.location { background: var(--cream-2); }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.location__info { margin: 1.8rem 0 2rem; display: grid; gap: 1.3rem; }
.location__info li { display: flex; gap: 1rem; align-items: flex-start; }
.location__info svg {
  flex: none;
  width: 26px; height: 26px;
  fill: none; stroke: var(--gold-deep);
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
  margin-top: .15rem;
}
.location__info strong { display: block; font-weight: 500; color: var(--ink); letter-spacing: .02em; }
.location__info span { color: var(--ink-soft); font-size: .96rem; }
.location__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 420px;
}
.location__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }

/* ---------- CTA final ---------- */
.cta-final {
  background:
    linear-gradient(180deg, rgba(31,26,22,.55), rgba(31,26,22,.72)),
    url("../assets/img/dra-1.jpg") center 18% / cover no-repeat fixed;
  padding: clamp(4.5rem, 10vw, 8rem) 0;
}
.cta-final__inner { max-width: 720px; margin: 0 auto; text-align: center; color: #fff; }
.cta-final h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-final p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: rgba(250,246,240,.75); padding: 4rem 0 1.8rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo { width: 60px; height: 60px; border-radius: 14px; object-fit: cover; margin-bottom: 1rem; }
.footer__tag { color: rgba(250,246,240,.6); max-width: 32ch; font-size: .95rem; }
.footer h4 {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}
.footer__nav, .footer__contact { display: flex; flex-direction: column; gap: .6rem; }
.footer__nav a, .footer__contact a, .footer__contact span { color: rgba(250,246,240,.72); font-size: .95rem; transition: color .3s; }
.footer__nav a:hover, .footer__contact a:hover { color: var(--gold-soft); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem;
  padding-top: 1.6rem;
  font-size: .8rem;
  color: rgba(250,246,240,.5);
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whats);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,.7);
  transition: transform .35s var(--ease);
  animation: wapulse 2.6s ease-out infinite;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float:hover { transform: scale(1.08); }
@keyframes wapulse {
  0% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.7), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Reveal (scroll) ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 980px) {
  .method__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }

  /* Nav mobile */
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem 2.2rem;
    background: var(--cream);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,.5);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
  }
  .nav.is-open { transform: none; }
  .nav__link { font-size: 1.15rem; color: var(--ink) !important; text-shadow: none !important; }
  .nav__cta { margin-top: .6rem; }
  .nav-toggle { display: flex; }
  .nav-open .nav-toggle span { background: var(--ink) !important; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }

  /* Hero */
  .hero { padding-top: 6.5rem; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero__text { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__media { order: -1; }
  .hero__photo { width: min(330px, 78vw); }
  .hero__badge { left: 50%; transform: translateX(-50%); bottom: -18px; }

  /* Sobre */
  .about__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about__content { text-align: center; }
  .about__list { text-align: left; max-width: 420px; margin-inline: auto; }
  .about__media { max-width: 420px; margin-inline: auto; }

  /* Localização */
  .location__grid { grid-template-columns: 1fr; }
  .location__content { text-align: center; }
  .location__info { text-align: left; max-width: 440px; margin-inline: auto; }
  .location__actions { justify-content: center; }

  /* CTA fixed bg não funciona bem no mobile */
  .cta-final { background-attachment: scroll; }
}

@media (max-width: 560px) {
  .method__grid { grid-template-columns: 1fr; }
  .results__grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .hero__trust { gap: 1.2rem; }
  .hero__trust li { flex: 1 1 40%; }
  .btn { width: 100%; }
  .hero__actions, .services__cta, .location__actions { width: 100%; }
}

/* ---------- Acessibilidade ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  /* sem deslizar: mostra os procedimentos em rolagem manual */
  .services__carousel { -webkit-mask-image: none; mask-image: none; overflow-x: auto; }
  .services__track { animation: none; }
}

:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 4px; }
