.title-father{
    font-size: 24px;
    color: #052c6f;
    font-weight: bold;
}
.title-son{
    font-size: 20px;
    color: #052c6f;
    font-weight: 500;
}
.text-center{
    text-align: center;
}
.linea-izquierda{
    height: 0.2375rem;
    width: 3rem;
    background-color: #f7921f;
    border-radius: 20px;
    margin: 0.5rem 0;
    position: relative;
    left: 0;
}
.link-pdf {
    color: rgb(0, 73, 175);
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.3s ease;
}
.link-pdf .icon-pdf {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    transition: fill 0.3s ease;
}
.link-pdf:hover {
    color: #00c9fa;
}
.link-pdf:hover .icon-pdf path{
    fill: #00c9fa;
}
.link-pdf:hover .icon-pdf text {
    fill: white;
}
/*Cards*/
.card-collapse {
    width: 100%;
    border: 1px solid #0049af;
    border-radius: 10px;
    margin-bottom: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #f5faff;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    font-weight: bold;
    color: #0049af;
}

.card-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.card-body {
    padding: 1rem;
    display: none;
    color: #333;
    border-top: 1px solid #cce0ff;
}
.card-collapse.active .card-body {
    display: block;
}
.card-collapse.active .card-icon {
    content: '-';
}

