@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400;1,600&family=Jost:wght@300;400&display=swap');

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

:root {
  --bg:    #2c2e2b;
  --bg-2:  #353836;
  --cream: #ede8df;
  --sand:  #d4b8a8;
  --muted: #a8a8a0;
  --dim:   #4a4d4a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

/* NAV */
#site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(212,184,168,0.15);
}
.nav-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3rem;
  height: 64px;
}
.nav-logo { text-decoration: none; display: block; line-height: 0; }
.nav-logo svg { display: block; }
.nav-bottom {
  border-top: 1px solid rgba(212,184,168,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 3rem;
}
.nav-links { display: flex; align-items: center; gap: 3rem; list-style: none; }
.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links .current-menu-item > a { color: var(--cream); }

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 106px 4rem 5rem;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,46,43,0.3) 0%, rgba(44,46,43,0.65) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 560px; }
.hero-logo-svg { margin-bottom: 2rem; }
.hero-logo-svg svg { display: block; }
.hero-tagline {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(237,232,223,0.7);
  line-height: 1.5;
  margin-bottom: 2.8rem;
}
.hero-btn {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border: 1px solid rgba(237,232,223,0.3);
  padding: 0.85rem 2rem;
  transition: border-color 0.4s, background 0.4s;
  display: inline-block;
}
.hero-btn:hover { border-color: var(--cream); background: rgba(237,232,223,0.06); }
.hero-aside {
  position: absolute;
  right: 4rem;
  bottom: 5rem;
  z-index: 1;
  text-align: right;
}
.hero-aside p {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}

/* BARRA BENEFÍCIOS */
.benefits-bar {
  background: var(--bg-2);
  border-top: 1px solid rgba(212,184,168,0.12);
  border-bottom: 1px solid rgba(212,184,168,0.12);
  display: flex;
  justify-content: center;
}
.benefits-bar-inner { display: flex; width: 100%; max-width: 1080px; }
.ben-item {
  flex: 1;
  padding: 1.2rem 2rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  border-right: 1px solid rgba(212,184,168,0.12);
  text-align: center;
  line-height: 1.5;
}
.ben-item:last-child { border-right: none; }
.ben-item strong { color: var(--cream); font-weight: 400; }

/* SEÇÕES GENÉRICAS */
.site-section { padding: 9rem 4rem; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.s-label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.2rem;
}
.s-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
}
.s-title em { font-style: italic; }

/* PILARES */
.section-pilares { background: var(--bg-2); }
.pilares-grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(212,184,168,0.15);
}
.pilar { padding: 3.5rem 2.5rem; border-right: 1px solid rgba(212,184,168,0.15); }
.pilar:first-child { padding-left: 0; }
.pilar:last-child { border-right: none; }
.pilar-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-style: italic;
  color: rgba(212,184,168,0.2);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.pilar-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--cream); margin-bottom: 0.8rem; }
.pilar-body { font-size: 0.83rem; color: var(--muted); line-height: 1.85; }

/* FRASE */
.section-frase { background: var(--bg); text-align: center; padding: 8rem 4rem; }
.frase-text {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  max-width: 680px;
  margin: 0 auto 1.4rem;
  line-height: 1.45;
}
.frase-attr { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sand); }

/* VITRINE */
.vitrine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(212,184,168,0.1);
  margin-top: 4rem;
}
.vitrine-item { aspect-ratio: 3/4; position: relative; overflow: hidden; cursor: pointer; }
.vitrine-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.vitrine-item:hover .vitrine-photo { transform: scale(1.05); }
.vitrine-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,46,43,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.vitrine-item:hover .vitrine-overlay { opacity: 1; }
.vitrine-nome { font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--cream); margin-bottom: 0.3rem; }
.vitrine-desc { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.05em; }

