* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: sans-serif;
  height: 100%;
}

/* HEADER COM WALLPAPER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: url("Assets/header.png") no-repeat center;
  background-size: cover;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  z-index: 1000;
}

.header.scrolled {
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  background: rgba(0, 0, 0, 0.85);
  padding: 0.5rem 2rem;
  border-radius: 50px;
  box-shadow: 0 0 15px #000;
}

.logo img {
  height: 70px;
  width: auto;
}

.menu {
  display: flex;
  gap: 1.5rem;
}

.menu a {
  background: linear-gradient(to bottom, #9211ee 50%, #1929f0);
  background-clip: text;
  color: transparent;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
}

.menu a:hover {
  color: white;
  border-bottom: solid #ffffff 3px;
}

/* VÍDEO */

.video-section {
  position: relative;
  width: 100%;
  height: 100vh; /* define altura visível da seção */
  overflow: hidden;
  z-index: 0;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.9;
}
/* SERVIÇOS */
.servicos {
  margin-top: -160px;
  position: relative;
  background-color: #0b0b0b;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  z-index: 1;
}

.servicos h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(to bottom, #9211ee 50%, #1929f0);
  background-clip: text;
  color: transparent;
}

.servicos-icones {
  padding: 2rem 2rem;
  text-align: center;
  background-color: #0a0a0a;
  color: #fff;
}

.servicos-icones h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.icone-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.icone {
  background-color: #111;
  padding: 1rem;
  border-radius: 20px;
  box-shadow: 0 3px 5px #cc01ffa1;
  width: 160px;
  transition: transform 0.3s ease;
}

.icone:hover {
  transform: translateY(-15px);
}

.icone img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
}

.icone p {
  font-size: 1.1rem;
  color: whitesmoke;
  margin-top: 0.5rem;
}


@media (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 0.5rem 1rem;
    text-align: center;
  }

  .header.scrolled {
    flex-direction: column;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo img {
    height: 50px;
    margin-bottom: 0.5rem;
  }

  .menu {
    flex-direction: row;
    gap: 1rem;
  }

  .menu a {
    font-size: 1rem;
  }

  .servicos-icones {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
  }

  .icone {
    width: 100%;
    max-width: 280px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    text-align: left;
  }

  .icone img {
    width: 40px;
    height: 40px;
  }

  .icone p {
    font-size: 1rem;
    margin-left: 1rem;
  }

  .video-section {
    height: 300px;
    padding-top: 10rem;
  }

  .background-video {
    padding-top: 5rem;
    height: 100%;
  }
  .servicos {
    margin-top: 0;
    padding-top: 3rem;

  }
}

/* PAGINA SERVIÇOS */

.servicos-page {
  margin-top: 60px;
  position: relative;
  background-color: #0b0b0b;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  z-index: 1;
}

.servicos-page h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(to bottom, #9211ee 50%, #1929f0);
  background-clip: text;
  color: transparent;
}

.footer {
  background-color: #313131;
  color: #fff;
	padding: 20px;
	text-align: center;
	margin-top: 10px;
}