/* ============================================
   BREADCRUMB (MIGALHAS DE PÃO)
   Estilo baseado no Bootstrap
============================================ */

/* Container padrão */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navegação de Breadcrumb */
.breadcrumb-nav {
    background-color: #ffffff;
    border-bottom: 3px solid #ff9800; /* Laranja Guia Destak */
    padding: 12px 0;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Lista de Breadcrumb */
.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
}

/* Itens da lista */
.breadcrumb-list li {
    display: inline-flex;
    align-items: center;
    color: #666;
}

/* Separador entre os itens (breadcrumb separator) */
.breadcrumb-list li:not(:last-child)::after {
    content: '›'; /* ou '>' ou '/' */
    margin: 0 8px;
    color: #999;
    font-size: 16px;
}

/* Links do breadcrumb */
.breadcrumb-list li a {
    color: #007bff; /* Azul para links */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb-list li a:hover {
    color: #ff4121; /* Laranja/vermelho Guia Destak no hover */
    text-decoration: underline;
}

/* Item ativo (último item - página atual) */
.breadcrumb-list li.active {
    color: #333;
    font-weight: 600;
}

.breadcrumb-list li.active a {
    color: #333;
    cursor: default;
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 10px 0;
        margin-bottom: 20px;
    }
    
    .breadcrumb-list {
        font-size: 13px;
    }
    
    .breadcrumb-list li:not(:last-child)::after {
        margin: 0 6px;
        font-size: 14px;
    }
}

/* ============================================
   CLASSES UTILITÁRIAS ADICIONAIS
   (Baseadas no Bootstrap)
============================================ */

/* Margens e Paddings */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

/* Centralização de texto */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

/* Cores de texto */
.text-primary { color: #007bff !important; }
.text-secondary { color: #6c757d !important; }
.text-success { color: #28a745 !important; }
.text-danger { color: #dc3545 !important; }
.text-warning { color: #ffc107 !important; }
.text-info { color: #17a2b8 !important; }
.text-light { color: #f8f9fa !important; }
.text-dark { color: #343a40 !important; }

/* Display */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }

/* Flexbox */
.flex-wrap { flex-wrap: wrap !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }

/* Responsividade básica */
@media (max-width: 576px) {
    .d-sm-none { display: none !important; }
    .d-sm-block { display: block !important; }
}

@media (max-width: 768px) {
    .d-md-none { display: none !important; }
    .d-md-block { display: block !important; }
}

@media (max-width: 992px) {
    .d-lg-none { display: none !important; }
    .d-lg-block { display: block !important; }
}