/* =============================================================
   LBTM — Landing Pintura | V2 Noir Editorial
   Princípio: preto profundo + off-white quente + dourado fosco
   Verde LBTM apenas como detalhe (logo + 1 hairline)
   Tipografia: Fraunces (serif editorial) + Inter (sans)
   ============================================================= */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }

/* === DESIGN TOKENS === */
:root {
  /* Cores */
  --noir: #0A0A0A;
  --noir-2: #141414;
  --surface: #1A1A1A;
  --surface-2: #222222;
  --cream: #F5F2EB;
  --cream-2: #EBE6D8;
  --cream-3: rgba(245, 242, 235, 0.72);
  --cream-4: rgba(245, 242, 235, 0.52);
  --gold: #C9A84C;
  --gold-2: #D4B85E;
  --gold-soft: rgba(201, 168, 76, 0.18);
  --green: #1B5E20;
  --hairline-light: rgba(245, 242, 235, 0.08);
  --hairline-dark: rgba(10, 10, 10, 0.08);

  /* Tipografia */
  --serif: "Playfair Display", "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-py: clamp(80px, 12vw, 160px);

  /* Movimento */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* === BASE === */
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--noir);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
  font-feature-settings: "ss01", "cv11";
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
}

p { color: var(--cream-3); }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* === TIPOGRAFIA EDITORIAL === */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.eyebrow--muted { color: var(--cream-3); }
.eyebrow--dark  { color: rgba(10, 10, 10, 0.55); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 18ch;
}

.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.section-title--dark { color: var(--noir); }
.section-title--dark em { color: var(--green); }

.section-lead {
  font-family: var(--sans);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--cream-3);
  max-width: 56ch;
  margin-top: 28px;
}

.section-lead--dark { color: rgba(10, 10, 10, 0.65); }

/* === DIVIDER (hairline) === */
.hairline {
  width: 100%;
  height: 1px;
  background: var(--hairline-light);
}
.hairline--dark { background: var(--hairline-dark); }

/* =============================================================
   NAVBAR
   ============================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  backdrop-filter: blur(14px) saturate(180%);
  border-bottom-color: var(--hairline-light);
  padding: 14px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.nav__logo img {
  height: 32px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__menu a {
  font-size: 13px;
  font-weight: 400;
  color: var(--cream-3);
  letter-spacing: 0.04em;
  transition: color 0.25s var(--ease);
}

.nav__menu a:hover { color: var(--cream); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--noir);
  background: var(--gold);
  padding: 11px 20px;
  border-radius: 999px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav__cta:hover { background: var(--gold-2); transform: translateY(-1px); }

@media (max-width: 820px) {
  .nav__menu { display: none; }
}

/* =============================================================
   PROCESS — COMO FUNCIONA (5 passos)
   ============================================================= */
.process {
  padding: var(--section-py) 0;
  background: var(--cream);
  color: var(--noir);
  position: relative;
  border-top: 1px solid var(--hairline-dark);
}

.process .eyebrow {
  color: var(--noir);
  opacity: 0.55;
}

.process .section-title {
  color: var(--noir);
  max-width: 18ch;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.process .section-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.process__head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.process__head .eyebrow { display: block; }
.process__head .eyebrow::before { display: none; }

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

@media (max-width: 1024px) {
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
@media (max-width: 520px) {
  .process__steps { grid-template-columns: 1fr; }
}

.process__step {
  position: relative;
  padding: 0 24px;
  border-left: 1px solid rgba(10,10,10,0.12);
}

.process__step:first-child { border-left: 0; padding-left: 0; }
.process__step:last-child  { padding-right: 0; }

@media (max-width: 1024px) {
  .process__step { border-left: 0; padding: 0; }
}

.process__num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
}

.process__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--noir);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.process__text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(10,10,10,0.65);
  max-width: 22ch;
}

.process__cta {
  margin-top: clamp(48px, 6vw, 80px);
  text-align: center;
}

