/* =============================================
   RESET & VARIÁVEIS
   ============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --marfim:   #FAF7F4;
  --creme:    #F2EBE3;
  --bege:     #E4D8CC;
  --dourado:  #A8844E;
  --dourado-claro: #C9A96E;
  --carbon:   #1A1210;
  --vinho:    #4A1E2B;
  --cinza:    #7A6E66;
  --cinza-claro: #A89E96;
  --branco:   #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--marfim);
  color: var(--carbon);
  -webkit-font-smoothing: antialiased;
}

/* =============================================
   UTILITÁRIOS
   ============================================= */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1.2rem;
}

.label-claro {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dourado-claro);
  margin-bottom: 1.2rem;
}

.fundo-creme  { background: var(--creme); }
.fundo-branco { background: var(--branco); }

/* =============================================
   BOTÕES
   ============================================= */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.35);
}

.btn-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45);
}

.btn-escuro {
  background: var(--carbon);
  color: var(--marfim);
  box-shadow: 0 6px 28px rgba(26, 18, 16, 0.18);
}

.btn-escuro:hover {
  background: var(--vinho);
  box-shadow: 0 12px 36px rgba(74, 30, 43, 0.3);
}

.btn-grande {
  font-size: 0.92rem;
  padding: 20px 48px;
}

/* =============================================
   NAVEGAÇÃO
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bege);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
}

.nav-logo-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--carbon);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dourado);
}

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--carbon);
  border: 1.5px solid var(--bege);
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--carbon);
  color: var(--marfim);
  border-color: var(--carbon);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: var(--marfim);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: calc(72px + 5rem);
  padding-bottom: 5rem;
  padding-left: 5rem;
  padding-right: 4rem;
  gap: 1.8rem;
}

.tag {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dourado);
}

.hero-texto h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--carbon);
}

.hero-texto h1 em {
  font-style: italic;
  color: var(--vinho);
}

.hero-desc {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--cinza);
  max-width: 420px;
}

.hero-selos {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--cinza-claro);
  flex-wrap: wrap;
}

.hero-selos .sep {
  color: var(--bege);
}

.hero-foto {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-foto-moldura {
  position: absolute;
  inset: 0;
}

.hero-foto-moldura::before {
  content: '';
  position: absolute;
  top: 3rem;
  left: -1.5rem;
  right: 2rem;
  bottom: 3rem;
  border: 1.5px solid rgba(228, 216, 204, 0.5);
  z-index: 1;
  pointer-events: none;
}

.hero-foto-moldura img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.92);
}

/* =============================================
   FILOSOFIA
   ============================================= */
.filosofia {
  background: var(--vinho);
  padding: 80px 0;
}

.filo-inner {
  text-align: center;
}

.filo-linha {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 2.5rem;
}

.filo-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: #FAF7F4;
  line-height: 1.4;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.filo-texto {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(250, 247, 244, 0.7);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

/* =============================================
   SOBRE
   ============================================= */
.sobre {
  background: var(--branco);
  padding: 110px 0;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-foto-wrap {
  position: relative;
}

.sobre-foto-detalhe {
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1.5px solid var(--bege);
  z-index: 0;
  border-radius: 2px;
}

.sobre-foto {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  filter: saturate(0.9);
}

.sobre-texto h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--carbon);
  margin-bottom: 1.6rem;
}

.sobre-texto h2 em {
  font-style: italic;
  color: var(--vinho);
}

.sobre-texto p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--cinza);
  margin-bottom: 1.2rem;
}

.sobre-nums {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bege);
}

.num-item {
  display: flex;
  flex-direction: column;
}

.num-item strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--dourado);
  line-height: 1;
}

.num-item span {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cinza-claro);
  margin-top: 0.4rem;
}

/* =============================================
   PROCEDIMENTOS
   ============================================= */
.procedimento {
  padding: 110px 0;
}

.proc-grid {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 4rem;
  align-items: start;
}

.proc-lado-esq {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.5rem;
}

.proc-numero {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--bege);
  line-height: 1;
  display: block;
}

.proc-linha-deco {
  width: 1px;
  height: 80px;
  background: var(--bege);
  margin-top: 1rem;
}

