body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fefbe3;
}

/* Header */
.header {
  position: relative;
  text-align: center;
  padding: 4rem 1rem 2rem 1rem;
  background-color: transparent;
}

.background-curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}

.logo {
  position: relative;
  z-index: 1;
  width: 150px;
  height: auto;
  margin-bottom: 2rem;
}

/* Contenedor botones */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 1; /* Asegura que esté encima del fondo */
}

/* Botones */
.buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  width: 110px;
  height: 60px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6%;
  background-color: #fefae3;
  box-shadow: 0 2px 8px rgba(233, 227, 199, 0.865);
  overflow: hidden;
  padding: 0; /* IMPORTANTE: para que la imagen ocupe todo el espacio */
  transition: transform 0.3s ease;
}

.btn img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* O 'cover' si quieres que se ajuste aún más */
}


/* Hover efecto */
.btn:hover {
  transform: scale(1.05);
  background-color: #380896;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #370796;
}

/* Responsive móvil */
@media (max-width: 600px) {
  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 80%;
  }

  .logo {
    width: 120px;
  }
}

