/* ===== Tokens ===== */
:root {
  --ink: #1c1512;
  --ink-soft: #3a2f28;
  --cream: #faf6f0;
  --cream-2: #f1e9dd;
  --cream-3: #e9dfd0;
  --espresso: #211913;
  --espresso-2: #2b211b;
  --gold: #a9824a;
  --gold-ink: #86592f;
  --gold-light: #c9a36a;
  --gold-pale: #e7d3b0;
  --white: #ffffff;
  --line: rgba(28, 21, 18, 0.12);
  --line-dark: rgba(243, 234, 217, 0.16);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1220px;
  --radius: 1px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.7s;
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
::selection { background: var(--gold); color: var(--white); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--ink); color: var(--cream); padding: 12px 20px;
  border-radius: var(--radius); transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ===== Typography helpers ===== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-ink);
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  letter-spacing: -0.01em;
}
.section-title--light { color: var(--cream); }
.section-subtitle {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 16px;
}
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .section-subtitle { margin-left: auto; margin-right: auto; }

section { position: relative; }
.section-pad { padding: 120px 0; }
@media (max-width: 720px) {
  .section-pad { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 2px;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn .icon { width: 19px; height: 19px; flex-shrink: 0; fill: currentColor; }
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(28,21,18,0.4); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.btn--outline-light { background: transparent; color: var(--cream); border: 1px solid var(--line-dark); }
.btn--outline-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--large { padding: 19px 36px; font-size: 1rem; }
.btn--small { padding: 11px 20px; font-size: 0.85rem; }
.btn--block { width: 100%; justify-content: center; }

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-fade { opacity: 0; transition: opacity 1.1s var(--ease); }
.reveal-fade.is-visible { opacity: 1; }
.stagger .reveal:nth-child(1) { transition-delay: 0s; }
.stagger .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 26px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header.is-scrolled {
  padding: 14px 0;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-size: 1.3rem;
  color: var(--ink);
  flex-shrink: 0;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.logo__text { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.01em; color: var(--ink); white-space: nowrap; transition: color 0.4s var(--ease); }
.logo__text span { display: block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.16em; color: var(--gold-ink); font-weight: 600; margin-top: 2px; white-space: nowrap; transition: color 0.4s var(--ease); }

/* Header sits over the dark hero photo until scrolled past it */
.header:not(.is-scrolled) .logo__mark { color: var(--cream); border-color: rgba(247,242,236,0.55); }
.header:not(.is-scrolled) .logo__text { color: var(--cream); }
.header:not(.is-scrolled) .logo__text span { color: var(--gold-light); }
.header:not(.is-scrolled) .nav:not(.is-open) .nav__link { color: var(--cream); }
.header:not(.is-scrolled) .menu-toggle span { background: var(--cream); }
.header:not(.is-scrolled) .header__cta.btn--primary { background: rgba(247,242,236,0.94); color: var(--ink); }

.nav { display: flex; align-items: center; gap: 40px; }
.nav__list { display: flex; gap: 32px; }
.nav__link { font-size: 0.9rem; font-weight: 500; position: relative; padding: 4px 0; transition: color 0.4s var(--ease); }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.header__cta { display: none; }

.menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; flex-shrink: 0;
}
.menu-toggle span { width: 100%; height: 1.5px; background: var(--ink); transition: transform 0.35s var(--ease), opacity 0.35s var(--ease); }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav__list { display: none; }
  .nav .btn { display: none; }
  .header__cta { display: inline-flex; }
  .menu-toggle { display: flex; }
  .header__inner { gap: 10px; }

  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 84vw);
    background: var(--cream); flex-direction: column; align-items: flex-start;
    padding: 110px 36px 40px; gap: 0;
    transform: translateX(100%); transition: transform 0.5s var(--ease);
    box-shadow: -20px 0 60px -20px rgba(0,0,0,0.2);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { display: flex; flex-direction: column; gap: 6px; width: 100%; }
  .nav__link { display: block; padding: 14px 0; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
  .nav .btn.nav__cta { display: inline-flex; margin-top: 28px; }
}
@media (min-width: 961px) { .header__cta { display: none !important; } }
@media (max-width: 420px) {
  .logo { gap: 8px; }
  .logo__mark { width: 34px; height: 34px; font-size: 1.05rem; }
  .logo__text { font-size: 0.88rem; }
  .logo__text span { font-size: 0.52rem; }
  .header__cta.btn--small { padding: 9px 14px; font-size: 0.78rem; }
}

.nav-scrim {
  position: fixed; inset: 0; background: rgba(28,21,18,0.4);
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); z-index: 400;
}
.nav-scrim.is-visible { opacity: 1; pointer-events: auto; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 62% 22%;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,16,14,0.94) 0%, rgba(20,16,14,0.62) 38%, rgba(20,16,14,0.18) 62%, rgba(20,16,14,0.5) 100%),
    linear-gradient(0deg, rgba(20,16,14,0.75) 0%, rgba(20,16,14,0) 42%);
}
.hero__inner {
  width: 100%;
  padding: 148px 0 56px;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  display: block;
  margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(3.1rem, 7.6vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 16ch;
}
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__subtitle {
  margin-top: 24px;
  font-size: 1.1rem;
  color: rgba(247,242,236,0.82);
  max-width: 440px;
  line-height: 1.6;
}
.hero__actions { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 36px; }
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 40px;
  padding-top: 24px; border-top: 1px solid rgba(247,242,236,0.18);
  max-width: 620px;
}
.hero__badges li {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em;
  color: rgba(247,242,236,0.75); text-transform: uppercase;
}
.hero__badges li.is-place { color: var(--gold-light); }

