@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;
}


.inscricao{
  background-image: url('../../assets/fundo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;

  padding-top: 30px;
  padding-bottom: 60px; 
}

#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 {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.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%);
  width: 80dvw;
  height: 6dvh;
  border-radius: 16px 5px 16px 5px;

  display: flex;
  justify-content: center;
  align-items: center;     
  font-weight: bold;       
}

.meioSection1{
  position: absolute;
  top: 90%;
  left: 10%;
  background-color: rgba(0, 0, 0, 0.842);

  width: 80dvw;
  height: 20dvh;
  
  display: flex;
  justify-content: center;
  align-items: center;     
  font-weight: bold; 
}

.secunSection{
  margin: 0;
  background-image: url('../../assets/compImg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
}

/* --- Estilos para a Página de Inscrição --- */

.form-container {
  background-color: rgba(10, 2, 44, 0.85);
  border: 1px solid rgba(190, 87, 199, 0.5);
  box-shadow: 0 0 25px rgba(237, 83, 83, 0.3);
  color: white; /* Garante que o texto dentro do container seja branco */
}

.form-container .form-label {
  font-weight: bold;
  color: #cbbde2;
}

.form-control, .form-select {
  background-color: #1e123f;
  color: #ffffff;
  border: 1px solid #be57c7;
  font-family: 'Orbitron', sans-serif; /* Mantém a fonte do tema */
}

.form-control::placeholder {
  color: #a9a9a9;
  opacity: 0.7;
}

.form-control:focus, .form-select:focus {
  background-color: #2a1a5a;
  color: #ffffff;
  border-color: #f0d806;
  box-shadow: 0 0 10px #f0d806;
}

/* O botão já é estilizado pelo style.css principal, mas podemos reforçar/ajustar aqui se necessário */
.btn-primary {
    background: linear-gradient(90deg, rgba(11, 17, 115, 1) 1%, rgba(190, 87, 199, 1) 51%, rgba(237, 83, 83, 1) 100%);
    border: none;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(237, 83, 83, 0.5);
}

.btn-primary:disabled {
    background: #555;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.7;
}

#feedback-message {
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    display: none; /* Começa escondido */
}

#feedback-message.success {
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.2);
    display: block; /* Mostra quando tem a classe */
}

#feedback-message.error {
    color: #F44336;
    background-color: rgba(244, 67, 54, 0.2);
    display: block; /* Mostra quando tem a classe */
}


@media (max-width: 768px) {
  .titulo h1 {
    font-size: 2rem;
  }

  .titulo p {
    font-size: 1rem;
  }

  .cliqueAqui{
    width: 85dvw;
    height: 10dvh;
  }

    .secunSection{
      padding-top: 40dvh;
  }
  .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{
      padding-top: 40dvh;
  }

  .zoom {
    width: 200px;
    height: 200px;
    top: 220px;
    left: 110px;
  }
}

