/*
Theme Name: A2 Peças Usadas
Theme URI: https://a2pecas.site
Author: OpenAI Assistant
Description: Tema WordPress personalizado para A2 Peças Usadas — carros e peças de qualidade.
Version: 1.1
License: GNU General Public License v2 or later
Text Domain: a2pecas
Tags: responsive, custom-logo, bootstrap
*/

:root {
  --primary: #9c3b0d;
  --accent: #ff6600;
  --dark: #222;
  --light: #ffffff;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  color: #333;
  background: var(--light);
}

/* Header */
.site-header {
  background: var(--primary);
  color: var(--light);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .site-logo img {
  height: 60px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--accent);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--light);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}