/* Estilos base */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* Video de fondo */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contenido principal */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

/* Logo */
.logo {
  width: 230px; /* Tamaño fijo para PC */
  height: auto;
  margin-bottom: 20px;
}

/* Íconos de redes sociales */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px; /* Espacio entre el logo y los íconos */
}

.icon {
  font-size: 2rem;
  color: #fff;
  transition: transform 0.3s, color 0.3s;
}

.icon:hover {
  transform: scale(1.2);
  color: #E10600;
}

/* Botón de WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: breathe 2s ease-in-out infinite;
}

.whatsapp-btn i {
  color: #fff;
  font-size: 24px;
  animation: beat 2s ease-in-out infinite;
  text-decoration: none;
}

@keyframes breathe {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

@keyframes beat {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Footer */
.footer {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
}

.footer a {
  color: #b7b7b7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #fff;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
  .logo {
      width: 300px; /* Tamaño más grande para móviles */
  }

  .social-icons {
      gap: 20px; /* Reducir el espacio entre íconos en móviles */
      margin-top: 30px; /* Ajuste específico para móviles */
  }

  .icon {
      font-size: 1.5rem; /* Reducir el tamaño de los íconos en móviles */
  }
}