/* Fondo de video (opcional) */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100vh; /* Asegura que ocupe toda la altura */
  background: #f0f0f0; /* Fondo claro para el contenido */
  color: #333; /* Color de texto */
  padding: 5px;
}

/* Contenedor general */
.container {
  text-align: center;
}

/* Logo circular con rebote */
.logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  animation: bounce 2.5s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  margin-top: 50px;
}

/* Animación ping-pong */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-40px);
  }
}

/* Botones */
.buttons {
  margin-top: 270px; /* los baja en pantalla */
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.btn {
  font-size: 1.1rem;
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  background: white;
  transform: scale(1.05);
}

#bgvideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

@media (max-width: 767px) {

    .buttons {
  margin-top: 370px; /* los baja en pantalla */
}
}

@media (max-width: 575px) {
    .buttons {
  margin-top: 370px; /* los baja en pantalla */
}
}