:root {
  --gold: #c9963a;
  --gold-light: #e8b85a;
  --dark: #1a1a1a;
  --mid: #2e2e2e;
  --white: #ffffff;
  --off-white: #f5f2ee;
  --gray: #888;
  --border: #e0d8cc;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

i{
    padding-top: 5px;
}
/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 90px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-logo img {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.header-logo .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header-logo .brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--dark);
}

.header-logo .brand-sub {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--gold);
}
nav a:hover::after {
  width: 100%;
}

/* ── HERO ── */
.hero {
  background: var(--dark);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 18px,
    rgba(201, 150, 58, 0.04) 18px,
    rgba(201, 150, 58, 0.04) 19px
  );
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 5vw 60px 7vw;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--gold);
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 420px;
}

.hero-image-side {
  position: relative;
  overflow: hidden;
}

.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.1);
}

.hero-image-side .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 35%);
}

.hero-placeholder-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, #2a2a2a 0%, #111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: rgba(255, 255, 255, 0.2);
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.hero-placeholder-img svg {
  opacity: 0.18;
}

/* ── SECTION TÍTULOS ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 14px auto 0;
}

/* ── PRODUTOS ── */
#produtos {
  padding: 90px 5vw;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.product-card {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
  background: var(--white);
  position: relative;
}

/* Hover principal */
.product-card:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

/* === ANIMAÇÃO DA BORDA === */
.product-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: height 0.3s ease 0.25s;
  z-index: 2;
}

.product-card:hover::before {
  height: 100%;
}

/* Segunda parte da animação: borda horizontal vindo da esquerda */
.product-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 4px;
  background: var(--gold);
  transition: width 0.3s ease; /* delay para começar depois da vertical */
  z-index: 2;
}

.product-card:hover::after {
  width: 100%; /* vai até a direita */
}

/* Resto dos estilos (mantidos iguais) */

.product-image-wrap {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background: #f0ece6;
  overflow: hidden;
}

.product-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.05);
}

.product-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--gray);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.product-body {
  padding: 30px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-brand {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.product-desc {
  font-size: 0.95rem;
  line-height: 1.72;
  color: #555;
  flex: 1;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.product-tag {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  color: var(--dark);
  text-transform: uppercase;
}

/* Divider */
.divider {
  border: none;
  border-top: 1.5px solid var(--border);
  margin: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: var(--white);
  border-top: 3px solid var(--gold);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding: 60px 7vw;
}

.footer-brand img {
  height: 60px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 300px;
}

.footer-col h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.footer-col ul li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

.footer-gold {
  color: var(--gold) !important;
}

/* ── RESPONSIVO ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-image-side {
    display: none;
  }
  .hero-content {
    padding: 56px 6vw;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  header {
    padding: 0 4vw;
    height: 76px;
  }
  nav {
    display: none;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Scroll fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