.hero__scroll {
  position: absolute; right: 40px; bottom: 40px; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,242,236,0.6);
}
.hero__scroll span { width: 1px; height: 54px; background: rgba(247,242,236,0.25); position: relative; overflow: hidden; }
.hero__scroll span::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold-light); animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

@media (max-width: 960px) {
  .hero__bg img { object-position: 68% 18%; }
  .hero__bg::after {
    background:
      linear-gradient(0deg, rgba(20,16,14,1) 0%, rgba(20,16,14,0.99) 26%, rgba(20,16,14,0.6) 50%, rgba(20,16,14,0.2) 70%);
  }
  .hero__inner { padding: 150px 0 64px; }
  .hero__title { max-width: 100%; }
  .hero__subtitle { max-width: 100%; }
  .hero__scroll { display: none; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
}

/* ===== Pull quote ===== */
.pullquote { background: var(--cream); padding: 150px 0 140px; overflow: hidden; }
.pullquote__inner { max-width: 1000px; margin: 0 auto; position: relative; }
.pullquote p {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.4vw, 4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pullquote cite {
  display: block; margin-top: 34px; font-style: normal; font-family: var(--font-body);
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-ink);
}
@media (max-width: 720px) {
  .pullquote { padding: 100px 0 90px; }
}

/* ===== About ===== */
.about { background: var(--cream); overflow: hidden; }
.about__grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 0 80px; align-items: start; }
.about__media { position: relative; }
.about__frame-main {
  position: relative; z-index: 1;
  border-radius: 1px; overflow: hidden; aspect-ratio: 3/4;
  box-shadow: 0 40px 70px -35px rgba(28,21,18,0.3);
}
.about__frame-main img { width: 100%; height: 100%; object-fit: cover; }
.about__name {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.about__lead { font-size: 1.2rem; color: var(--ink); margin-top: 8px; font-family: var(--font-display); font-style: italic; }
.about__text p + p { margin-top: 18px; color: var(--ink-soft); }
.about__cta-row { display: flex; align-items: center; gap: 24px; margin-top: 36px; flex-wrap: wrap; }

.about__credentials {
  margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line);
  display: flex; gap: 24px; flex-wrap: wrap;
}
.credential {
  display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.credential__img { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 1px solid var(--line); }
.credential__img img { width: 100%; height: 100%; object-fit: cover; }
.credential__label { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.4; }
.credential__label strong { display: block; color: var(--ink); font-size: 0.88rem; }

@media (max-width: 960px) {
  .about__grid { grid-template-columns: 1fr; gap: 0; }
  .about__media { max-width: 380px; margin: 0 auto 80px; }
}

/* ===== Pilares ===== */
.pillars { background: var(--cream-2); }
.pillars__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.pillar {
  border-radius: 1px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
  padding: 44px;
  isolation: isolate;
}
.pillar--facial { grid-row: 1 / 3; background: var(--ink); color: var(--cream); }
.pillar--facial .pillar__bg { position: absolute; inset: 0; z-index: -2; }
.pillar--facial .pillar__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.pillar--facial .pillar__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,21,18,0.25) 0%, rgba(28,21,18,0.96) 92%);
}
.pillar--side {
  background: var(--cream);
  border: 1px solid var(--line);
  min-height: 268px;
  justify-content: center;
}
.pillar__icon {
  width: 60px; height: 60px; border-radius: 50%; overflow: hidden;
  border: 1px solid var(--gold); margin-bottom: 22px; flex-shrink: 0;
}
.pillar__icon img { width: 100%; height: 100%; object-fit: cover; }
.pillar__num { font-family: var(--font-display); font-style: italic; font-size: 0.95rem; color: var(--gold); margin-bottom: 10px; display: block; }
.pillar--side .pillar__num { color: var(--gold-ink); }
.pillar h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 14px; }
.pillar--side h3 { color: var(--ink); }
.pillar p { max-width: 460px; }
.pillar--facial p { color: var(--gold-pale); font-size: 1.02rem; }
.pillar--side p { color: var(--ink-soft); font-size: 0.96rem; }

