/*
Theme Name: Anil Oticas
Theme URI: https://aniloticas.com.br
Author: Anil Oticas
Description: Tema simples para Anil Oticas
Version: 1.0
*/

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

body {
  font-family: 'Georgia', serif;
  background: #f9f7f4;
  color: #222;
}

/* HEADER */
header {
  background: #1a1a2e;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}
header .logo span { color: #c9a84c; }
nav a {
  color: #ccc;
  text-decoration: none;
  margin-left: 24px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
nav a:hover { color: #c9a84c; }

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a1a2e 60%, #c9a84c 100%);
  color: #fff;
  text-align: center;
  padding: 90px 20px 80px;
}
.hero h1 {
  font-size: 46px;
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero p {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 30px;
}
.hero a {
  background: #c9a84c;
  color: #1a1a2e;
  padding: 14px 36px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 40px;
  flex-wrap: wrap;
  background: #fff;
}
.feature {
  text-align: center;
  max-width: 220px;
}
.feature .icon {
  font-size: 40px;
  margin-bottom: 14px;
}
.feature h3 {
  font-size: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a2e;
}
.feature p { font-size: 14px; color: #666; line-height: 1.6; }

/* PRODUCTS */
.products {
  padding: 60px 40px;
  text-align: center;
  background: #f9f7f4;
}
.products h2 {
  font-size: 30px;
  margin-bottom: 36px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1a1a2e;
}
.product-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.product-card {
  background: #fff;
  border: 1px solid #e8e0d0;
  padding: 28px 22px;
  width: 200px;
  border-radius: 4px;
}
.product-card .img-placeholder {
  background: #eee;
  height: 130px;
  border-radius: 4px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.product-card h4 { font-size: 15px; color: #1a1a2e; margin-bottom: 6px; }
.product-card p { font-size: 13px; color: #c9a84c; font-weight: bold; }

/* FOOTER */
footer {
  background: #1a1a2e;
  color: #aaa;
  text-align: center;
  padding: 32px 20px;
  font-size: 13px;
}
footer .brand { color: #fff; font-size: 18px; font-weight: bold; margin-bottom: 8px; }
footer .cnpj { color: #c9a84c; margin-top: 10px; font-size: 13px; }