/* EM BREVE */
.em-breve {
  margin-top: 4rem;
  border: 1px solid rgba(212,184,168,0.15);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
}
.em-breve-tag {
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 0 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
}
.em-breve-title { font-family: var(--serif); font-size: 1.6rem; font-style: italic; color: rgba(237,232,223,0.4); margin-bottom: 0.6rem; }
.em-breve-sub { font-size: 0.78rem; color: rgba(168,168,160,0.5); }
.em-breve.dark { background: var(--bg-2); }
.em-breve.dark .em-breve-tag { background: var(--bg-2); }

/* SOBRE */
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: start; margin-top: 4rem; }
.sobre-creds { margin-top: 3rem; }
.cred { display: flex; flex-direction: column; gap: 0.2rem; padding: 1.4rem 0; border-bottom: 1px solid rgba(212,184,168,0.12); }
.cred:first-child { border-top: 1px solid rgba(212,184,168,0.12); }
.cred-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: var(--cream); }
.cred-desc { font-size: 0.8rem; color: var(--muted); }
.sobre-img { aspect-ratio: 3/4; background-size: cover; background-position: center; position: sticky; top: 6rem; }
.assinatura { margin-top: 3rem; font-family: var(--serif); font-size: 2rem; font-style: italic; color: var(--sand); }
.assinatura small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* CTA */
.section-cta { background: var(--bg-2); text-align: center; padding: 10rem 4rem; }
.cta-badge { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sand); margin-bottom: 2rem; }
.cta-title { font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 300; line-height: 1.05; color: var(--cream); margin-bottom: 2rem; }
.cta-title em { font-style: italic; }
.cta-sub { font-size: 0.85rem; color: var(--muted); max-width: 440px; margin: 0 auto 3.5rem; line-height: 1.85; }
.cta-btns { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.btn-fill {
  background: var(--sand); color: #2c2e2b;
  padding: 0.9rem 2.2rem; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; transition: background 0.3s; border: 1px solid transparent;
}
.btn-fill:hover { background: var(--cream); }
.btn-ghost {
  background: transparent; color: var(--cream);
  padding: 0.9rem 2.2rem; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(237,232,223,0.25); transition: border-color 0.3s;
}
.btn-ghost:hover { border-color: rgba(237,232,223,0.7); }
.cta-slogan { margin-top: 4rem; font-family: var(--serif); font-size: 0.95rem; font-style: italic; color: rgba(212,184,168,0.45); }

/* WA FLUTUANTE */
.wa-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 50px; height: 50px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform 0.3s;
}
.wa-btn:hover { transform: scale(1.08); }
.wa-btn svg { width: 24px; height: 24px; fill: white; }

/* FOOTER */
#site-footer {
  padding: 3rem 4rem;
  border-top: 1px solid rgba(212,184,168,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo svg { display: block; }
.footer-copy { font-size: 0.65rem; letter-spacing: 0.1em; color: rgba(74,77,74,0.8); }

/* RESPONSIVE */
@media (max-width: 860px) {
  .nav-top { padding: 0 1.8rem; height: 52px; }
  .nav-bottom { height: 38px; padding: 0 1rem; }
  .nav-links { gap: 1.4rem; }
  .nav-links a { font-size: 0.58rem; letter-spacing: 0.12em; }
  .site-section { padding: 6rem 1.8rem; }
  .hero { padding: 100px 1.8rem 4rem; }
  .hero-aside { display: none; }
  .benefits-bar-inner { flex-direction: column; }
  .ben-item { border-right: none; border-bottom: 1px solid rgba(212,184,168,0.12); }
  .ben-item:last-child { border-bottom: none; }
  .pilares-grid { grid-template-columns: 1fr; }
  .pilar { border-right: none; border-bottom: 1px solid rgba(212,184,168,0.15); padding-left: 0; }
  .pilar:last-child { border-bottom: none; }
  .vitrine-grid { grid-template-columns: 1fr 1fr; }
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-img { display: none; }
  .section-frase, .section-cta { padding: 6rem 1.8rem; }
  #site-footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2.5rem 1.8rem; }
}
