body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
  height: 100%;
}

.background {
  background: url("fondo_desktop.png") no-repeat center center fixed;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wppIcon {
  width: 50px;
}

.subtitle {
  font-size: 16px;
  color: #008312;
  margin-top: 20px;
  text-align: center;
  background-color: #000000;
  padding: 14px 28px;
  border-radius: 5px;
  border: 2px dashed #008312;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-style: italic;
  font-weight: 700;
}

.content {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  animation: fadeIn 2s ease-in-out;
}

.logo {
  width: 250px;
  max-width: 90%;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-button {
  display: flex;
  margin-top: 30px;
  align-items: center;
  background-color: #25d366;
  color: white;
  padding: 14px 28px;
  font-size: 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-button:hover {
  transform: scale(1.05);
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsivo */
@media (max-width: 600px) {
  .background {
    background: url("fondo_mobile.png") no-repeat center center fixed;
  }
  .logo {
    width: 180px;
  }

  .whatsapp-button {
    font-size: 14px;
    padding: 12px 24px;
  }
}
