/* ============================================================
   CASA DOIS ARQUITETOS — estilo.css
   ============================================================

   ÍNDICE:
   1.  Variáveis & Reset
   2.  Tipografia base
   3.  Navegação
   4.  Seção: Hero
   5.  Seção: Sobre
   6.  Seção: Essência
   7.  Seção: Processo
   8.  Seção: Projetos
   9.  Seção: Interiores
   10. Seção: Depoimentos
   11. Seção: Encerramento
   12. Seção: Contato
   13. Rodapé
   14. Animações de scroll
   15. Responsivo

   ============================================================ */


/* ── 1. VARIÁVEIS & RESET ─────────────────────────────────── */

:root {
  --algodao:         #F4F3EF;   /* fundo principal */
  --cappuccino:      #988E84;   /* cor de destaque / marca */
  --cappuccino-dark: #6b6259;
  --cappuccino-light:#c4bdb6;
  --branco:          #FAFAF8;
  --cinza-texto:     #4D4D4D;
  --preto-suave:     #1a1917;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--algodao);
  color: var(--preto-suave);
  overflow-x: hidden;
}


/* ── 2. TIPOGRAFIA BASE ───────────────────────────────────── */

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cappuccino);
  margin-bottom: 32px;
}

.section-title {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--cappuccino);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.section-title strong { font-weight: 500; }

.section-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--cinza-texto);
  max-width: 460px;
  margin-bottom: 24px;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--cappuccino);
  margin: 20px 0;
}


/* ── 3. NAVEGAÇÃO ─────────────────────────────────────────── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  background: rgba(244, 243, 239, 0.92);
  backdrop-filter: blur(12px);
}

/*
   ┌─ LOGO — NAVEGAÇÃO ──────────────────────────────────────┐
   │ Arquivo: assets/logos/logo-nav.png                      │
   │ Recomendado: PNG com fundo transparente, ~180px largura │
   └─────────────────────────────────────────────────────────┘
*/
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav ul a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cinza-texto);
  transition: color 0.3s;
}

nav ul a:hover { color: var(--cappuccino); }

/* Botão hambúrguer (visível apenas no mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--preto-suave);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.aberto span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.aberto span:nth-child(2) { opacity: 0; }
.nav-toggle.aberto span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ── 4. HERO ──────────────────────────────────────────────── */

#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.hero-left {
  background: var(--cappuccino);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 80px 80px;
}


/*
   ┌─ LOGO — HERO (CAPA) ────────────────────────────────────┐
   │ Arquivo: assets/logos/logo-hero.png                     │
   │ Recomendado: PNG com fundo transparente, versão clara   │
   │ (branca ou algodão), ~320px largura                     │
   └─────────────────────────────────────────────────────────┘
*/
.hero-logo {
  margin-bottom: 48px;
}

.hero-logo img {
  width: 100px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.hero-tagline {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--algodao);
  letter-spacing: 0.02em;
  max-width: 640px;
}

.hero-tagline em {
  font-style: normal;
  font-weight: 500;
  color: #fff;
}

.hero-right {
  background: var(--algodao);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 80px 80px;
}

/*
   ┌─ IMAGEM — CAPA PRINCIPAL ───────────────────────────────┐
   │ Arquivo: assets/imagens/hero-capa.jpg                   │
   │ Recomendado: horizontal, mínimo 1400×1050px             │
   └─────────────────────────────────────────────────────────┘
*/
.hero-foto {
  width: 120%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cappuccino);
}

.hero-stat {
  background: var(--cappuccino);
  padding: 24px 0 0;
}

.hero-stat-number {
  font-size: 36px;
  font-weight: 300;
  color: var(--cappuccino);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--algodao);
  justify-content: center;
  margin-bottom: 80px;
}


/* ── 5. SOBRE ─────────────────────────────────────────────── */

