h4, h2,small,a{
    margin: 0;
    padding: 0;
  }
  a{
    text-decoration: none;
  }
  .Carousel{
    width: 100%;
    
  }
  .Carousel .texto{
    font-size: 26px;
    line-height: 38px;
    padding-bottom: 24px;
    opacity: .9;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 10px;
    text-align: center;
    transform: translateY(60px);
    
  }

  .textoabajoCard{

    border-radius: 4px;
    width: 110%;
    background-color: #fff;
    color: black;
    text-align:  center;

  }
 
  
  /* images */
  
  .slick-list{
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    height: 460px;
    padding: 10px 0px;
    margin: 0px auto;
    max-width: 90vw;
    overflow: hidden;
    
  
    
  }

  /***************************************DESCARGAR ARCHIVOS***********************************/
  .dowload {
    
    
}

.textDownload {
    font-size: 20px;
    margin-bottom: 10px;
}

.dnd {
    display: inline-block;
    text-decoration: none;
    background-color: #8D3225;
    color: #fff;
      text-align: left;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

@media only screen and (max-width: 600px) {
    .textDownload {
        font-size: 20px;
    }

    .dnd {
      display: block;
      margin: 0;
      max-width: 200px;
      width: 100%;
      padding: 8px 16px;
      text-align: left;
    }
}
  
  /****************************************************************************************************/
  .slick-track{
    position: relative;  
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    transition: .5s ease-in-out;
    
    
  }
  .slick{
    position: relative;
    width: 275px;
    padding: 0 18px;
    float: left;
    box-sizing: border-box;
    display: flex;
    height: 100%;
    
   
  }
  .slick h4{
    position: absolute;
    z-index: 1;
    font-size: 22px;
    line-height: 23px;
    color: black;
    font-weight: bold;
    padding: 15px;
  }
  
  .slick a img{
  
    object-fit: cover;
    height: 110%;
    width: 110%;
    border-radius: 8px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,9);
    transition: .3s ease-in-out;
   
  }
  .slick a img:hover{
    opacity: .50;
  }
  
  /* buttons */
  
  .slick-arrow{
    border-radius: 30px;
    background-color: #fff;
    position: absolute;
    z-index: 4;
    width: 48px;
    height: 48px;
    text-align: center;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.1);
    border: 0;
    cursor: pointer;
    
  }
  .slick-arrow:focus{
    outline: 0;
  }
  .slick-arrow svg{
    width: 12px;
    height: 100%;
    color: rgba(0,0,0,.7);
  }
  .slick-prev{
    left: 0px;
  }
  .slick-next{
    right: 0px;
  }
  
  .Carousel{
    margin-top: 50px;
    height: 600px;
    background-color: rgb(108, 96, 96);
    
  }
  
  /***********Estilos del texto de la imagen------------------------/
  
  
  /**********************/
  .recuadro {
    padding: 20px;
    margin: 0 auto;
    max-width: 100%;
    width: 90%;
  }
  .negrita {
    text-align: center;
    font-weight: bold;
    color: #8D3225;
    top: 50%;
    left: 50%;
    
   
    
  }
  
  /*****************************************/
  
   @media (max-width: 768px) {
    .negrita {
      position: static;
      transform: none;
      text-align: center;
    }
  }
  
  
  .slick {
    width: 239px; /* Ancho inicial de la tarjeta */
    height: 300px; /* Altura inicial de la tarjeta */
    transition: all 0.3s ease; /* Transición suave para el efecto */
  }
  
  .slick:hover {
    transform: scale(1.1); /* Escala de la tarjeta cuando el cursor está encima */
    /* Opcional: puedes agregar otros estilos para personalizar el efecto */
  }
  
  