/* 🌐 Estructura del documento */
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.config-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}


/* 🛍️ Grilla de productos */
/* .productos {
  margin-top: 2rem;
} */

/* 🃏 Estilo base de las cards */
/* .productos .card {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
} */

/* 👆 Animación suave al hacer hover */
/* .productos .card:hover {
  transform: translateY(-5px);
} */

/* 📷 Imágenes dentro de cards */
/* .productos .card-img-top {
  object-fit: cover;
  height: 180px;
} */

/* 📱 Responsive text */
/* .productos .card-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.productos .card-text {
  font-size: 0.95rem;
  color: #555;
} */

/* 📱 Ajustes para pantallas pequeñas */
@media (max-width: 576px) {
  .productos .card-img-top {
    height: 140px;
  }

  .productos .card-title {
    font-size: 1rem;
  }
}

/* boton enviar pedido */
.btn-neon {
  font-size: 18px;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  background: #ff007f;
  color: rgb(255, 255, 255);
  font-weight: bold;
  box-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f;
  transition: all 0.3s ease-in-out;
  animation: fadeIn 0.6s ease forwards;
}

.btn-neon:hover {
  box-shadow: 0 0 20px #ff007f, 0 0 40px #ff007f;
  transform: scale(1.05);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* celular */
@media (max-width: 600px) {
  #btn-finalizar {
    left: 85% !important; /* centrado */
    transform: translate(-50%, -50%) !important;
  }
}

/* tablets */
@media (min-width: 601px) and (max-width: 1024px) {
  #btn-finalizar {
    left: 90% !important;
    transform: translate(-50%, -50%) !important;
  }
}
