/* =============================
   GERAL
============================= */
html, body {
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  padding-top: 120px;
}

header {
   position: fixed;
    top: 0;
    left:0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
}
/* =============================
   NAVEGAÇÃO
============================= */
.navbar {
  padding: 10px 0;
}

.nav-link {
  color: #6B1B1B;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
  background-color: #a65a4b;
  color: #fff;
}

.nav-item {
  margin-right: 20px;
}

/* =============================
   BOTÃO WHATSAPP
============================= */
.whatsappBotaoflutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsappBotaoflutuante img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Ajustes para telas pequenas */
@media (max-width: 480px) {
  .whatsappBotaoflutuante {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
}

/* =============================
   FOOTER
============================= */
.footer {
  text-align: center;
  padding: 10px;
  margin-top: 30px;
}

.footer p {
  margin: 5px 0;
  font-size: 0.9rem;
  color: #888;
}

.footer a {
  color: #888;
  text-decoration: none;
}

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

.icone-whatsapp {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-left: 4px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.icone-whatsapp:hover {
  opacity: 1;
}
