.encomiendas-alt {
  background: radial-gradient(circle at top, #1c2533, #0e1218);
  padding: 100px 8%;
  color: #f1f1f1;
}

.encomiendas-alt-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.encomiendas-alt-header h2 {
  font-size: 2.6rem;
  color: #f5c400;
  margin-bottom: 15px;
}

.encomiendas-alt-header p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.7;
}

.encomiendas-alt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.encomienda-card {
  background: #1f1f1f;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.encomienda-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
}

.encomienda-card img {
  width: 20%;
  /* height: 90px; */
  object-fit: cover;
}

.encomienda-card h3 {
  font-size: 1.4rem;
  margin: 20px 0 10px;
  color: #f5c400;
}

.encomienda-card p {
  font-size: 0.95rem;
  padding: 0 22px 28px;
  color: #d0d0d0;
  line-height: 1.6;
}

.encomienda-card.highlight {
  background: #f5c400;
}

.encomienda-card.highlight h3,
.encomienda-card.highlight p {
  color: #111;
}

.encomiendas-alt-action {
  text-align: center;
}

.btn-encomienda.whatsapp {
  background: #25d366;
  color: #fff;
  padding: 15px 42px;
  border-radius: 35px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-encomienda.whatsapp:hover {
  background: #1ebe5d;
}

/* Agregando responsive completo para encomiendas */
@media (max-width: 900px) {
  .encomiendas-alt {
    padding: 70px 5%;
  }

  .encomiendas-alt-header h2 {
    font-size: 2rem;
  }

  .encomiendas-alt-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .encomiendas-alt {
    padding: 50px 15px;
  }

  .encomiendas-alt-header h2 {
    font-size: 1.8rem;
  }

  .encomiendas-alt-header p {
    font-size: 1rem;
  }

  .encomienda-card h3 {
    font-size: 1.2rem;
  }

  .encomienda-card p {
    font-size: 0.9rem;
    padding: 0 18px 22px;
  }

  .btn-encomienda.whatsapp {
    padding: 12px 32px;
    font-size: 1rem;
  }
}
