header {
  position: sticky; 
  top: 0;
  z-index: 1000; 
}

a:active {
  color: #b48a60;
}

.animacao_produtos {
  animation-duration: 3s;
  animation-name: descubra;
  animation-iteration-count: infinite;
}

@keyframes descubra {
  0% { opacity: 0 }
  100% { opacity: 1 }
}

p::selection {
  background: #960C19;
  color: white;
}

.paragrafo_visita img {
  width: 45%;
  border-radius: 10px;
  margin: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;  
}

.paragrafo_visita img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.produto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px auto; 
  max-width: 1200px; 
  padding: 0 20px; 
}

.formulario:hover {
  color: black;
  background-color: #f0f0f0;
  border-radius: 5px;
  border: 2px solid #960C19;
}

.formulario::placeholder {
  color: #960C19;
}

input:focus, textarea:focus {
  outline: none;
  border: 2px solid #960C19;
  box-shadow: 0 0 5px rgba(150, 12, 25, 0.5);
}

.botao_comprar:hover {
  color: #960C19;
  background-color: #fff;
  border-radius: 5px;
  border: 2px solid #960C19;
}

.botao_form:hover {
  color: #960C19;
  background-color: #fff;
  border-radius: 5px;
  border: 2px solid #960C19;
}

/* CONTATOS */

button {
  margin-top: 20px;
  padding: 12px;
  background-color: #730A13;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
  background-color: #A03C44; 
  transform: scale(1.02); 
}

footer img {
  width: 30px; 
  height: auto; 
  margin: 0 10px; 
  vertical-align: middle; 
  transition: transform 0.3s ease;
}

footer img:hover {
  transform: rotate(10deg) scale(1.15);
}

.info-contato {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  max-width: 800px;
  margin: 40px auto;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.info-contato:hover {
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
  transform: translateY(-5px); 
}

@keyframes aparecer{
  0%{opacity: 0;}
  100%{opacity: 1;}
}

.descricao {
  animation-duration: 2s;
  animation-name: aparecer;
  animation-iteration-count: unset;
}

.titulo{
  animation-duration: 2s;
  animation-name: aparecer;
  animation-iteration-count: unset;
}
  
.nomes {
  animation-duration: 2s;
  animation-name: aparecer;
  animation-iteration-count: unset;
}


.video{
  background-image: linear-gradient(to bottom, #730A13, white);
}

.container1 {
  display: grid;
  justify-content: center;

}



