/* ----------- ESTILO GENERAL ----------- */
body {
  background-color: #000;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  color: #fff;
  overflow-x: hidden;
}

.container {
  position: relative;
  width: 100%;
  max-width: 900px;
  text-align: center;
}

/* Imagen principal */
.main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: contain;
}

/* ----------- BOTÓN WHATSAPP ----------- */
.whatsapp {
  position: absolute;
  z-index: 20;
  width: 60px;
  height: 60px;
}

.whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.whatsapp img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@media (min-width: 601px) {
  .whatsapp {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 600px) {
  .whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
  }
}

/* ----------- REDES SOCIALES SOBRE IMAGEN ----------- */
.social.overlay {
  position: absolute;
  bottom: 115px; /* Ajustado para estar justo debajo de "WEB EN CONSTRUCCIÓN" */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  z-index: 15;
}

.social.overlay a img {
  width: 60px;
  height: auto;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social.overlay a img:hover {
  transform: scale(1.2);
  opacity: 1;
}

/* ----------- BOTÓN DESCARGA ----------- */
.download-btn {
  display: inline-block;
  background-color: #fdd835;
  color: #000;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 30px 0 20px 0;
}

.download-btn:hover {
  background-color: #ffeb3b;
  transform: scale(1.05);
}

/* ----------- REDES SOCIALES MÓVIL ----------- */
.social.mobile {
  display: none;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0;
  align-items: center;
}

.social.mobile a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

.social.mobile a img {
  width: 80px;
  height: auto;
  opacity: 0.95;
  margin-bottom: 5px;
}

/* ----------- CONTROL VISIBILIDAD ----------- */
.mobile-only {
  display: none;
}

@media (max-width: 600px) {
  .social.overlay {
    display: none;
  }
  .social.mobile {
    display: flex;
  }
  .download-btn {
    display: none;
  }
  .download-btn.mobile-only {
    display: inline-block;
  }
}
