body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
}

header {
  background-color: #c8102e;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}

.logo img {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.banner {
  position: relative;
  text-align: center;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

.botao-fixo {
  position: absolute;
  top: 25%;
  left: 22%;
  transform: translate(-50%, -50%);
  background-color: #c8102e;
  color: white;
  padding: 15px 50px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 20px;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.botao-fixo:hover {
  background-color: #a60c24;
}

.categorias, .galeria-container {
  padding: 30px;
  background: #fff;
  text-align: center;
}

.carrossel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.carrossel img, .galeria-container img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  scroll-snap-align: start;
  border: 1px solid #ccc;
}

footer {
  background-color: #c8102e;
  color: white;
  text-align: center;
  padding: 20px;
}

footer .whatsapp img {
  width: 50px;
  margin-top: 10px;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 20px;
  background: transparent;
  color: #fff;
  border-radius: 50%; /* botão redondo */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  padding: 0; /* sem espaçamento interno */
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 100%; /* se ajusta ao tamanho do botão */
  height: 100%;
  object-fit: contain; /* mantém proporção da imagem */
}