
.title-left {
    background-image: url('img/TITULO_BOLETINES.png');
}


.content-botton {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px; /* Espaciado interno */
}
.link-detalle-obra {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}



.custom-button {
    padding: 10px;
    background-color: #193f41;

    color: white;
    font-size: 14px;
    padding: 5px 20px;

    border-radius: 25px;

    border: none;
    cursor: pointer;
    font-size: 1em;
}

.arrow {
    height: fit-content;
    margin-left: 3px;
    font-size: 1.2em;
    color: #193f41;
    font-size: 25px;
    font-weight: bold;
    transition: transform 0.3s ease; /* Transición para el ícono */
}

.arrow img{
    width: 15px;
    margin: 0 5px;
}
/* Animación al pasar el mouse */
.link-detalle-obra:hover .arrow {
    transform: translateX(4px); /* Mueve el ícono 5px a la derecha */
}

/* .fa-solid {
    font-size: 25px;
    font-weight: bold;
    
    transition: transform 0.3s ease;
} */


.custom-button:hover {
    background-color: #40575d;
}

.custom-button:hover .arrow {
    transform: translateX(5px);
}


