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

html, body {
  font-family: 'Raleway', sans-serif;
  color: white;
  background-color: #111;
  height: 100%;
  overflow-x: hidden;
}

.wrapper {
  position: relative;
  background-image: url(../img/fondo.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.opacity {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.gravity {
  position: relative;
  z-index: 1;
  padding: 60px 15px 20px;
  text-align: center;
}

.logo {
  max-width: 250px;
  margin-bottom: 20px;
}

.mensaje {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: 30px auto 10px;
  line-height: 1.6;
}

#countdown {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.countdown-box {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 20px auto 0;
  flex-wrap: wrap;
  padding: 10px 20px 30px;
}

.time-box {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 18px 14px;
  min-width: 90px;
  text-align: center;
}
.time-box .number {
  font-size: 48px;
  font-weight: bold;
  color: #fff !important; /* Blanco puro y forzado */
  text-shadow: none !important; /* Quita efectos que oscurezcan */
}

.time-box .label {
  font-size: 16px;
  color: #fff !important; /* Blanco puro y forzado */
  text-transform: uppercase;
  text-shadow: none !important;
}

/* Nota */
#note {
  font-size: 16px;
  margin-bottom: 20px;
}

#note:empty {
  display: none;
}

/* Contacto */
.contact-info {
  position: relative;
  z-index: 1;
  padding: 40px 20px 30px;
  background-color: rgba(0, 0, 0, 0.5);
}

.contact-info h4 {
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-list {
  font-size: 16px;
  line-height: 1.8;
  padding: 0;
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.contact-list li {
  margin-bottom: 12px;
  list-style: none;
}

.contact-list i {
  color: #00bcd4;
  margin-right: 8px;
}

/* Redes Sociales */
.social-icon {
  margin: 20px 0 20px;
}

.icon a {
  color: #fff;
  font-size: 24px;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.icon a:hover {
  color: #00bcd4;
}

/* Responsive */
@media (max-width: 768px) {
  .mensaje {
    font-size: 16px;
    padding: 0 20px;
  }

  .countdown-box {
    gap: 15px;
    padding: 10px 10px 20px;
  }

  .time-box .number {
    font-size: 36px;
	color: #fff;
  }

  .time-box .label {
    font-size: 13px;
	color: #fff;
  }

  .logo {
    width: 80%;
  }

  .contact-info h4 {
    font-size: 22px;
  }

  .contact-list {
    font-size: 14px;
  }
}


