/* Sección 2 */
.section-2 {
  padding: 60px 20px;
}

/* Contenedor de tarjetas */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Cada tarjeta */
.card {
  width: 360px;
  min-height: 325px;
  background-color: white;
  border-radius: 10px;
  padding: 20px 20px 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  /* sombra degradada alrededor */
  box-shadow: 0 0 10px 0 rgba(224, 248, 246, 0.5);
  position: relative;
}

/* Resalte inferior de 2px */
.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #B8E6E1;
  border-radius: 0 0 10px 10px;
}

/* Imagen de 60x60 */
.card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Título */
.card h3 {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  color: black;
}

/* Texto */
.card p {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  flex-grow: 1;
  margin-bottom: 15px;
}

/* Botón de tarjeta */
.card-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  background-color: white;
  color: #06A393;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #ccc;
}

.card-btn:hover {
  background-color: #05CAB6;
  color: white;
}

/* Responsive */
@media(max-width: 1080px) {
  .cards-container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media(max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .card {
    width: 100%;
    max-width: 360px;
  }
}
