@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Orbitron:wght@400..900&display=swap');

body {
  margin: 0;
  padding: 0;
  color: white;
  overflow-x: hidden;
  font-family: 'Orbitron', sans-serif;
  cursor: crosshair;
}


.hero {
  /* Use min-height em vez de height para permitir que o conteúdo cresça se necessário */
  min-height: 100vh;
  background-image: url('../assets/fundo.jpg'); /* Verifique se o caminho está correto */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.bck-confirmation{
  background-color: #28038fd8;
}

#astronaut {
  position: fixed;
  width: 80px;
  height: 80px;
  pointer-events: none;
  transition: transform 0.1s linear;
}

.terra {
  margin-top: 25px;
  width: 300px;
  height: 300px;
  z-index: 1;
  animation: float 4s infinite;
}

.terra img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  
}


/* ANIMAÇÕES*/

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -20px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.zoom {
  position: absolute;
  top: -50px;
  left: 150px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 15px #f0d806;
}

.terra:hover .zoom {
  opacity: 1;
  transform: scale(1);
}

.zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.titulo {
  text-align: center;
}

.titulo h1 {
  font-size: 3rem;
  margin: 0;
}

.titulo p {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  color: #00f5ff;
}

.cliqueAqui {
  background: linear-gradient(90deg, rgba(11, 17, 115, 1) 1%, rgba(190, 87, 199, 1) 51%, rgba(237, 83, 83, 1) 100%);
  border-radius: 16px;
  font-weight: bold;
  padding: 1rem 1.5rem; /* Use padding em vez de height/width fixos */
  max-width: 90%; /* Garante que não saia da tela */
}
 
.chamado {
    background-color: rgba(0, 0, 0, 0.9);
}
.chamado .lead {
    font-size: 1.5rem;
    font-weight: bold;
}

.secunSection{
  margin: 0;
  background-image: url('../assets/compImg.jpg');
  background-size: cover;
  background-position: center;
}

.btn-inscricao {
    background-color: #e6a72e; /* Cor dourada da imagem */
    color: #1e123f; /* Cor escura para o texto */
    font-weight: bold;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-inscricao:hover {
    color: #1e123f;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(230, 167, 46, 0.5);
}


@media (max-width: 768px) {
  .titulo h1 {
    font-size: 2rem;
  }

  .titulo p {
    font-size: 1rem;
  }

  .cliqueAqui{
    width: 85dvw;
    height: 10dvh;
  }

  .secunSection{
    background-image: url('../assets/compImgmobile.jpg');
    padding-top: 20dvh !important;
  }
  .zoom {
    width: 200px;
    height: 200px;
    top: 220px;
    left: 110px;
  }
}

@media (max-width: 480px) {
  #astronaut {
    width: 60px;
    height: 60px;
  }
  
  .cliqueAqui{
    width: 85dvw;
    height: 10dvh;
  }

  .meioSection1{
    /* top: 86%;
    left: 10%; */
    width: 80dvw;
    height: 25dvh;
  }
  .secunSection{
      background-image: url('../assets/compImgmobile.jpg');
      padding-top: 20dvh !important;
  }

  .zoom {
    width: 200px;
    height: 200px;
    top: 220px;
    left: 110px;
  }
}
