@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

main {
  width: 100%;
  height: 100vh;
  position: relative;
}

body,
button {
  font-family: "Poppins";
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

header .logo {
  font-size: 24px;
  font-weight: 700;
  color: #2d3436;
  text-decoration: none;
}

header nav a {
  text-decoration: none;
  color: #2d3436;
  margin-left: 30px;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #0984e3;
}

.divVideo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

img,
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

video {
  transition: opacity 0.5s ease-in-out;
}

.divVideo img,
.divVideo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.divVideo video {
  transition: opacity 0.5s ease-in-out;
}

.txtErro {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conteudo {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: "Poppins", sans-serif;
  z-index: 10;
  width: 90%;
  max-width: 500px;
}

.conteudo h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #6c5ce7;
  border: solid #000;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 20px rgba(108, 92, 231, 0.5);
  letter-spacing: -1px;
}

.conteudo p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #fff;
  border: solid #0000;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
}

.conteudo button {
  padding: 10px 30px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(45deg, #6c5ce7, #a29bfe);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.conteudo button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
  background: linear-gradient(45deg, #5f27cd, #6c5ce7);
}

@media (max-width: 768px) {
  header {
    padding: 20px;
  }

  header .logo {
    font-size: 20px;
  }

  .conteudo h1 {
    font-size: 32px;
  }

  .conteudo p {
    font-size: 16px;
  }

  .conteudo button {
    padding: 12px 24px;
    font-size: 16px;
  }
}
