/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Georgia', 'Times New Roman', serif; color: #2c2c2c; background: #fafaf8; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== TOPO INSTITUCIONAL ===== */
.topo-institucional {
  background: #1a1a2e;
  color: #d4af37;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}
.topo-institucional strong { color: #fff; }
.topo-institucional span { margin: 0 8px; color: #888; }

/* ===== HEADER ===== */
header {
  background: #fff;
  border-bottom: 3px solid #d4af37;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.logo-area h1 { font-size: 1.6rem; color: #1a1a2e; letter-spacing: 1px; }
.logo-area p { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 2px; }
nav ul { display: flex; gap: 28px; flex-wrap: wrap; }
nav ul li a {
  font-size: 0.88rem;
  color: #2c2c2c;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: Arial, sans-serif;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
nav ul li a:hover, nav ul li a.ativo { color: #d4af37; border-bottom-color: #d4af37; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  text-align: center;
  padding: 90px 24px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; max-width: 700px; margin: 0 auto; }
.hero h2 { font-size: 2.8rem; margin-bottom: 16px; letter-spacing: 2px; }
.hero h2 span { color: #d4af37; }
.hero p { font-size: 1.1rem; opacity: 0.85; margin-bottom: 32px; }
.btn-ouro {
  background: #d4af37;
  color: #1a1a2e;
  padding: 14px 36px;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-ouro:hover { background: #e8c94a; transform: translateY(-1px); }

/* ===== BADGES DESTAQUE ===== */
.badges {
  background: #f5f0e8;
  padding: 20px 24px;
  border-bottom: 1px solid #e8dcc8;
}
.badges-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.badge-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #555; font-family: Arial, sans-serif; }
.badge-icon { font-size: 1.2rem; }

/* ===== SEÇÕES GERAIS ===== */
section { padding: 64px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  text-align: center;
  font-size: 1.8rem;
  color: #1a1a2e;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: #d4af37;
  margin: 0 auto 40px;
}

/* ===== PRODUTOS GRID ===== */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.produto-card {
  background: #fff;
  border: 1px solid #e8e0d0;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  border-radius: 2px;
}
.produto-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-3px); }
.produto-img-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #f5f0e8, #ede4d0);
}
.produto-info { padding: 18px; }
.produto-info h3 { font-size: 1rem; color: #1a1a2e; margin-bottom: 6px; }
.produto-info .material { font-size: 0.78rem; color: #888; font-family: Arial, sans-serif; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.produto-info .preco { font-size: 1.25rem; color: #d4af37; font-weight: bold; margin-bottom: 12px; }
.produto-info .preco small { font-size: 0.75rem; color: #999; font-weight: normal; display: block; }
.btn-comprar {
  display: block;
  width: 100%;
  background: #1a1a2e;
  color: #d4af37;
  padding: 10px;
  text-align: center;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: Arial, sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 1px;
}
.btn-comprar:hover { background: #d4af37; color: #1a1a2e; }

/* ===== SOBRE / TEXTO ===== */
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.sobre-texto h2 { font-size: 1.7rem; color: #1a1a2e; margin-bottom: 16px; }
.sobre-texto p { margin-bottom: 14px; color: #555; font-size: 0.95rem; }
.sobre-img-placeholder {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  border-radius: 2px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #d4af37;
}
.info-boxes { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }
.info-box { background: #fff; border: 1px solid #e8e0d0; padding: 24px; text-align: center; border-radius: 2px; }
.info-box .numero { font-size: 2rem; color: #d4af37; font-weight: bold; }
.info-box p { font-size: 0.85rem; color: #666; font-family: Arial, sans-serif; margin-top: 6px; }

/* ===== CONTATO ===== */
.contato-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.contato-info h3 { font-size: 1.2rem; color: #1a1a2e; margin-bottom: 20px; }
.contato-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.contato-icon { font-size: 1.3rem; margin-top: 2px; }
.contato-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #888; font-family: Arial, sans-serif; }
.contato-item span { font-size: 0.95rem; color: #2c2c2c; }
form { background: #fff; border: 1px solid #e8e0d0; padding: 32px; border-radius: 2px; }
form h3 { font-size: 1.1rem; color: #1a1a2e; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #666; font-family: Arial, sans-serif; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d8d0c0;
  background: #fafaf8;
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 1px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #d4af37; }
.form-group textarea { height: 110px; resize: vertical; }

/* ===== POLÍTICA / TERMOS / TROCAS ===== */
.policy-content { max-width: 860px; margin: 0 auto; }
.policy-content h1 { font-size: 2rem; color: #1a1a2e; margin-bottom: 10px; }
.policy-content .atualizado { font-size: 0.8rem; color: #999; margin-bottom: 32px; font-family: Arial, sans-serif; }
.policy-content h2 { font-size: 1.15rem; color: #1a1a2e; margin: 28px 0 10px; }
.policy-content p, .policy-content li { font-size: 0.92rem; color: #555; margin-bottom: 10px; line-height: 1.8; }
.policy-content ul { list-style: disc; padding-left: 20px; }
.policy-content .destaque-box { background: #f5f0e8; border-left: 4px solid #d4af37; padding: 16px 20px; margin: 20px 0; font-size: 0.9rem; color: #444; border-radius: 0 2px 2px 0; }

/* ===== FOOTER ===== */
footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 60px 24px 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2e2e4a;
}
.footer-brand h2 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; letter-spacing: 1px; }
.footer-brand p { font-size: 0.82rem; color: #888; line-height: 1.7; }
.footer-brand .cnpj { color: #d4af37; font-size: 0.78rem; margin-top: 12px; font-family: Arial, sans-serif; letter-spacing: 0.5px; }
.footer-col h4 { color: #d4af37; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; font-family: Arial, sans-serif; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.84rem; color: #aaa; transition: color 0.2s; font-family: Arial, sans-serif; }
.footer-col ul li a:hover { color: #d4af37; }
.footer-col p { font-size: 0.84rem; color: #aaa; margin-bottom: 6px; font-family: Arial, sans-serif; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: #666; font-family: Arial, sans-serif; }
.footer-bottom .dados-legais { font-size: 0.74rem; color: #555; text-align: right; line-height: 1.6; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
  padding: 50px 24px;
  text-align: center;
}
.page-hero h1 { font-size: 2rem; color: #d4af37; margin-bottom: 8px; }
.page-hero p { color: #aaa; font-size: 0.9rem; font-family: Arial, sans-serif; }
.breadcrumb { font-size: 0.78rem; color: #666; font-family: Arial, sans-serif; margin-top: 12px; }
.breadcrumb a { color: #d4af37; }

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .hero h2 { font-size: 1.8rem; }
  .sobre-grid, .contato-grid { grid-template-columns: 1fr; }
  nav ul { gap: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .topo-institucional { font-size: 0.72rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .badges-inner { gap: 16px; }
}

/* ===== UTILITÁRIOS ===== */
.bg-claro { background: #f5f0e8; }
.aviso-compra { background: #fff8e1; border: 1px solid #ffe082; padding: 14px 18px; border-radius: 2px; font-size: 0.85rem; color: #555; font-family: Arial, sans-serif; margin-top: 16px; }
