/* ================= RESET / BASE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

/* ================= TIPOGRAFIA ================= */
h1, h2, h3, h4 {
  font-family: "Georgia", serif;
}

h1{
  font-size: 1rem;
  color: #d4af37;
  margin-bottom: 15px;
  text-align: center;
}

h2 {
  text-align: center;    
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
}

h3 {
  font-size: 1.3rem;
  text-align: center;
}

p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 15px;
  text-align: justify;
}

/* ================= HEADER ================= */
header {
  background: #111;
  padding: 15px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img { height: 60px; }

header nav {
  display: flex;
  gap: 30px;
}

header nav a {
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  transition: color 0.3s ease;
}

header nav a:hover,
header nav a.active { color: #d4af37; }

/* ================= HERO ================= */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero h1 {
  font-size: 1rem;
  font-weight: bold;
  color: #d4af37;
  text-align: center;
}

.breadcrumb {
  color: #fff;
  font-style: italic;
  font-weight: bold;
  text-align: center;
  font-size: 1rem;
}

/* ================= DIVISORES ================= */
.barra-dourada {
  width: 80px;
  height: 3px;
  background: #d4af37;
  margin: 40px auto;
  border-radius: 2px;
}

/* ================= CONTATO ================= */
.contato {
  padding: 60px 10%;
  background: #f9f9f9;
}

.contato-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.contato-info h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #d4af37 ;
  text-align: left;
}

.contato-info p {
  text-align: justify;
  color: #000;
  line-height: 1.6;
}

.contato-social {
  margin-top: 20px;
}

.contato-social a {
  margin-right: 15px;
  color: #d4af37;
  font-weight: bold;
  text-decoration: none;
}

.contato-social a:hover {
  text-decoration: underline;
}

.maps-frame {
  width: 100%;
  height: 300px;
  border: 0;
  margin-top: 20px;
}

/* ================= FOOTER ================= */
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.footer-info h4 {
  color: #d4af37;
  margin-bottom: 5px;
  text-align: center;
}

.footer-info p {
  color: #d9d9d9;
  margin-bottom: 5px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-social {
  margin-bottom: 20px;
}

.footer-social a {
  color: #d4af37;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.footer-social a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #777;
}

/* ================= RESPONSIVO ================= */
@media (max-width: 900px) {
  .contato-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