/* =============================================================
   LEANDRO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 100px;
  display: flex;
  align-items: center;
  background: var(--noir);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(201, 168, 76, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(201, 168, 76, 0.04), transparent 60%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}

.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(40px, 6.4vw, 80px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.hero__subtitle {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--cream-3);
  max-width: 52ch;
  margin-bottom: 44px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--cream-4);
  text-transform: uppercase;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__trust span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__trust span:first-child::before { display: none; }

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--noir-2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 40px 100px -20px rgba(0, 0, 0, 0.8);
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(1.05);
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.0) 60%, rgba(10,10,10,0.4) 100%);
  pointer-events: none;
}

.hero__visual-meta {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.hero__visual-meta span {
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-3);
}

/* Botão dourado primário */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 16px 28px;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  position: relative;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--noir);
}
.btn--gold:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(201, 168, 76, 0.4);
}

.btn--gold::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 28px;
  height: 1px;
  background: var(--green);
  opacity: 0.7;
}

.btn--ghost {
  color: var(--cream);
  border: 1px solid var(--hairline-light);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--cream-3);
  background: rgba(245, 242, 235, 0.04);
}

.btn__arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn__arrow { transform: translateX(3px); }

@media (max-width: 900px) {
  .hero { padding: 130px 0 80px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { aspect-ratio: 4/3; order: -1; margin-bottom: 20px; }
  .hero__title {
    line-height: 1.12;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
  }
}

/* =============================================================
   BENEFÍCIOS (2x2 assimétrico, sem cards)
   ============================================================= */
.benefits {
  padding: var(--section-py) 0;
  background: var(--noir);
  position: relative;
}

.benefits__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  margin-bottom: clamp(60px, 8vw, 120px);
  align-items: end;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 5vw, 80px) clamp(40px, 6vw, 100px);
}

.benefit {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline-light);
  position: relative;
}

.benefit__num {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.benefit__title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.015em;
}

.benefit__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--cream-3);
  max-width: 42ch;
}

@media (max-width: 800px) {
  .benefits__head { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================================================
   DIFERENCIAIS (grid 4 colunas minimalista)
   ============================================================= */
.differentials {
  padding: var(--section-py) 0;
  background: var(--cream);
  color: var(--noir);
  position: relative;
}

.differentials__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  margin-bottom: clamp(60px, 8vw, 120px);
  align-items: end;
}

.differentials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-dark);
}

.differential {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--hairline-dark);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.differential:last-child { border-right: 0; }

.differential__mark {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  font-feature-settings: "tnum", "lnum";
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.95;
}

.differential__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--noir);
  letter-spacing: -0.01em;
}

.differential__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.65);
}

@media (max-width: 900px) {
  .differentials__head { grid-template-columns: 1fr; }
  .differentials__grid { grid-template-columns: repeat(2, 1fr); }
  .differential { padding: 32px 24px 32px 0; }
  .differential:nth-child(2n) { border-right: 0; }
  .differential:nth-child(-n+2) { border-bottom: 1px solid var(--hairline-dark); }
}

@media (max-width: 520px) {
  /* Benefícios compactos no mobile: mantém 2 colunas, reduz tudo */
  .differentials {
    padding: 56px 0 56px;
  }
  .differentials__head {
    margin-bottom: 32px;
  }
  .differentials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .differential {
    padding: 18px 14px 18px 0;
    gap: 8px;
    border-bottom: 1px solid var(--hairline-dark);
  }
  .differential:nth-child(2n) { border-right: 0; padding-right: 0; }
  .differential:nth-child(2n+1) { padding-right: 14px; }
  .differential:nth-child(2n) { padding-left: 0; }
  .differential:nth-child(2n+1) { padding-left: 0; }
  .differential:nth-child(-n+6) { border-bottom: 1px solid var(--hairline-dark); }
  .differential:nth-child(5),
  .differential:nth-child(6) { border-bottom: 0; }
  .differential__mark {
    font-size: 10px;
    letter-spacing: 0.18em;
  }
  .differential__title {
    font-size: 15px;
    line-height: 1.25;
  }
  .differential__text {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* =============================================================
   SERVIÇOS (lista vertical editorial, sem cards)
   ============================================================= */
.services {
  padding: var(--section-py) 0;
  background: var(--noir);
  position: relative;
}

.services__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
}

.service {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--hairline-light);
  align-items: start;
}

.service:last-child { border-bottom: 1px solid var(--hairline-light); }

