 .btn{
    background-color: #AFC338;
  }
  .no-touch a.btn:hover {
    box-shadow: 0px 8px 2px 0 rgba(0, 0, 0, 0.075);
    transform: translateY(-2px);
    transition: all 0.25s 0s ease-out;
  }
  .no-touch a.btn:active,
  a.btn:active {
    box-shadow: 0 1px 0px 0 rgba(255, 255, 255, 0.25);
    transform: translate3d(0, 1px, 0);
    transition: all 0.025s 0s ease-out;
  }
  div.cards {
    margin:  auto;
    max-width: 100%;
    text-align: center;
    margin-bottom: 90px;
  }
  div.card {
    display: inline-block;
    margin: 8px;
    max-width: 300px;
    perspective: 1000;
    position: relative;
    text-align: left;
    transition: all 0.3s 0s ease-in;
    width: 300px;
  }
  div.card img {
    position: absolute; /* Cambia la posición a absoluta para controlar el tamaño */
    top: 10px; /* Coloca la imagen en la parte superior */
    left: 0; /* Coloca la imagen en la parte izquierda */
    width: 100%; /* Ajusta el ancho al 100% del contenedor */
    height: 87%; /* Ajusta la altura al 100% del contenedor */
    object-fit: contain; /* Escala la imagen para cubrir todo el contenedor */}

  div.card .card__image-holder {
    background: rgba(0, 0, 0, 0.1);
    height: 0;
    padding-bottom: 75%;
    position: relative; /* Agrega posición relativa al contenedor */
    padding-bottom: 75%; /* Mantén la proporción original (4:3) */
    overflow: hidden; /* Oculta cualquier contenido que pueda desbordar */
  }
  div.card div.card-title {
    -webkit-box-shadow: 10px 10px 60px -22px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 60px -22px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 60px -22px rgba(0,0,0,0.75);
    padding: 6px 15px 10px;
    position: relative;
  }
  div.card div.card-title a.toggle-info {
    border-radius: 32px;
    height: 32px;
    width: 32px;
    padding: 0;
    position: absolute;
    right: 15px;
    top: 10px;
  }
  div.card div.card-title a.toggle-info span {
    background: #ffffff;
    display: block;
    height: 2px;
    position: absolute;
    top: 16px;
    transition: all 0.15s 0s ease-out;
    width: 14px;
  }
  div.card div.card-title a.toggle-info span.left {
    right: 12px;
    transform: rotate(45deg);
  }
  div.card div.card-title a.toggle-info span.right {
    left: 12px;
    transform: rotate(-45deg);
  }
  div.card div.card-title h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.05em;
    margin: 0;
    padding: 0;
  }
  div.card div.card-title h2 small {
    display: block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.025em;
  }
  div.card div.card-description {
    margin-top: 10px;
    padding: 0 15px 10px;
    position: relative;
    font-size: 14px;
  }
  div.card div.card-actions {
    box-shadow: 0 2px 0px 0 rgba(0, 0, 0, 0.075);
    padding: 10px 15px 20px;
    text-align: center;
  }
  div.card div.card-flap {
    position: absolute;
    width: 100%;
    transform-origin: top;
    transform: rotateX(-90deg);
  }
  div.card div.flap1 {
    transition: all 0.3s 0.3s ease-out;
    z-index: -1;
  }
  div.card div.flap2 {
    transition: all 0.3s 0s ease-out;
    z-index: -2;
  }
  div.cards.showing div.card {
    cursor: pointer;
    opacity: 0.6;
    transform: scale(0.88);
  }
  .no-touch div.cards.showing div.card:hover {
    opacity: 0.94;
    transform: scale(0.92);
  }
  div.card.show {
    opacity: 1 !important;
    transform: scale(1) !important;
  }
  div.card.show div.card-title a.toggle-info {
    background: red !important;
  }
  div.card.show div.card-title a.toggle-info span {
    top: 14px;
  }
  div.card.show div.card-title a.toggle-info span.left {
    right: 8.5px;
  }
  div.card.show div.card-title a.toggle-info span.right {
    left: 8.5px;
  }
  div.card.show div.card-flap {
    background-color:white;    
    transform: rotateX(0deg);
  }
  div.card.show div.flap1 {
    transition: all 0.3s 0s ease-out;
  }
  div.card.show div.flap2 {
    transition: all 0.3s 0.2s ease-out;
  }
  

 /* Estilos para el botón de descarga de PDFs */
.botondescargar button {
  color: white;
  background-color: transparent; /* Letras Boton */
}

/* Estilos para el botón de descarga de PDFs */
.botondescargar {
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 20px;
  font-weight: 500;
  padding: 0.3em 0.5em;
  background: #AFC338; /* Color de fondo inicial */
  border: 2px solid;
  border-color: #AFC338; /* Color del borde inicial */
  position: relative;
  transition: color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease; /* Transiciones suaves */
}

.botondescargar:hover {
  color: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 4px 16px rgba(175, 195, 56, 1); /* Cambio de sombra al pasar el cursor */
  background-color: #96aa2a; /* Color de fondo al pasar el cursor */
}
