/* Fondo difuso */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sans-serif;
}

.background {
  background-image: url('fondo.jpg'); /* tu imagen de fondo */
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: -1;
}

/* Recuadro transparente */
.overlay {
  position: relative;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  width: 90%;
  max-width: 400px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  color: white;
}

/* Logo con fondo blanco y borde */
.logo-box {
  background-color: white;
  border: 2px solid #ccc;
  padding: 10px;
  border-radius: 8px;
  display: inline-block;
}

.logo-box img {
  width: 100px;
  display: block;
}

.logo-text {
  margin-top: 10px;
  font-size: 20px;
  color: white;
  font-weight: bold;
}

/* Botones en 2 columnas */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  justify-items: center;
  margin-top: 30px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.3); /* blanco con transparencia */
  padding: 12px 16px;
  border-radius: 10px;
  color: black;
  text-decoration: none;
  font-size: 16px;
  width: 100%;
  max-width: 160px;
  transition: background-color 0.3s;
}

.social-btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.social-btn img {
  width: 20px;
  height: 20px;
}

/* Responsivo para móviles */
@media (max-width: 500px) {
  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-btn {
    justify-content: center;
  }
}