.proc-conteudo h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--carbon);
  margin-bottom: 1.8rem;
}

.proc-conteudo h2 em {
  font-style: italic;
  color: var(--vinho);
}

.proc-conteudo p {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 2;
  color: var(--cinza);
  margin-bottom: 1.2rem;
  max-width: 700px;
}

.proc-conteudo .btn-cta {
  margin-top: 1.5rem;
}

/* =============================================
   RESULTADOS
   ============================================= */
.resultados {
  background: var(--marfim);
  padding: 110px 0;
}

.resultados h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--carbon);
  margin-bottom: 0.8rem;
}

.resultados h2 em {
  font-style: italic;
  color: var(--vinho);
}

.resultados-sub {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cinza);
  margin-bottom: 3.5rem;
  max-width: 560px;
}

.fotos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.foto-resultado {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 3px;
  background: var(--bege);
}

.foto-resultado img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
  filter: saturate(0.9);
}

.foto-resultado:hover img {
  transform: scale(1.04);
}

/* =============================================
   METODOLOGIA
   ============================================= */
.metodologia {
  background: var(--creme);
  padding: 110px 0;
}

.metodologia h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--carbon);
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.metodologia h2 em {
  font-style: italic;
  color: var(--vinho);
}

.metod-intro {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 2;
  color: var(--cinza);
  max-width: 700px;
  margin-bottom: 4rem;
}

.etapas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--bege);
  padding-top: 3rem;
}

.etapa {
  display: flex;
  flex-direction: column;
}

.etapa-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--dourado-claro);
  margin-bottom: 1rem;
}

.etapa h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--carbon);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.etapa p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cinza);
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
  background: var(--carbon);
  padding: 130px 0;
}

.cta-inner {
  text-align: center;
}

.cta-final h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--marfim);
  margin-bottom: 1.5rem;
}

.cta-final h2 em {
  font-style: italic;
  color: var(--dourado-claro);
}

.cta-final p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(250, 247, 244, 0.6);
  max-width: 580px;
  margin: 0 auto 3rem;
}

.cta-rodape {
  display: block;
  margin-top: 1.5rem !important;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250, 247, 244, 0.3) !important;
  margin-bottom: 0 !important;
}

/* =============================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================= */
.whatsapp-flutuante {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
}

.whatsapp-flutuante svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.whatsapp-flutuante:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #110B09;
  padding: 2.5rem 2rem;
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(250, 247, 244, 0.5);
  letter-spacing: 1px;
}

.footer-info {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 247, 244, 0.25);
}

.footer-copy {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(250, 247, 244, 0.15);
  margin-top: 0.3rem;
}

/* =============================================
   RESPONSIVO — TABLET
   ============================================= */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-texto {
    padding-top: calc(72px + 3rem);
    padding-bottom: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    order: 1;
  }

  .hero-foto {
    min-height: 70vw;
    order: 2;
  }

  .hero-foto-moldura::before {
    display: none;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sobre-foto {
    height: 420px;
  }

  .sobre-foto-wrap {
    order: -1;
  }

  .proc-grid {
    grid-template-columns: 60px 1fr;
    gap: 2rem;
  }

  .proc-numero {
    font-size: 3.5rem;
  }

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

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

/* =============================================
   RESPONSIVO — MOBILE
   ============================================= */
@media (max-width: 600px) {
  .nav-cta {
    display: none;
  }

  .hero-texto {
    padding: 6rem 1.5rem 2.5rem;
  }

  .hero-foto {
    height: 80vw;
  }

  .hero-selos {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .hero-selos .sep {
    display: none;
  }

  .proc-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .proc-lado-esq {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .proc-linha-deco {
    width: 40px;
    height: 1px;
    margin: 0;
  }

  .proc-numero {
    font-size: 3rem;
  }

  .fotos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .etapas {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sobre-nums {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .btn-grande {
    font-size: 0.82rem;
    padding: 16px 28px;
  }

  .container {
    padding: 0 1.5rem;
  }

  .sobre,
  .procedimento,
  .resultados,
  .metodologia {
    padding: 70px 0;
  }

  .cta-final {
    padding: 80px 0;
  }
}