.pillar__tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 30px; max-width: 560px; }
.pillar__tags span {
  font-size: 0.78rem; padding: 7px 14px; border-radius: 30px;
  border: 1px solid var(--line-dark); color: var(--gold-pale);
}
.pillar--facial .btn { align-self: flex-start; }
.pillar--side__cta { margin-top: 22px; }

.pillars__reassurance {
  margin-top: 40px; text-align: center; font-size: 1rem; color: var(--ink-soft);
  font-family: var(--font-display); font-style: italic;
}
.pillars__reassurance a { color: var(--gold-ink); font-style: normal; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.pillars__reassurance a:hover { color: var(--ink); }

@media (max-width: 960px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar--facial { grid-row: auto; }
  .pillar { min-height: unset; padding: 36px 28px; }
  .pillar--facial { padding: 260px 28px 40px; }
}

/* ===== Resultados ===== */
.results { background: var(--cream); }
.results__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.results__count {
  flex-shrink: 0; font-family: var(--font-display); font-size: 2.6rem; line-height: 0.9;
  color: var(--gold); text-align: right; padding-bottom: 4px;
}
.results__count i {
  font-style: normal; display: block; font-family: var(--font-body); font-size: 0.62rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px;
}

/* Caso em destaque */
.results__feature {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center;
  margin-bottom: 88px;
}
.results__feature-media {
  position: relative; display: block; width: 100%; overflow: hidden; border-radius: 1px;
  box-shadow: 0 46px 80px -40px rgba(28,21,18,0.32);
}
.results__feature-media img { width: 100%; height: auto; display: block; transition: transform 0.9s var(--ease); }
.results__feature-media:hover img { transform: scale(1.025); }
.results__feature-eyebrow {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-ink); display: block; margin-bottom: 20px;
}
.results__feature-quote {
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.36; color: var(--ink); letter-spacing: -0.005em;
}
.results__feature-body { margin-top: 22px; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; max-width: 44ch; }

