/* RESETEO GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow-x: hidden;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  text-align: center;
  background: url('img/fondo-metalico.jpg') center top / cover no-repeat fixed;
}

/* CONTENEDOR PRINCIPAL */
.fondo {
  width: 100%;
  margin: 0 auto;
  padding-top: 0;
}

/* LOGO bajado 2.5 cm y separación de 1.5 cm con el título */
.logo-principal {
  width: 380px;
  display: block;
  margin: 95px auto 57px auto; /* 2.5 cm arriba + 1.5 cm abajo */
}

/* TÍTULO */
.titulo {
  font-size: 64px;
  font-weight: 800;
  color: #ffffff;
  text-shadow:
    0 0 10px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6),
    0 4px 6px rgba(0, 0, 0, 0.9);
  margin-bottom: 15px;
}

/* LÍNEA SEPARADORA */
.linea-separadora {
  width: 700px;
  height: 3px;
  background-color: #ffffff;
  margin: 0 auto 8px auto;
  box-shadow: 0 0 10px rgba(255,255,255,0.7);
}

/* TEXTO DE ESTADO */
.estado-web {
  font-size: 20px;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 25px;
  text-shadow: 0 0 6px rgba(0,0,0,0.8);
}

/* GRID DE ICONOS */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  width: 80%;
  margin: auto;
  margin-top: 20px;
}

.icon-item img {
  width: 240px;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.6));
  transition: 0.3s;
}

.icon-item:hover img {
  filter: brightness(1.2);
  transform: scale(1.05);
}

.icon-item span {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  font-weight: 600;
  color: #303030;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
  transition: 0.3s;
}

.icon-item:hover span {
  color: #ffffff;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.9),
    0 0 6px rgba(0, 0, 0, 1);
  transform: scale(1.05);
}

/* RECTÁNGULO NEGRO DEL CONTADOR */
.contador-box {
  background-color: #000000;
  color: #ffffff;
  width: 700px;
  height: 100px;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.texto-lanzamiento {
  font-size: 18px;
  font-weight: 500;
  color: #dcdcdc;
  margin-bottom: 6px;
}

/* CONTADOR centrado y ocupando el 70% del rectángulo */
.contador {
  width: 70%;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 8px 0;
  text-align: center;
}
