* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
  width: 100vw;
  background: url("assets/banner.png") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* PRELOADER */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #050a14;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.preloader-logo {
  width: 120px;
  animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 0.6; }
}

/* CONTEÚDO */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 20, 0.7);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.container.show {
  opacity: 1;
  transform: translateY(0);
}

.logo {
  max-width: 180px;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #9fc9ff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

p {
  margin-bottom: 25px;
  color: #ddd;
}

.email-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.email-form input {
  padding: 12px;
  border: none;
  border-radius: 25px;
  outline: none;
  width: 60%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.email-form input::placeholder {
  color: #bbb;
}

.email-form button {
  background: #9fc9ff;
  color: #000;
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.email-form button:hover {
  background: #fff;
  color: #000;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials img {
  width: 28px;
  height: 28px;
  filter: invert(1);
  transition: transform 0.3s;
}

.socials img:hover {
  transform: scale(1.2);
}
