.block-curso-detalle {
    
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

@media (max-width: 1199px) {
    .block-curso-detalle {margin-top: 2rem; };
    
    
}

.block-curso-detalle .primero {
 
    height: 2rem;
    
}



.block-curso-detalle .segundo {
    display: flex;
    position: relative;
    align-items: stretch;
   
}

.block-curso-detalle .segundo::before {
    content: '';
    position: absolute;
    left: 15%;
    height: 2px;
    width: 0;
    background-color: #FBBB37;
    z-index: 0;  
    transition: all 2s ease;
}

.block-curso-detalle .animate::before {
    width: 70%; /* Ancho final cuando se añade la clase animate */
}

.block-curso-detalle .segundo .tarjeta {
    flex: 1;    
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.block-curso-detalle .tercero {
    display: flex;
    justify-content: space-between; 
    align-items: stretch;
}

.block-curso-detalle .tercero .tarjeta-3 {
    flex: 1;
}



.block-curso-detalle .tarjeta .icono {
    width: 3rem;
    height: 3rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: -1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    background-color: #FBBB37;
    
}

.block-curso-detalle .tarjeta .icono img{
    width: 1.4rem;
    
}



.block-curso-detalle p {
    text-align: center;
    font-size: 0.7rem;
    line-height: 1.4;
    color: #555454;
}


