@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #C8956C;
  --gold-light: #D4A574;
  --gold-dark: #A67B5B;
  --bg-dark: #0D0D0D;
  --bg-section: #141414;
  --bg-card: #1A1A1A;
  --text-primary: #F5F0EB;
  --text-secondary: #A89B8C;
  --text-muted: #6B6260;
  --border: #2A2523;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* TOP BAR */
.top-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 8px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #0D0D0D;
  letter-spacing: 1px;
}

/* HEADER */
header {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area { display: flex; align-items: center; gap: 14px; }

.logo-area img { height: 50px; border-radius: 8px; }

.logo-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}

.logo-text span {
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

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

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

nav a:hover::after { width: 100%; }

.menu-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 28px; cursor: pointer; }

/* HERO */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero.png') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.5) 0%, rgba(13,13,13,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
  animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}

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

.hero-content p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0D0D0D;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,149,108,0.3);
}

/* SECTIONS */
.section {
  padding: 90px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt { background: var(--bg-section); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-header h3 span { color: var(--gold); }

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about-img { border-radius: 16px; overflow: hidden; }

.about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s;
}

.about-img:hover img { transform: scale(1.05); }

.about-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--gold-light);
}

.about-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.value-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gold-light);
}

.value-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* INFO CARDS */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.info-card .icon { font-size: 32px; margin-bottom: 14px; }

.info-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* PRODUCTS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.product-card .card-body { padding: 24px; }

.product-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.3s;
}

.contact-item:hover { border-color: var(--gold); }

.contact-item .ci-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* LEGAL */
.legal-section {
  background: var(--bg-section);
  padding: 60px 24px;
}

.legal-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.legal-card h5 {
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.legal-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FOOTER */
footer {
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h4 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-cnpj {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { display: none; }
  .menu-toggle { display: block; }
  nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
  }
  .hero-content h2 { font-size: 34px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
