
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #561F29;
}
header {
    background-color: #561F29;
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    height: 60px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.banner {
    overflow: hidden;
}
.slides {
    display: flex;
    animation: slide 15s infinite;
}
.slides img {
    width: 100%;
    flex-shrink: 0;
}
@keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}
section {
    padding: 60px 0;
    scroll-margin-top: 80px;
}
.about, .history, .contact {
    background-color: #f9f9f9;
}
.history .gallery {
    display: flex;
    gap: 10px;
}
.history .gallery img {
    width: 32%;
    border-radius: 8px;
}
footer {
    background-color: #561F29;
    color: white;
    text-align: center;
    padding: 20px 0;
}


.sobre-bm-simples .container {
  display: block;
}

.sobre-bm-simples {
  background-color: #ffffff;
  padding: 60px 20px;
  color: #561F29;
    display: block !important;
}

.sobre-bm-simples h2 {
  font-size: 2em;
  margin-bottom: 30px;
  text-align: left;      /* título 100% à esquerda */
  font-weight: bold;
}

.sobre-bm-simples p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;   /* espaçamento entre cada linha */
  text-align: left;
}



.contact .unit {
  margin-bottom: 25px;
}

.contact .unit a.ver-mapa {
  display: inline-block;
  margin-top: 5px;
  color: #561F29;
  text-decoration: underline;
}

.map-section {
  padding-top: 40px;
}



.footer {
  background-color: #561F29;
  color: white;
  padding: 20px 0;
}

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

.footer-content p {
  margin: 0;
  font-size: 0.9em;
}

/* Estilo do ícone */
.social-icon {
  color: white;            /* cor do ícone */
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.social-icon svg {
  width: 1.5em;
  height: 1.5em;
  transition: color 0.2s;
}

/* Hover para destacar */
.social-icon:hover {
  color: #CFAE58;          /* dourado, por exemplo */
}