/* Galeria assimétrica — duas colunas independentes, sem sobreposição */
.results__gallery {
  display: grid; grid-template-columns: 5fr 8fr; column-gap: 40px; align-items: start;
}
.results__col { display: flex; flex-direction: column; gap: 28px; }
.results__col--b { padding-top: 64px; }

.result-item {
  position: relative; border-radius: 1px; overflow: hidden; display: block; width: 100%;
}
.result-item img { width: 100%; height: auto; display: block; transition: transform 0.7s var(--ease); }
.result-item:hover img { transform: scale(1.035); }
.result-item__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  background: rgba(250,246,240,0.92); color: var(--ink); padding: 6px 12px; border-radius: 1px;
}
.results__feature-media .result-item__tag { background: rgba(20,16,14,0.55); color: var(--cream); backdrop-filter: blur(4px); }

.results__caption {
  font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; max-width: 34ch;
}
.results__caption-num {
  display: block; font-family: var(--font-display); font-style: italic; font-size: 1.6rem;
  color: var(--gold); margin-bottom: 10px;
}
.results__note {
  font-size: 0.82rem; color: var(--ink-soft); max-width: 40ch;
  border-left: 2px solid var(--gold); padding-left: 16px;
}
.results__footer { display: flex; justify-content: space-between; align-items: center; margin-top: 64px; flex-wrap: wrap; gap: 20px; }
@media (max-width: 480px) {
  .results__footer { flex-direction: column; align-items: stretch; }
  .results__footer .btn { white-space: normal; text-align: center; justify-content: center; }
}