.service__num {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
  padding-top: 6px;
  letter-spacing: 0.02em;
}

.service__title {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.service__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-3);
  max-width: 56ch;
}

@media (max-width: 900px) {
  .services__inner { grid-template-columns: 1fr; }
}

/* =============================================================
   PORTFÓLIO (gallery assimétrica)
   ============================================================= */
.portfolio {
  padding: var(--section-py) 0;
  background: var(--cream-2);
  color: var(--noir);
}

.portfolio__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  margin-bottom: clamp(60px, 8vw, 100px);
  align-items: end;
}

.portfolio__head .section-title { color: var(--noir); }
.portfolio__head .eyebrow { color: rgba(10, 10, 10, 0.55); }
.portfolio__head .section-lead { color: rgba(10, 10, 10, 0.65); }

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.work {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--noir-2);
  display: block;
}

.work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.6s var(--ease);
  filter: saturate(0.95);
}

.work:hover img { transform: scale(1.04); filter: saturate(1.1); }

.work__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, rgba(10,10,10,0) 50%, rgba(10,10,10,0.78) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.work:hover .work__caption { opacity: 1; }

.work__caption-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  color: var(--cream);
}

.work__caption-title {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.01em;
}

.work__caption-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Layout assimétrico */
.work--lg  { grid-column: span 7; grid-row: span 2; }
.work--md  { grid-column: span 5; grid-row: span 1; }
.work--md2 { grid-column: span 5; grid-row: span 2; }
.work--sm  { grid-column: span 4; grid-row: span 1; }
.work--sm2 { grid-column: span 3; grid-row: span 1; }
.work--tall { grid-column: span 3; grid-row: span 2; }
.work--wide { grid-column: span 9; grid-row: span 1; }

@media (max-width: 900px) {
  .portfolio__head { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 180px; }
  .work--lg  { grid-column: span 6; grid-row: span 2; }
  .work--md  { grid-column: span 6; grid-row: span 1; }
  .work--md2 { grid-column: span 6; grid-row: span 1; }
  .work--sm  { grid-column: span 3; grid-row: span 1; }
  .work--sm2 { grid-column: span 3; grid-row: span 1; }
  .work--tall { grid-column: span 6; grid-row: span 1; }
  .work--wide { grid-column: span 6; grid-row: span 1; }
}

/* =============================================================
   ANTES E DEPOIS
   ============================================================= */
.before-after {
  padding: var(--section-py) 0;
  background: var(--noir);
}

.before-after__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  margin-bottom: clamp(60px, 8vw, 100px);
  align-items: end;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Destaque premium · imagem única em tela cheia */
.ba-grid--single {
  grid-template-columns: 1fr;
  max-width: 1120px;
  margin: 0 auto;
}

.ba-card--feature .ba-card__pair {
  aspect-ratio: 16 / 9;
  grid-template-columns: 1fr;          /* 1 imagem ocupa 100% da largura */
  gap: 0;
}

.ba-card--feature .ba-card__pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;                   /* capa · sem achatamento */
  filter: saturate(0.95) contrast(1.03);
}

.ba-card--feature .ba-card__title {
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin-top: 18px;
}

@media (max-width: 900px) {
  .ba-card--feature .ba-card__pair {
    aspect-ratio: 4 / 3;
  }
  .ba-card--feature .ba-card__title {
    font-size: 16px;
  }
}

.ba-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ba-card__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--noir-2);
  aspect-ratio: 8 / 5;
}

.ba-card__pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  display: block;
}

.ba-card__pair .ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 10, 10, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.ba-card__pair .ba-label--after {
  background: rgba(201, 168, 76, 0.95);
  color: var(--noir);
}

.ba-card__title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  color: var(--cream);
  letter-spacing: -0.005em;
}

.ba-card__meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 900px) {
  .before-after__head { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* =============================================================
   GARANTIA
   ============================================================= */
.guarantee {
  padding: var(--section-py) 0;
  background: var(--cream);
  color: var(--noir);
}

.guarantee__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.guarantee__seal {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.guarantee__seal-circle {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: var(--cream-2);
}

.guarantee__seal-circle::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  pointer-events: none;
}

.guarantee__seal-num {
  font-family: var(--serif);
  font-size: clamp(72px, 8vw, 112px);
  font-weight: 400;
  line-height: 1;
  color: var(--noir);
  letter-spacing: -0.04em;
}

.guarantee__seal-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--noir);
  font-weight: 500;
}