#sobre {
  background: var(--cap);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.sobre-left {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sobre-right {
  position: relative;
  overflow: hidden;
}

/*
   ┌─ IMAGEM — FOTO DOS SÓCIOS ──────────────────────────────┐
   │ Arquivo: assets/imagens/sobre/socios.jpg                │
   │ Recomendado: retrato, mínimo 800×1100px                 │
   └─────────────────────────────────────────────────────────┘
*/
.sobre-foto-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%  ;
  object-fit: cover;
  display: block;
}

.sobre-card {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(244, 243, 239, 0.95);
  padding: 30px;
  z-index: 2;
}

.socios-title {
  font-size: 15px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  color: var(--cappuccino);
  margin-bottom: 20px;
}

.socio { margin-bottom: 6px; }

.socio-name {
  font-size: 24px;
  font-weight: 500;
  color: var(--cappuccino);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 1px;
}

.socio-role {
  font-size: 16px;
  font-weight: 300;
  color: var(--cappuccino);
  text-align: center;
  letter-spacing: 0.12em;
}

.socios-grid {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.socios-grid .socio {
    flex: 1;
}


/* ── 6. ESSÊNCIA ──────────────────────────────────────────── */

#essencia {
  background: var(--cappuccino);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 160px 80px;
  text-align: center;
  position: relative;
}

.essencia-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.essencia-quote {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--algodao);
  letter-spacing: 0.01em;
  margin-bottom: 48px;
  font-style: italic;
}

.essencia-quote em {
  font-style: normal;
  font-weight: 500;
  color: #fff;
}

.essencia-valores {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.valor-item {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 243, 239, 0.6);
}


/* ── 7. PROCESSO ──────────────────────────────────────────── */

#processo {
  background: var(--algodao);
  padding: 160px 80px;
}

.processo-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 100px;
  align-items: end;
}

.processo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cappuccino-light);
}

.step {
  background: var(--algodao);
  padding: 48px 40px;
  transition: background 0.3s;
}

.step:hover { background: var(--branco); }

.step-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--cappuccino);
  margin-bottom: 24px;
}

.step-name {
  font-size: 18px;
  font-weight: 400;
  color: var(--preto-suave);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.step-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cinza-texto);
}

.step-bar {
  width: 0;
  height: 2px;
  background: var(--cappuccino);
  margin-top: 32px;
  transition: width 0.6s ease;
}

.step:hover .step-bar { width: 150px; }


/* ── 8. PROJETOS ──────────────────────────────────────────── */

#projetos {
  background: var(--branco);
  padding: 160px 80px;
}

.projetos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

/* --- Projeto em destaque (largura total) --- */
.projeto-destaque {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1px;
  background: var(--cappuccino-light);
  margin-bottom: 1px;
  overflow: hidden;
}

/*
   ┌─ IMAGEM — PROJETO EM DESTAQUE ──────────────────────────┐
   │ Arquivo: assets/imagens/projetos/destaque.jpg           │
   │ Recomendado: paisagem, mínimo 1600×700px                │
   └─────────────────────────────────────────────────────────┘
*/
.projeto-destaque-foto {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.projeto-destaque:hover .projeto-destaque-foto { transform: scale(1.05); }

.projeto-destaque-lado {
  background: var(--algodao);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.projeto-full-title {
  font-size: 28px;
  font-weight: 300;
  color: var(--preto-suave);
  margin-bottom: 24px;
  line-height: 1.2;
}

.projeto-full-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cinza-texto);
  margin-bottom: 32px;
}

.projeto-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cappuccino);
  border: 1px solid var(--cappuccino-light);
  padding: 6px 16px;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* --- Grade de projetos (2 colunas) --- */
.projeto-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1px;
    background:var(--cappuccino-light);
}

.projeto-card.duas-colunas{
    grid-column: 1 / -1;
}

.projeto-card.esquerda{
    grid-column: 1;
}

.projeto-card.direita{
    grid-column: 2;
}

