/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #1c1c1c;
  color: #f0f0f0;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}


/* Vídeo no topo */
.video-top {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-top video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 28, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.video-overlay h1 {
  font-size: 3em;
  color: #1dbf73;
}

.video-overlay p {
  font-size: 1.4em;
  margin-top: 10px;
}

/* Conteúdo principal */
main {
  width: 100%;
}

/* Seções intercaladas */
.intercalado {
  display: flex;
  width: 100%;
  min-height: 80vh;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 60px;
}

.intercalado img {
  width: 50%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.intercalado .texto {
  width: 50%;
  font-size: 1.3em;
}

.intercalado.esquerda {
  flex-direction: row;
}

.intercalado.direita {
  flex-direction: row-reverse;
}

/* Títulos e listas */
section h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #d0ffe9;
}

ul {
  font-size: 1.3em;
  padding-left: 20px;
}

li {
  margin-bottom: 6px;
}

/* Contato */
.contato {
  text-align: center;
  padding: 40px 20px;
  font-size: 1.3em;
}

/* Rodapé */
footer {
  text-align: center;
  padding: 20px;
  background-color: #0f4c3a;
  font-size: 1em;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .video-top {
    height: 300px;
  }

  .intercalado {
    flex-direction: column;
    padding: 30px 20px;
    min-height: auto;
  }

  .intercalado img {
    display: none;
  }

  .intercalado .texto {
    width: 100%;
    font-size: 1.2em;
  }

  section h2 {
    font-size: 1.6em;
  }

  ul {
    font-size: 1.2em;
  }
}
