* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    color: #333;
  }
  
  header {
    background-color: #fff;
    padding: 15px 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo img {
    height: 50px;
  }
  
  .menu {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .menu li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  .menu li a:hover {
    color: blue;
  }

  .btn-orcamento {
    background-color: #f7941d;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
  }
  
  .hero {

    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    text-align: center;
    color: white;
    background-color: rgba(0, 56, 89, 0.7);
    background-blend-mode: multiply;
  }

  /* Slide */
  .corpo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slideShow 20s infinite;
    z-index: -1;
  }
  
  @keyframes slideShow {
    0% {
      background-image: url('imagens/DCMZlg.png');
    }
    30% {
      background-image: url('imagens/background2.jpg');
    }
    40% {
      background-image: url('imagens/comunicacoes.jpg');
    }
    60% {
      background-image: url('imagens/11.jpeg');
    }
    80% {
      background-image: url('imagens/manutecao.jpg');
    }
    100% {
      background-image: url('imagens/22.jpeg');
    }
  }

  /* Fim Slide */
  
  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 20px;
    line-height: 1.6;
  }
  
  .btn-saiba-mais {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #f7941d;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }
  
  .cookie-bar {
    background-color: #f9f9f9;
    padding: 15px 30px;
    font-size: 14px;
    border-top: 1px solid #ccc;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  
  .btn-ok {
    margin-left: 10px;
    background-color: #333;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .cookie-bar .contact-item {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .cookie-bar .contact-item strong {
    transition: color 0.3s ease;
  }

  .cookie-bar .contact-item:hover strong {
    color: blue
  }

.social-icons a:hover {
    color:white !important;
}
  /* footer */

  section a {
    color: #ffffffb3;
    text-decoration: none;
  }
  section a:hover {
    color: blue
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 1.2rem;
  }
  .copyright {
    font-size: 0.875rem;
    margin-top: 20px;
  }


/* footer */

.contact-section {
    background-color: rgba(5, 14, 20, 0.8);
  color: white;
  padding: 50px 20px;
}

.contact-section .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.contact-box {
  flex: 1;
  min-width: 250px;
}

.contact-box h3 {
  margin-bottom: 15px;
  color: #ffffff;
}

.contact-box ul {
  list-style: none;
  padding: 0;
}

.contact-box ul li {
  margin-bottom: 10px;
}

.contact-box ul li a {
  color: #fff;
  text-decoration: none;
}

.contact-box p {
  margin: 8px 0;
  color: #ccc;
}

.social-icons a {
  margin-right: 10px;
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.contact-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #1976d2;
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
}

.logo img {
  margin-top: 20px;
  width: 120px;
}

ul li a:hover {
    color:blue;
}


/* box1 */

.contact-box1 {
    text-align: left;
    display: block;
}

/* Para dispositivos com largura máxima de 768px */

@media  (min-width: 767px) {
  .nav1{
    display: none !important;
  }
}
@media (max-width: 768px) {

  .nav2{
    display: none !important;
  }
    .contact-box1 {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .contact-box1 p,
    .contact-box1 h3,
    .contact-box1 .social-icons {
        text-align: center;
    }

    .contact-box1 .social-icons a {
        display: inline-block;
    }
}

.nav1 {
  width: 100%;
}

.imagem1 {
  text-align: right;
} 

.btn-orcamento:hover {
  color: black;
}