:root {
  --black: #0a0a0a;
  --ink: #1a1a1a;
  --cream: #faf6f1;
  --bone: #f3ece4;
  --gold: #c89669;
  --gold-deep: #a8794d;
  --gold-light: #e0bd9a;
  --rose: #d8a89a;
  --muted: #6b6258;
  --line: rgba(200, 150, 105, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: all .3s ease;
}
nav .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none; color: var(--ink);
}
.brand img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: .65rem 1.25rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, transform .25s;
}
.nav-cta:hover { background: var(--gold-deep); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 0;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: transform .3s, opacity .3s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: var(--cream);
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(200, 150, 105, 0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 50%; height: 60%;
  background: radial-gradient(circle, rgba(216, 168, 154, 0.15), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.hero .inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px; background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
  color: var(--black);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer; border: none;
  transition: all .25s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(168, 121, 77, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  justify-self: end;
  width: 100%;
}
.hero-visual .frame {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.35);
  transform: rotate(2deg);
  transition: transform .6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}
.hero-visual .frame::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 130%; height: 130%;
  background: radial-gradient(circle, rgba(200,150,105,0.22), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-visual .frame:hover { transform: rotate(0deg); }
.hero-visual .frame img {
  width: 100%;
  height: auto;
  max-height: 60%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
}
.hero-visual .badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.2);
  z-index: 3;
  max-width: 220px;
}
.hero-visual .badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-visual .badge .label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .35rem;
}

/* ---------- SECTION SHARED ---------- */
section { padding: 6rem 0; position: relative; }
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  line-height: 1.15;
  margin-top: .75rem;
  margin-bottom: 1rem;
}
.section-head h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

/* ---------- SOBRE ---------- */
.sobre { background: var(--bone); }
.sobre .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sobre-text .eyebrow { margin-bottom: 1rem; }
.sobre-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.sobre-text h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sobre-text p { color: var(--muted); margin-bottom: 1rem; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-deep);
}
.stat .label {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .35rem;
}

.sobre-image {
  position: relative;
  aspect-ratio: 924 / 1042;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.3);
  max-width: 460px;
  justify-self: center;
  width: 100%;
}
.sobre-image img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ---------- MARCAS ---------- */
.marcas { background: var(--ink); color: var(--cream); }
.marcas .section-head h2 { color: var(--cream); }
.marcas .section-head p { color: rgba(250,246,241,0.7); }
.marcas .eyebrow { color: var(--gold-light); }
.marcas .eyebrow::before { background: var(--gold-light); }

.grid-marcas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.marca-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,150,105,0.2);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.marca-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,150,105,0.08), transparent 60%);
  opacity: 0;
  transition: opacity .35s;
}
.marca-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.marca-card:hover::before { opacity: 1; }
.marca-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: .7;
}
.marca-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.85rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
}
.marca-card p {
  color: rgba(250,246,241,0.7);
  font-size: .92rem;
  line-height: 1.7;
  position: relative;
}
.marca-tag {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  padding: .25rem .75rem;
  border: 1px solid rgba(224,189,154,0.3);
  border-radius: 999px;
}

/* ---------- DIFERENCIAIS ---------- */
.diferenciais { background: var(--cream); }
.grid-diff {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.diff-item { text-align: center; padding: 1rem; }
.diff-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -10px rgba(200,150,105,0.5);
}
.diff-icon svg { width: 28px; height: 28px; stroke: var(--cream); fill: none; stroke-width: 1.5; }
.diff-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: .75rem;
}
.diff-item p { color: var(--muted); font-size: .95rem; }

/* ---------- GALERIA ---------- */
.galeria { background: var(--bone); }
.grid-galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gal-item {
  aspect-ratio: 924 / 1042;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.3);
  background: var(--cream);
}
.gal-item img {
  width: 100%; height: 100%; object-fit: contain;
  display: block;
  transition: transform .8s ease;
}
.gal-item:hover img { transform: scale(1.04); }

/* ---------- CONTATO ---------- */
.contato { background: var(--cream); }
.contato-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.contato-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  text-align: left;
  transition: all .3s ease;
  display: flex; flex-direction: column;
}
.contato-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px -20px rgba(168, 121, 77, 0.3);
}
.contato-card .tag {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .85rem;
  font-weight: 600;
}
.contato-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: .5rem;
  color: var(--ink);
}
.contato-card .num {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  letter-spacing: .02em;
}
.contato-card .btn {
  align-self: flex-start;
  margin-top: auto;
  background: #25d366;
  color: #fff;
  padding: .8rem 1.4rem;
  font-size: .75rem;
}
.contato-card .btn:hover {
  background: #1ebc59;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.5);
}
.endereco-bar {
  background: var(--ink);
  color: var(--cream);
  padding: 2rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.endereco-bar .pin {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
}
.endereco-bar .pin svg { width: 22px; height: 22px; stroke: var(--cream); fill: none; stroke-width: 1.7; }
.endereco-bar .info { flex: 1; min-width: 240px; }
.endereco-bar .info .label {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .25rem;
  font-weight: 600;
}
.endereco-bar .info .addr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--cream);
}
.endereco-bar a.btn-ghost {
  color: var(--cream);
  border-color: rgba(250,246,241,0.4);
}
.endereco-bar a.btn-ghost:hover {
  background: var(--cream); color: var(--ink); border-color: var(--cream);
}

/* ---------- CTA FINAL ---------- */
.cta-final {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200,150,105,0.15), transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-final .inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-final h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.cta-final h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-final p {
  color: rgba(250,246,241,0.75);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.cta-final .btn-primary {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
}
.cta-final .btn-primary:hover {
  background: var(--cream);
  color: var(--ink);
}
.cta-final .btn-ghost {
  color: var(--cream);
  border-color: rgba(250,246,241,0.4);
}
.cta-final .btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* ---------- FOOTER ---------- */
footer {
  background: #050505;
  color: rgba(250,246,241,0.6);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(200,150,105,0.15);
}
footer .inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
footer .brand-block img { height: 48px; margin-bottom: 1rem; filter: brightness(1.1); }
footer .brand-block p { font-size: .9rem; max-width: 320px; line-height: 1.7; }
footer h4 {
  color: var(--cream);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
footer ul a {
  color: rgba(250,246,241,0.6);
  text-decoration: none;
  font-size: .9rem;
  transition: color .25s;
}
footer ul a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem;
  flex-wrap: wrap; gap: 1rem;
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px -8px rgba(37, 211, 102, 0.6);
  z-index: 50;
  transition: transform .25s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ---------- REVEAL ANIM ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero .inner,
  .sobre .inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { justify-self: center; max-width: 380px; }
  .grid-marcas, .grid-diff, .grid-galeria, .contato-grid { grid-template-columns: 1fr; }
  .grid-galeria { grid-template-columns: repeat(2, 1fr); }
  footer .inner { grid-template-columns: 1fr 1fr; }
  footer .brand-block { grid-column: 1 / -1; }

  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .menu-toggle { display: flex; }
  .nav-cta { display: none; }
}

@media (max-width: 540px) {
  section { padding: 4rem 0; }
  .hero { padding: 7rem 0 4rem; }
  .hero-visual .badge { left: -1rem; bottom: -1.5rem; padding: 1rem 1.25rem; }
  .stats { grid-template-columns: 1fr; gap: 1.25rem; text-align: center; }
  .grid-galeria { grid-template-columns: 1fr; }
  footer .inner { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .cta-row { flex-direction: column; }
  .btn { justify-content: center; }
}
