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

:root {
  --branco: #ffffff;
  --creme: #f7f3ee;
  --creme-2: #ede7df;
  --cacau: #3d2b1f;
  --cacau-2: #261a10;
  --caramelo: #c8894a;
  --cara-dim: rgba(200, 137, 74, 0.12);
  --cara-line: rgba(200, 137, 74, 0.3);
  --muted: #8a7d74;
  --borda: rgba(61, 43, 31, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--branco);
  color: var(--cacau);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--caramelo);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s, border 0.3s;
}
.cursor.hover {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--caramelo);
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.8rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--borda);
  padding: 1.1rem 4rem;
  box-shadow: 0 2px 32px rgba(61, 43, 31, 0.05);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cacau);
  letter-spacing: 0.04em;
}
.nav-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramelo);
  margin-top: 0.1rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover {
  color: var(--caramelo);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--branco);
  background: var(--cacau);
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  transition: background 0.3s;
}
.nav-cta:hover {
  background: var(--caramelo);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 4rem 6rem 4rem;
  position: relative;
}

.hero-left::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--cara-line), transparent);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--caramelo);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--caramelo);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cacau);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--caramelo);
}

.hero-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 400px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

/* BOTÕES */
.btn-cacau {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--branco);
  background: var(--cacau);
  padding: 1rem 2rem;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-cacau:hover {
  background: var(--caramelo);
}

.btn-text {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--borda);
  padding-bottom: 0.15rem;
  transition: all 0.25s;
}
.btn-text:hover {
  color: var(--caramelo);
  border-color: var(--cara-line);
}

.hero-right {
  background: var(--creme);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200, 137, 74, 0.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 137, 74, 0.15);
}
.hero-circle-1 { width: 460px; height: 460px; }
.hero-circle-2 { width: 320px; height: 320px; border-style: dashed; border-color: rgba(200, 137, 74, 0.1); }
.hero-circle-3 { width: 180px; height: 180px; background: rgba(200, 137, 74, 0.06); border: none; }

.hero-symbol {
  position: relative;
  z-index: 2;
  font-family: "Playfair Display", serif;
  font-size: 6rem;
  color: rgba(200, 137, 74, 0.15);
  user-select: none;
  line-height: 1;
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  background: var(--branco);
  border: 1px solid var(--borda);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 4px 24px rgba(61, 43, 31, 0.06);
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
  flex-shrink: 0;
}
/* FIX #5: removida classe vazia .hero-badge-info */
.hero-badge-text {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--cacau);
}
.hero-badge-sub {
  font-size: 0.6rem;
  color: var(--muted);
}

/* LABEL SEÇÃO */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--caramelo);
  margin-bottom: 1rem;
}
.section-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--caramelo);
}

/* FAIXA */
.faixa {
  background: var(--cacau);
  padding: 1.2rem 4rem;
  display: flex;
  gap: 4rem;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.faixa-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.faixa-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--caramelo);
  opacity: 0.6;
}
.faixa-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.5);
}
.faixa-text strong {
  color: rgba(247, 243, 238, 0.85);
  font-weight: 500;
}

/* CATÁLOGO */
.catalogo {
  padding: 8rem 4rem;
  border-top: 1px solid var(--borda);
}

.catalogo-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.catalogo-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.catalogo-header h2 em {
  font-style: italic;
  color: var(--caramelo);
}

.filtros {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filtro {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--borda);
  background: transparent;
  color: var(--muted);
  cursor: none;
  transition: all 0.25s;
  font-family: "DM Sans", sans-serif;
}
.filtro:hover,
.filtro.ativo {
  background: var(--cacau);
  color: var(--branco);
  border-color: var(--cacau);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.produto {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}
.produto:hover {
  transform: translateY(-4px);
}

.produto-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.2rem;
  background: var(--creme);
}

