* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 500px;
}

.logo {
  font-family: "Orbitron", sans-serif;
  font-size: 3.5rem;
  color: #00ffff;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 2rem;
  font-size: 1rem;
}

img {
  width: 100%;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.countdown {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 10px;
}

.time-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px;
  flex: 1;
}

.time-box span {
  display: block;
  font-size: 4rem;
  font-weight: bold;
  color: #00ffff;
}

.time-box small {
  font-size: 0.8rem;
}

.formulario {
  display: flex;
  margin-bottom: 1.5rem;
}

.formulario input[type="email"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 1rem;
}

.formulario button {
  padding: 10px 20px;
  border: none;
  background-color: #00ffff;
  color: #000;
  font-weight: bold;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.formulario button:hover {
  background-color: #00cccc;
}

.redes {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.redes img {
  width: 30px;
  transition: transform 0.3s;
}

.redes img:hover {
  transform: scale(1.2);
}