.guarantee__seal-sub {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: rgba(10, 10, 10, 0.6);
  letter-spacing: 0.02em;
}

.guarantee__seal svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotate-slow 60s linear infinite;
}

@keyframes rotate-slow {
  to { transform: rotate(360deg); }
}

.guarantee__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--noir);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.guarantee__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.guarantee__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.7);
  max-width: 52ch;
  margin-bottom: 36px;
}

.guarantee__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guarantee__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--noir);
  line-height: 1.5;
}

.guarantee__list svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 900px) {
  .guarantee__inner { grid-template-columns: 1fr; }
  .guarantee__seal { max-width: 280px; }
}

/* =============================================================
   DEPOIMENTOS
   ============================================================= */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--noir);
  position: relative;
  overflow: hidden;
}

.testimonials__head {
  text-align: center;
  margin-bottom: clamp(60px, 8vw, 120px);
}

.testimonials__head .section-title {
  margin: 0 auto;
}

.testimonial {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.testimonial__mark {
  font-family: var(--serif);
  font-size: clamp(140px, 18vw, 240px);
  font-weight: 400;
  font-style: italic;
  line-height: 0.7;
  color: var(--gold);
  user-select: none;
}

.testimonial__body {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.testimonial__quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--cream);
  letter-spacing: -0.01em;
  max-width: 36ch;
}

.testimonial__attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--hairline-light);
  padding-top: 24px;
}

.testimonial__name {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.testimonial__role {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 60px;
}

.testimonials__nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hairline-light);
  color: var(--cream-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.testimonials__nav button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.testimonials__nav button svg { width: 14px; height: 14px; }

@media (max-width: 800px) {
  .testimonial { grid-template-columns: 1fr; gap: 24px; }
  .testimonial__mark { font-size: 120px; }
}

/* =============================================================
   SOBRE A EMPRESA (sem o Leandro)
   ============================================================= */
.about {
  padding: var(--section-py) 0;
  background: var(--cream-2);
  color: var(--noir);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--noir);
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.about__title em {
  font-style: italic;
  color: var(--green);
}

.about__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.7);
  max-width: 56ch;
  margin-bottom: 18px;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline-dark);
}

.stat__num {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 400;
  line-height: 1;
  color: var(--noir);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

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

.stat__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.6);
}

.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
  background: var(--noir-2);
}

.about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}

.about__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.45));
  pointer-events: none;
}

.about__visual-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(245, 242, 235, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 2px;
  z-index: 2;
}

.about__visual-tag-name {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--noir);
  margin-bottom: 2px;
}

.about__visual-tag-role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__visual { order: -1; aspect-ratio: 4/3; }
}

/* =============================================================
   LEANDRO — Layout editorial premium
   Dois blocos independentes. Imagem completa + texto. Sem card.
   ============================================================= */
.leandro {
  padding: var(--section-py) 0;
  background: var(--noir);
  position: relative;
  overflow: hidden;
}

.leandro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201, 168, 76, 0.06), transparent 70%);
  pointer-events: none;
}

/* Cabeçalho da seção */
.leandro__head {
  text-align: center;
  margin-bottom: clamp(72px, 9vw, 120px);
  position: relative;
  z-index: 1;
}

.leandro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.leandro__eyebrow::before,
.leandro__eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.leandro__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.025em;
  margin: 0;
}

.leandro__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

/* BLOCO · composição editorial (imagem + texto) */
.leandro-block {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: clamp(96px, 12vw, 160px);
}

.leandro-block:last-child {
  margin-bottom: 0;
}

/* BLOCO 2 inverte ordem: texto à esquerda (maior), imagem à direita (menor) */
/* Foto do Leandro em pé (PNG sem fundo) é COMPLEMENTAR — nunca compete com a principal */
/* Composição editorial: texto e foto próximos, sem coluna isolada (matéria de revista) */
.leandro-block--reverse {
  grid-template-columns: 1fr auto;          /* texto flexível + figure com largura do conteúdo */
  align-items: center;                      /* alinha verticalmente pelo centro (editorial) */
  gap: clamp(32px, 4vw, 56px);              /* gap menor — texto e foto mais integrados */
}