/*
   ┌─ IMAGENS — GRADE DE PROJETOS ───────────────────────────┐
   │ projeto-serenidade.jpg → assets/imagens/projetos/       │
   │ projeto-casa-brisa.jpg → assets/imagens/projetos/       │
   │ Recomendado: 4:3, mínimo 900×675px                      │
   └─────────────────────────────────────────────────────────┘
*/
.projeto-foto {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.projeto-card:hover .projeto-foto { transform: scale(1.03); }

.projeto-info {
  padding: 32px 40px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.projeto-nome {
  font-size: 20px;
  font-weight: 400;
  color: var(--preto-suave);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.projeto-meta {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--cappuccino);
}

.projeto-conceito {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--cinza-texto);
  max-width: 200px;
  text-align: right;
}



/* ── 9. INTERIORES ────────────────────────────────────────── */

#interiores {
  background: var(--algodao);
  padding: 160px 80px;
}

/*
   ┌─ IMAGENS — INTERIORES ──────────────────────────────────┐
   │ Pasta: assets/imagens/interiores/                       │
   │                                                         │
   │  sala.jpg     → 3:4 vertical   (retrato)                │
   │  cozinha.jpg  → 1:1 quadrado                            │
   │  quarto.jpg   → 3:4 vertical   (retrato)                │
   │  social.jpg   → 3:2 horizontal (paisagem, 2 colunas)    │
   └─────────────────────────────────────────────────────────┘
*/
.interiores-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cappuccino-light);
  margin-top: 80px;
}

.int-img {
  overflow: hidden;
  display: block;
}

.int-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

/* Proporções individuais */
.int-img.tall   { aspect-ratio: 3 / 4; }
.int-img.sq     { aspect-ratio: 1 / 1; }
.int-img.wide   { aspect-ratio: 16 / 9; }
.int-img.span2  { grid-column: span 2; }

/* Vertical grande */
.int-img.tall2  {grid-row: span 2; aspect-ratio: 3 / 8;}

/* Horizontal panorâmica */
.int-img.wide3 {grid-column: span 3; aspect-ratio: 21 / 9;}

/* Quadrado grande */
.int-img.sq2 {grid-column: span 2;grid-row: span 2; aspect-ratio: 1 / 1;}

/* Destaque gigante */
.int-img.hero {grid-column: span 3; grid-row: span 2; aspect-ratio: 21 / 9;}


/* ── 10. DEPOIMENTOS ─────────────────────────────────────── */

#depoimentos {
  background: var(--cappuccino);
  padding: 160px 80px;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 80px;
}

.depoimento {
  background: var(--algodao);
  padding: 60px;
}

.depoimento:nth-child(even) { background: var(--algodao); }

.depo-aspas {
  font-size: 72px;
  font-weight: 300;
  color: var(--algodao) ;
  line-height: 0.6;
  margin-bottom: 32px;
}

.depo-texto {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cappuccino);
  margin-bottom: 40px;
  font-style: italic;
}

.depo-autor {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cappuccino-light);
}


/* ── 11. ENCERRAMENTO ────────────────────────────────────── */

#encerramento {
  background: var(--algodao);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.enc-esquerda {
  position: relative;
  overflow: hidden;
}

/*
   ┌─ IMAGEM — ENCERRAMENTO (MELHOR FOTO) ───────────────────┐
   │ Arquivo: assets/imagens/encerramento.jpg                │
   │ Recomendado: retrato ou 3:4, mínimo 900×1200px          │
   └─────────────────────────────────────────────────────────┘
*/
.enc-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.enc-direita {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 80px;
}

.enc-mensagem {
  font-size: 26px;
  font-weight: 350;
  line-height: 1.6;
  color: var(--cappuccino);
  max-width: 500px;
  margin-bottom: 48px;
}

.enc-mensagem em {
  font-style: normal;
  color: var(--cappuccino);
  font-weight: 1500;
}

/*
   ┌─ LOGO — ENCERRAMENTO ───────────────────────────────────┐
   │ Arquivo: assets/logos/logo-encerramento.png             │
   │ Recomendado: PNG com fundo transparente, versão clara   │
   │ (branca ou algodão), ~240px largura                     │
   └─────────────────────────────────────────────────────────┘
*/
.enc-logo img {
  width: 120px;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.85;
}


