body {
  background-image: url('fotos/fachada.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: Arial, sans-serif;
}

body {
  position: relative;
  background: none; 
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('fotos/fachada.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(8px); 
  z-index: -1; 
}

.conteudo {
  background-color: rgba(255, 255, 255, 0.88);
  border-radius: 10px;
  padding: 40px;
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}
  
header {
  position: relative;
  z-index: 1; 
  text-align: center;
  width: 100%;
  background-color:#000080;
  color: white; 
  padding: 20px 0;
}

{
  header h1 
  text-align: center;
  margin: 0 auto;
}

.titulo {
  font-size: 46px;
  font-weight: bold;
  color: #ffffff;
}

.lab {
  color: #ff6600; 
}

.carousel {
  width: 100%;
  overflow: hidden;
  margin: 20px 0;
}

.carousel-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

.carousel img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-right: 5px;
  border-radius: 8px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.conteudo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  max-width: 1200px; 
  gap: 40px;
}

.esquerda {
  flex: 1;
  text-align: center; 
}

.direita {
  flex: 1.5; 
}

.direita iframe {
  width: 100%;
  height: 450px; 
  border-radius: 12px;
  border: none;
}

.texto-destaque {
  font-size: 18px;
  color: #000;
  margin-bottom: 15px;
}

.laranja {
  color: black;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background-color: #25d366;
  color: #fff;
  font-size: 18px;   
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  margin: 20px 0;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

.telefone {
  margin-top: 10px;
  font-size: 18px;
  color: #000;
}

.entregas {
  text-align: center;
  margin: 30px 20px;
}

.entregas-box {
  border: 3px solid #000;
  padding: 15px;
  border-radius: 8px;
  display: inline-block;
}

.entregas-box p {
  font-size: 18px;
  color: #000;
}

.footer {
	
  background-color: #000080;;
  color: white;
  text-align: center;
  padding: 20px;
}


@media (max-width: 768px) {
  .conteudo {
    flex-direction: column; 
    gap: 20px;
  }

  .direita iframe {
    height: 300px; 
  }

  .whatsapp-btn {
    font-size: 18px;
    padding: 14px 22px;
  }
}




