/*
Theme Name: Barra Nzinga
Theme URI: https://barranzinga.com.br
Author: Barra Nzinga Web Team
Description: Tema personalizado da Escola de Capoeira Barra Nzinga com base visual refinada e elementos educacionais.
Version: 1.1
Tags: capoeira, cultura, barra nzinga
Text Domain: barra-nzinga
*/

body {
  font-family: 'Open Sans', sans-serif;
  color: #111;
  background-color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: #C8A84E;
  font-weight: bold;
  line-height: 1.3;
}

a {
  color: #C8A84E;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #000;
}

.btn-dourado {
  background-color: #C8A84E;
  color: #000;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}
.btn-dourado:hover {
  background-color: #000;
  color: #fff;
}

.section-padrao {
  padding: 60px 20px;
  max-width: 960px;
  margin: auto;
}

.bg-preto {
  background-color: #000;
  color: #fff;
}

.bg-claro {
  background-color: #f9f9f9;
}

.box-sombra {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

header {
  background-color: #000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header .logo img {
  max-width: 220px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}
nav ul li a {
  color: #C8A84E;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 0.5rem;
  transition: all 0.2s ease-in-out;
}
nav ul li a:hover {
  background-color: #C8A84E;
  color: #000;
  border-radius: 4px;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}
footer .social-links {
  margin-top: 1rem;
}
footer .social-links a {
  color: #C8A84E;
  margin: 0 0.5rem;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }
  header .logo img {
    max-width: 160px;
  }
  nav ul {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .section-padrao {
    padding: 40px 15px;
  }
}

/* Utilidades */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