.produto-img::before {
  content: "";
  position: absolute;
  inset: 0;
}
.p-img-1::before { background: radial-gradient(ellipse at 40% 60%, #8b4513 0%, var(--creme-2) 70%); }
.p-img-2::before { background: radial-gradient(ellipse at 60% 40%, #d2691e 0%, var(--creme) 70%); }
.p-img-3::before { background: radial-gradient(ellipse at 50% 50%, #a0522d 10%, #f5deb3 80%); }
.p-img-4::before { background: radial-gradient(ellipse at 30% 70%, #654321 0%, var(--creme-2) 65%); }
.p-img-5::before { background: radial-gradient(ellipse at 65% 35%, #c8894a 0%, var(--creme) 70%); }
.p-img-6::before { background: radial-gradient(ellipse at 45% 55%, #5c3317 0%, #e8d5c0 70%); }

.produto-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 16px 16px;
}

.produto-img-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 43, 31, 0);
  transition: background 0.35s;
  z-index: 2;
}
.produto:hover .produto-img-label {
  background: rgba(61, 43, 31, 0.35);
}
.produto-img-label span {
  font-family: "Playfair Display", serif;
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0);
  letter-spacing: 0.1em;
  transition: color 0.35s;
}
.produto:hover .produto-img-label span {
  color: rgba(255, 255, 255, 0.9);
}

.produto-cat {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--branco);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cacau);
  padding: 0.3rem 0.7rem;
  z-index: 3;
}

.produto-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.produto-nome {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cacau);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.produto-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  flex: 1;
}

.produto-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--borda);
}
.produto-preco {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cacau);
}
.produto-preco span {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
  margin-right: 0.2rem;
}

.btn-pedir {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--branco);
  background: var(--cacau);
  padding: 0.6rem 1.1rem;
  text-decoration: none;
  transition: background 0.25s;
}
.btn-pedir:hover {
  background: var(--caramelo);
}
.btn-pedir svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* SOBRE */
.sobre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--borda);
}

.sobre-esq {
  background: var(--creme);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sobre-deco {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-family: "Playfair Display", serif;
  font-size: 16rem;
  font-weight: 600;
  color: rgba(200, 137, 74, 0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.sobre-esq h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.sobre-esq h2 em {
  font-style: italic;
  color: var(--caramelo);
}

.sobre-esq p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 400px;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.sobre-depo {
  margin-top: 2rem;
  position: relative;
  z-index: 1;
  padding-left: 1.5rem;
  border-left: 2px solid var(--caramelo);
}
.sobre-depo p {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--cacau);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.sobre-depo cite {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

.sobre-dir {
  padding: 7rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sobre-dir h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: var(--cacau);
}

.processo-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.processo-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--borda);
  align-items: start;
}
.processo-item:first-child { padding-top: 0; }
.processo-item:last-child { border-bottom: none; }

.processo-n {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--caramelo);
  opacity: 0.5;
  line-height: 1;
  padding-top: 0.2rem;
}
.processo-item h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--cacau);
  margin-bottom: 0.3rem;
}
.processo-item p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
}

/* CTA */
.cta {
  background: var(--cacau);
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.cta-esq h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--creme);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.cta-esq h2 em {
  font-style: italic;
  color: var(--caramelo);
}
.cta-esq p {
  font-size: 0.9rem;
  color: rgba(247, 243, 238, 0.5);
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 2.5rem;
}
.btn-creme {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cacau);
  background: var(--creme);
  padding: 1rem 2rem;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-creme:hover {
  background: var(--caramelo);
  color: var(--branco);
}

.cta-dir {
  background: rgba(247, 243, 238, 0.06);
  border: 1px solid rgba(247, 243, 238, 0.1);
  padding: 2.5rem;
}
.cta-dir-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--creme);
  margin-bottom: 1.5rem;
}
.contato-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(247, 243, 238, 0.08);
  font-size: 0.83rem;
  color: rgba(247, 243, 238, 0.45);
  transition: color 0.25s;
}
.contato-item:last-of-type {
  border-bottom: none;
  margin-bottom: 1.5rem;
}
.contato-item:hover {
  color: var(--caramelo);
}
.contato-icon {
  font-size: 0.75rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* FOOTER */
footer {
  background: var(--cacau-2);
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.2);
}
footer a {
  color: var(--caramelo);
  text-decoration: none;
}
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(247, 243, 238, 0.5);
  text-transform: none;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  padding: 0.85rem 1.3rem;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}
.whatsapp-float svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

/* ANIMAÇÕES */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FIX #3: cursor visível e cursor element oculto no mobile */
@media (max-width: 960px) {
  body {
    cursor: auto;
  }
  .cursor {
    display: none;
  }

  .nav {
    padding: 1.4rem 1.5rem;
  }
  .nav.scrolled {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 8rem 1.5rem 4rem;
  }
  .hero-left::after {
    display: none;
  }
  .hero-right {
    min-height: 260px;
  }

  .faixa {
    padding: 1rem 1.5rem;
    gap: 2rem;
  }

  .catalogo {
    padding: 4rem 1.5rem;
  }
  .catalogo-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .produtos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .sobre {
    grid-template-columns: 1fr;
  }
  .sobre-esq,
  .sobre-dir {
    padding: 4rem 1.5rem;
  }

  .cta {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    gap: 3rem;
  }

  footer {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

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