/* ========== BREADCRUMB ========== */
.breadcrumb-container {
    background-color: #f5f5f5;
    /* border-top: 1px solid #e0e0e0; */
    /* border-bottom: 1px solid #e0e0e0; */
    padding: 12px 0;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    margin-top: 25px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
    list-style: none;
    font-size: 0.85rem;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
    color: #555;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #888;
    font-size: 1.1rem;
    line-height: 1;
}

.breadcrumb a {
    color: #2a5ea7;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
}

.breadcrumb a:hover {
    color: #1a3a6e;
    text-decoration: underline;
}

.breadcrumb span[aria-current="page"] {
    color: #333;
    font-weight: 500;
}

/* Responsivo */
@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 10px 15px;
    }
    
    .breadcrumb {
        font-size: 0.78rem;
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 3px;
    }
    
    .breadcrumb li {
        flex-shrink: 0;
    }
    
    .breadcrumb li:not(:last-child)::after {
        margin: 0 6px;
    }
}

/* Efeito de scroll no mobile */
.breadcrumb::-webkit-scrollbar {
    height: 3px;
}

.breadcrumb::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.breadcrumb::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.breadcrumb::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}
.breadcrumb li:first-child a i {
    margin-right: 5px;
    font-size: 0.9em;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
