.tarjetaBase{
    width: 80%;
    height: 85%;
    padding: 2%;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.322);
    box-shadow: 0 0 8px rgba(43, 29, 1, 0.836);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--secondary-2);
}
.tarjetaTitulo{
    position: relative;
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.507);
    box-shadow: 0 0 8px rgba(43, 29, 1, 0.836);
    text-align: justify;
    font-size: 0.8em;
}
.tarjetaFila{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
@media (max-width: 500px) {
    .tarjetaFila{
        flex-direction: column;
        overflow-y: auto;
    }
}
.tarjetaImg{
    width: 100%;
    height: 100%;
    padding: 4%;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.507);
    box-shadow: 0 0 8px rgba(43, 29, 1, 0.836);
}
.tarjetaImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tarjetaImg article{
    position: relative;
    width: 250px;
    transition: all .3s ease;
}
article img:first-child{
    box-shadow: 0 60px 60px -60px rgba(0, 30, 255, 0.5);
    border-radius: 4px;
    object-fit: cover;
    width: 100%;
}
article img:last-child{
    position: absolute;
    width: 200px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(25%);
    transition: .3s ease;
    opacity: 0;
}
article:hover{
    transform: perspective(250PX) rotateX(10deg) translateY(-5%) translateZ(0);
}
article::before{
    content: '';
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(
        to bottom,
        transparent 10%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0,0,0) 95%
    );
    opacity: 0;
    transition: all .3s ease;
}
article:hover::before{
    opacity: 1;
}
article:hover img:last-child{
    opacity: 1;
    transform: translateY(10%);
}


.tarjetainfo{    
    width: 100%;
    height: 100%;
    padding: 4%;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.507);
    box-shadow: 0 0 8px rgba(43, 29, 1, 0.836);
    font-size: 14px;
    font-family: var(--font-2);
}
.tarjetainfo b{
    color: var(--primary-1);
}
.infoP{
    font-size: 10px;
}
ul{
    list-style: disc;
    margin-left: 30px;
}
hr {
    border: 0;
    height: 2px;
    background: #333;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
    margin-top: 10px;
}
.cajaBtn{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:space-between;
}
.btnAgendar{
/*     width: 100px;
    background: linear-gradient(rgb(13, 14, 13), rgb(85, 77, 1));
    border-radius: 10px; */
    text-align: center;
} 
.btnBack{
    width: 35px;
    height: 35px;
    cursor: pointer;
}
.btnAgendar a:hover{
    color: var(--secondary-2);
    text-decoration: none;
    
}
.btnAgendar button{
    background: linear-gradient(rgb(13, 14, 13), rgb(85, 77, 1));
    cursor: pointer;
    border: none;
    padding: 5px 15px;
    color: white;
    font-weight: bold;
    position: relative;
    border-radius: 12px;
}
.btnAgendar button::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-1), var(--primary-8), var(--secondary-2), var(--secondary-4), var(--secondary-3));
    background-size: 800%;
    border-radius: 10px;
    filter: blur(8px);
    animation: glowing 20s linear infinite;
}
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}