* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 70px;
}

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

nav a {
  color: #009fe3; /* Azul do logo */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #00cfff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: #fff;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  transition: 0.4s;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}

#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
  padding: 0 10%;
}

.hero-content {
  z-index: 1;
}

#servicos {
  background-color: #0a0a0a;
  padding: 100px 10%;
  text-align: center;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.servico {
  background: #111;
  padding: 25px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.servico:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 159, 227, 0.3);
}

#contactos {
  background: #001a33;
  padding: 80px 10%;
  text-align: center;
}

.contact-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.contact-block {
  flex: 1;
  min-width: 250px;
}

.contact-block a {
  color: #009fe3;
  text-decoration: none;
}

.contact-block a:hover {
  color: #00cfff;
}

footer {
  background-color: #000;
  text-align: center;
  padding: 20px;
  color: #777;
  font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 10%;
    background: rgba(0, 0, 0, 0.9);
    width: 200px;
    border-radius: 8px;
    text-align: right;
    padding: 10px 0;
  }
  .nav-list.active {
    display: flex;
  }
  #hero h1 {
    font-size: 2rem;
  }
  .contact-grid {
    flex-direction: column;
    text-align: center;
  }
}