/* ── 12. CONTATO ─────────────────────────────────────────── */

#contato {
  background: var(--cappuccino);
  padding: 100px 20px;
  display: flex;
  justify-content: left;
}

.titulo-sonho {
    font-size: 36px;
    color: var(--algodao);
    margin-left: 50px;
}

.contato-left {
  max-width: 650px;
  text-align: left;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
  margin-left: 50px;
}

.contato-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contato-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--algodao );
}

.contato-valor {
  font-size: 16px;
  font-weight: 300;
  color: var(--algodao);
}

.whatsapp-link {
  text-decoration: none;
  color: var(--algodao);
  transition: color 0.3s ease;
}

.whatsapp-link:hover {
  color: var(--cappuccino-light);
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 14px;
  width: fit-content;
  padding: 14px 20px;
  background: var(--algodao);
  color: var(--cappuccino-ligh);
  border-radius: 8px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: var(--cappuccino-light);
  color: var(--algodao);
  transform: translateY(-2px);
}

.contato-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.instagram-link {
  text-decoration: none;
  color: var(--algodao);
  transition: color 0.3s ease;
}

.instagram-link:hover {
  color: var(--cappuccino-light);
  transform: translateY(-2px);
}


/*
   ┌─ IMAGEM — QR CODE ──────────────────────────────────────┐
   │ Arquivo: assets/imagens/qrcode.png                      │
   │ Recomendado: PNG quadrado, mínimo 400×400px             │
   └─────────────────────────────────────────────────────────┘
*/
.contato-qr img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
}

.contato-qr-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--algodao);
  text-align: center;
  text-transform: uppercase;
}


/* ── 13. RODAPÉ ──────────────────────────────────────────── */

footer {
  background: var(--algodao);
  padding: 48px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--cappuccino-dark);
}

/*
   ┌─ LOGO — RODAPÉ ─────────────────────────────────────────┐
   │ Arquivo: assets/logos/logo-footer.png                   │
   │ Recomendado: PNG com fundo transparente, versão clara   │
   │ (branca ou algodão), ~160px largura                     │
   └─────────────────────────────────────────────────────────┘
*/
.footer-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.8;
}


/* ── 14. ANIMAÇÕES DE SCROLL ─────────────────────────────── */

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

.reveal.visivel        { opacity: 1; transform: translateY(0); }
.reveal-delay-1        { transition-delay: 0.1s; }
.reveal-delay-2        { transition-delay: 0.2s; }
.reveal-delay-3        { transition-delay: 0.3s; }
.reveal-delay-4        { transition-delay: 0.4s; }


/* ── 15. RESPONSIVO ──────────────────────────────────────── */

@media (max-width: 900px) {

  nav { padding: 20px 24px; }

  .nav-toggle { display: flex; }

  nav ul {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: var(--branco);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    padding: 0 48px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    box-shadow: -8px 0 30px rgba(0,0,0,0.08);
  }

  nav ul.aberto { transform: translateX(0); }

  nav ul a { font-size: 13px; }

  #hero,
  #sobre,
  #encerramento,
  #contato {
    grid-template-columns: 1fr;
  }

  .hero-left,
  .hero-right,
  .sobre-left,
  .enc-direita {
    padding: 80px 32px 60px;
  }

  .sobre-right { min-height: 60vh; }

  .hero-logo img { width: 200px; }

  #essencia,
  #processo,
  #projetos,
  #depoimentos,
  #interiores { padding: 100px 24px; }

  .processo-header { grid-template-columns: 1fr; gap: 40px; }
  .processo-steps  { grid-template-columns: 1fr 1fr; }

  .projetos-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .projeto-destaque { grid-template-columns: 1fr; }
  .projeto-grid     { grid-template-columns: 1fr; }

  .depoimentos-grid { grid-template-columns: 1fr; }

  .interiores-masonry { grid-template-columns: 1fr 1fr; }
  .int-img.span2 { grid-column: span 2; }

  footer { flex-direction: column; gap: 24px; text-align: center; }
}
