body {
  min-width: 1024px;
  overflow-x: auto;
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  width: 100%;
  height: 180px;
  background-image: url("cabecalho.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.menu ul {
  display: flex;
  list-style: none;
  background-color: #333;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.menu li {
  margin: 0;
}

.menu a {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: white;
}

.menu a:hover {
  background-color: #555;
}

main {
  padding: 20px;
}

footer {
  background: none;
  padding: 0;
  margin-top: 0;
  text-align: center;
}

.caixa-texto {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}


header {
  position: relative;
  background-image: url('cabecalho.png');
  background-size: cover;
  height: 180px;
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.logo {
  height: 150px;
}


header {
  position: relative;
  background-image: url('cabecalho.png');
  background-size: cover;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo {
  height: 120px;
}

.logo-esquerda {
  flex: 0 0 auto;
}

.logo-centro {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-centro-img {
  height: 100px;
}


.logo-esquerda img,
.logo-direita img {
  height: 120px;
}

.logo-centro img {
  height: 75px;
}


.logo-esquerda {
  margin-left: 40px;
}

.logo-direita {
  margin-right: 40px;
}


.rodape-container {
  position: relative;
  text-align: center;
  color: white;
  font-size: 16px;
}

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

.rodape-texto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  color: white;
  text-shadow: 1px 1px 4px #000;
  line-height: 1.6;
}


.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  animation: bounce 2s infinite;
  transition: transform 0.3s;
}

.whatsapp-button img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid gold;
  background-color: black;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); 
  }
  40% {
    transform: translateY(-15px); 
  }
  60% {
    transform: translateY(-7px); 
  }
}


.imagem-cerca {
  text-align: center;
  margin-top: 30px;
}

.imagem-cerca img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.imagem-cerca img:hover {
  transform: scale(1.07) rotate(1deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


.imagem-alarme {
  text-align: center;
  margin-top: 20px;
}

.imagem-alarme img {
  width: 280px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.imagem-alarme img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}


/* Imagens da Página Início */
.segmentos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.segmentos img {
  width: 200px;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.segmentos img:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Imagens da Página Câmeras */
.galeria-cameras {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-items: center;
  padding: 20px;
}

.galeria-cameras img {
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.galeria-cameras img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* Imagem da Página Consultoria */
.img-consultoria {
  display: block;
  margin: 30px auto 0;
  max-width: 500px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.img-consultoria:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
