/* Estilo base do breadcrumb */
.breadcrumb {
    font-size: 14px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 80px ;
    padding-top: 40px;
}

/* Links e último item */
.breadcrumb a,
.breadcrumb span:last-child {
    font-size: 14px;
    line-height: 1;
    color: #000;
    text-decoration: none;
}

/* Hover nos links */
.breadcrumb a:hover {
    text-decoration: underline;
}

/* Separador */
.breadcrumb .separator {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url('/images/icones/rectangle_home.png') no-repeat center;
    background-size: contain;
}

/* Último item */
.breadcrumb span:last-child {
    font-weight: bold;
    margin-bottom: 3px;
}
