.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  background-color: #0a1a2a;
}
.cards {
  background-color: #0c0623;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  color: white;
  transition: transform 0.3s ease;
}
.cards button {
  background: #fff;
  padding: 5px 10px;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  margin-top: 3px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s ease;
}
.cards button:hover {
  color: black;
  background: #9ACBD0;

}
.cards:hover {
  transform: scale(1.05);
}
.cards img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid white;
}
.cards h2 {
  font-size: 23px;
  margin: 0;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #ffffff;
}
.precios h3 {
  font-size: 24px;
}
.precios p {
  font-size: 17px;
}


/*Pantalla adaptativa*/
@media (max-width: 1024px) { /* Tablets */
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .features {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
  }
  .features .feature {
    max-width: 45%;
  }
}

@media (max-width: 768px) { /* Celulares */
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .features {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .features .feature {
    max-width: 100%;
  }
}

/* Animación */
@keyframes scroll {
  from {
    opacity: 0;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

.cards {
  animation: scroll linear;
  animation-timeline: view();
  animation-range: entry 0 cover 35%;
}