.tarjetas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    background:  white;
    padding: 3rem 2rem;
    gap: 1.5rem;
  }
  
  .tarjeta {
    border: 1px var(--gold-color) solid;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 100%;
    max-width: 260px;
    flex: 1 1 220px;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease-out forwards;
    justify-content: space-between; 
    height: 100%;
    min-height: 280px;
  }
  
  .tarjeta:hover {
    transform: translateY(-8px);
  }
  
  .tarjeta:nth-child(2) {
    animation-delay: 0.1s;
  }
  
  .tarjeta:nth-child(3) {
    animation-delay: 0.2s;
  }
  
  .tarjeta:nth-child(4) {
    animation-delay: 0.3s;
  }
  
  .tarjeta-icono {
    width: 60px;
    height: auto;
    margin-bottom: 1rem;
  }
  
  .tarjeta h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color:  var(--gold-color);
  }
  
  .tarjeta p {
    color:  var(--gold-color);
    font-size: 0.95rem;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsivo */
  @media (max-width: 1024px) {
    .tarjetas {
      justify-content: space-evenly;
    }
  }
  
  @media (max-width: 768px) {
    .tarjeta {
      max-width: 90%;
    }
  }
  
  @media (max-width: 480px) {
    .tarjetas {
      flex-direction: column;
      align-items: center;
    }
  
    .tarjeta {
      max-width: 100%;
    }
  }
  