.leandro-block--reverse .leandro-block__figure {
  order: 2;
  width: 280px;                            /* V2.5 · desktop 260-300px (faixa alvo) */
  max-width: 300px;
  flex-shrink: 0;
}

.leandro-block--reverse .leandro-block__body {
  order: 1;
  max-width: 56ch;                          /* limita largura do texto para legibilidade */
}

.leandro-block--reverse .leandro-block__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;                      /* PNG sem fundo · foto completa, sem cortes */
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.35)) contrast(1.04) saturate(0.92);
}

/* Imagem do BLOCO 1: foto principal completa, sem card, sem moldura pesada */
.leandro-block__figure {
  margin: 0;
  line-height: 0;
}

.leandro-block__figure img {
  display: block;
  width: 100%;
  height: auto;            /* foto completa · sem cortes */
  object-fit: contain;
  filter: contrast(1.04) saturate(0.92);
}

/* Texto do bloco */
.leandro-block__body {
  position: relative;
}

.leandro-block__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.leandro-block__lead {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--gold);
  border-left: 1px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 0;
  max-width: 50ch;
}

.leandro-block__title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin: 0 0 26px 0;
  max-width: 22ch;
}

.leandro-block__text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--cream-3);
  margin: 0 0 18px 0;
  max-width: 56ch;
}

.leandro-block__signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-light);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.leandro-block__signature-name {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--cream);
}

.leandro-block__signature-role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Responsivo */
@media (max-width: 900px) {
  .leandro-block,
  .leandro-block--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: clamp(72px, 12vw, 100px);
  }
  /* No mobile: BLOCO 1 mantém a foto primeiro (figure) */
  .leandro-block--reverse .leandro-block__figure {
    order: 2;                              /* vai para DEPOIS do texto */
    max-width: 170px;                      /* V2.5 · mobile 160-180px (faixa alvo) */
    min-width: 0;
    margin: 12px auto 0;                   /* centralizada, discreta */
    justify-self: center;
    align-self: center;
  }
  .leandro-block--reverse .leandro-block__figure img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .leandro-block--reverse .leandro-block__body {
    max-width: 100%;
  }
}

/* =============================================================
   CTA FINAL
   ============================================================= */
.cta-final {
  padding: var(--section-py) 0;
  background: var(--noir-2);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--hairline-light);
}

.cta-final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.cta-final__inner {
  max-width: 760px;
  margin: 0 auto;
}

.cta-final__eyebrow {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.cta-final__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.04;
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.cta-final__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.cta-final__text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream-3);
  max-width: 52ch;
  margin: 0 auto 48px;
}

.cta-final__ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-final__small {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-4);
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--noir);
  padding: 80px 0 40px;
  position: relative;
  border-top: 1px solid var(--gold-soft);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--hairline-light);
}

.footer__brand-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.footer__brand-tag {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer__brand-logo {
  height: 40px;
  width: auto;
  margin-bottom: 24px;
}

.footer__brand-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--cream-4);
  max-width: 36ch;
}

.footer__col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 14px;
  color: var(--cream-3);
  transition: color 0.25s var(--ease);
}

.footer__col a:hover { color: var(--cream); }

.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--cream-4);
  letter-spacing: 0.04em;
}

.footer__bottom-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__credit {
  font-size: 11px;
  color: var(--cream-4);
  letter-spacing: 0.04em;
  font-style: italic;
}

@media (max-width: 520px) {
  .footer__bottom-left { width: 100%; }
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* =============================================================
   WHATSAPP FLOAT
   ============================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg { width: 26px; height: 26px; }

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* =============================================================
   ANIMAÇÕES DE REVEAL
   Fallbacks em camadas:
   1. Sem JS (html.no-js) → sempre visível
   2. prefers-reduced-motion → sempre visível
   3. Após 1.2s (fallback JS) → visível via .is-visible
   ============================================================= */
html.no-js .reveal { opacity: 1; transform: none; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* =============================================================
   UTILITÁRIOS
   ============================================================= */
.no-scroll-x { overflow-x: hidden; }
.center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