@media (max-width: 1024px) {
  .results__feature { gap: 44px; }
  .results__col--b { padding-top: 44px; }
}
@media (max-width: 860px) {
  .results__feature { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  .results__feature-media { max-width: 460px; margin: 0 auto; }

  .results__gallery { column-gap: 24px; }
  .results__col--b { padding-top: 48px; }
  .results__col { gap: 22px; }
}
@media (max-width: 560px) {
  .results__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .results__count { text-align: left; }

  .results__gallery { grid-template-columns: 1fr; row-gap: 40px; }
  .results__col--b { padding-top: 0; }
  .results__col--a .result-item:first-child { max-width: 72%; }
  .results__col--a .result-item:nth-child(2) { max-width: 72%; margin-left: auto; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 900; background: rgba(20,15,12,0.96);
  display: flex; align-items: center; justify-content: center; padding: 60px 20px;
}
.lightbox[hidden] { display: none; }
.lightbox__media { max-width: 900px; max-height: 78vh; }
.lightbox__media img { max-height: 78vh; width: auto; margin: 0 auto; border-radius: 1px; }
.lightbox__caption { color: var(--cream); text-align: center; margin-top: 20px; font-family: var(--font-display); font-style: italic; font-size: 1.1rem; }
.lightbox__close, .lightbox__nav {
  position: absolute; color: var(--cream); font-size: 1.6rem; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  transition: background 0.3s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.1); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 12px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) { .lightbox__nav { width: 42px; height: 42px; font-size: 1.2rem; } }

/* ===== Feedbacks ===== */
.feedbacks { background: var(--espresso); color: var(--cream); }
.feedbacks .eyebrow { color: var(--gold-light); }
.feedbacks__panel {
  display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center;
  border: 1px solid var(--line-dark); border-radius: 1px; padding: 52px;
}
.feedbacks__icon { width: 84px; height: 84px; border-radius: 50%; overflow: hidden; border: 1px solid var(--gold); flex-shrink: 0; }
.feedbacks__icon img { width: 100%; height: 100%; object-fit: cover; }
.feedbacks__body h3 { font-size: 1.6rem; color: var(--cream); margin-bottom: 12px; }
.feedbacks__body p { color: var(--gold-pale); max-width: 520px; }
@media (max-width: 780px) {
  .feedbacks__panel { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; }
  .feedbacks__icon { margin: 0 auto; }
  .feedbacks__body p { margin: 0 auto; }
}

/* ===== Autoridade ===== */
.authority { background: var(--cream-2); }
.authority__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.authority__images { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; order: 2; }
.authority__images img { border-radius: 1px; aspect-ratio: 3/4; object-fit: cover; }
.authority__images a:first-child { grid-row: 1/3; }
.authority__images a:first-child img { aspect-ratio: 4/5; height: 100%; }
.authority__list { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.authority__list li { display: flex; gap: 16px; align-items: flex-start; color: var(--ink-soft); }
.authority__list strong { color: var(--ink); }
.authority__list .num { font-family: var(--font-display); font-style: italic; color: var(--gold-ink); font-size: 1.3rem; flex-shrink: 0; width: 34px; }
@media (max-width: 900px) {
  .authority__grid { grid-template-columns: 1fr; gap: 40px; }
  .authority__images { max-width: 420px; margin: 0 auto; }
}

/* ===== Instagram CTA ===== */
.ig-cta { background: var(--cream); }
.ig-cta__card {
  background: var(--ink); color: var(--cream); border-radius: 1px;
  padding: 72px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.ig-cta__left { display: flex; align-items: center; gap: 22px; position: relative; z-index: 1; }
.ig-cta__avatar { width: 76px; height: 76px; border-radius: 50%; overflow: hidden; border: 1px solid var(--gold); flex-shrink: 0; }
.ig-cta__avatar img { width: 100%; height: 100%; object-fit: cover; }
.ig-cta__handle { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--cream); }
.ig-cta__bio { color: var(--gold-pale); font-size: 0.92rem; margin-top: 4px; max-width: 380px; }
.ig-cta__card .btn { position: relative; z-index: 1; flex-shrink: 0; }

@media (max-width: 720px) {
  .ig-cta__card { padding: 44px 28px; flex-direction: column; text-align: center; }
  .ig-cta__left { flex-direction: column; }
}

/* ===== Contato ===== */
.contact { background: var(--cream-2); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.contact__lead { font-size: 1.1rem; color: var(--ink-soft); margin-top: 6px; max-width: 460px; }
.contact__whatsapp { margin-top: 36px; }
.contact__details { margin-top: 44px; display: flex; flex-direction: column; gap: 22px; }
.contact__details li { display: flex; gap: 16px; align-items: flex-start; }
.contact__detail-icon {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact__detail-icon .icon { width: 18px; height: 18px; fill: var(--gold); }
.contact__details strong { display: block; font-size: 0.98rem; }
.contact__details span, .contact__details a { color: var(--ink-soft); font-size: 0.95rem; }
.contact__details a:hover { color: var(--gold-ink); }
.contact__map { border-radius: 1px; overflow: hidden; min-height: 380px; box-shadow: 0 30px 60px -30px rgba(28,21,18,0.3); }
.contact__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(0.3) contrast(1.05); }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; gap: 48px; } }

/* ===== Footer ===== */
.footer { background: var(--espresso); color: var(--gold-pale); padding: 72px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--line-dark); }
.footer .logo__text, .footer .logo__mark { color: var(--cream); border-color: var(--gold); }
.footer__brand p { margin-top: 16px; max-width: 300px; font-size: 0.92rem; }
.footer__heading { color: var(--cream); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a:hover, .footer__social a:hover { color: var(--cream); }
.footer__social { display: flex; flex-direction: column; gap: 12px; }
.footer__social a { display: flex; align-items: center; gap: 10px; }
.footer__social .icon { width: 18px; height: 18px; fill: currentColor; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding: 26px 0; font-size: 0.8rem;
}
.footer__disclaimer { font-size: 0.76rem; opacity: 0.7; max-width: 640px; }
@media (max-width: 780px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(28,21,18,0.5);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
  opacity: 0; pointer-events: none; transform: translateY(16px);
}
.whatsapp-float.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.whatsapp-float:hover { background: var(--gold); transform: translateY(-3px); }
.whatsapp-float .icon { width: 26px; height: 26px; fill: currentColor; }
@media (max-width: 600px) { .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; } }
