/* _content/Boilerplate4Dev/Components/MenuBlock/MenuBlock.razor.rz.scp.css */
/* ===== CONTAINER PRINCIPAL ===== */
.workflow-container[b-klyq8ze6z5] {
    width: 100%;
    max-width: 100vw;
    padding: 0.3rem;
    overflow-x: auto;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

.workflow-grid[b-klyq8ze6z5] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    width: 100%;
    max-width: 100%;
    min-width: fit-content;
    padding: 1rem 0;
    box-sizing: border-box;
    flex-wrap: wrap;
    position: relative;
    overflow: visible !important;
}

/* CORRIGIDO: Linha conectora de fundo - adicionado ponto antes */
.workflow-grid[b-klyq8ze6z5]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: clamp(2px, 0.5vw, 4px);
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ffffff 5%,
        #ffffff 95%,
        transparent 100%) !important;
    z-index: 1;
    transform: translateY(-50%);
    border-radius: clamp(1px, 0.25vw, 2px);
}

/* ===== BLOCOS DO WORKFLOW ===== */
.workflow-block[b-klyq8ze6z5] {
    width: clamp(6.5rem, 13vw, 10rem);
    height: clamp(4.5rem, 9vw, 7.5rem);
    min-height: clamp(4.5rem, 9vw, 7.5rem);
    max-height: clamp(4.5rem, 9vw, 7.5rem);
    border-radius: 0.75rem;
    padding: clamp(0.5rem, 2vw, 1rem);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible !important;
    cursor: pointer;
    flex-shrink: 0;
    flex-grow: 0;
    box-sizing: border-box;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-block:hover[b-klyq8ze6z5] {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.15);
    z-index: 10000;
}

.workflow-block[b-klyq8ze6z5]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

/* Área de hover estendida para melhor UX */
.workflow-block[b-klyq8ze6z5]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: -20px;
    pointer-events: none;
    z-index: -1;
}

.block-content[b-klyq8ze6z5] {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(0.25rem, 1vw, 0.5rem); /* Gap responsivo entre ícone e texto */
    box-sizing: border-box;
    padding: 0.25rem;
}

/* Ícone centralizado acima do texto */
.block-icon[b-klyq8ze6z5] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(1.5rem, 4vw, 2.5rem);
    height: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: clamp(0.25rem, 1vw, 0.5rem);
    z-index: 4;
}

.block-icon i[b-klyq8ze6z5] {
    font-size: clamp(0.9rem, 2.5vw, 1.5rem);
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.step-number[b-klyq8ze6z5] {
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 700;
    margin: 0;
    opacity: 0.9;
    line-height: 1;
    order: 3; /* Posiciona após o ícone e título */
}

.step-title[b-klyq8ze6z5] {
    font-size: clamp(0.65rem, 1.8vw, 0.85rem);
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    text-align: center;
    word-wrap: break-word;
    order: 2; /* Posiciona após o ícone */
}

.step-description[b-klyq8ze6z5] {
    font-size: clamp(0.625rem, 1.5vw, 0.75rem);
    margin: 0;
    opacity: 0.9;
    line-height: 1.3;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
    display: none;
    order: 4; /* Posiciona por último */
}

/* ===== SETAS CONECTORAS ===== */
.arrow-connector[b-klyq8ze6z5] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: clamp(1.5rem, 4vw, 2.5rem);
    height: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

/* CORRIGIDO: Linha bicolor antes da seta - adicionado ponto antes */
.arrow-connector[b-klyq8ze6z5]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 45%;
    height: clamp(3px, 0.75vw, 5px);
    transform: translateY(-50%);
    border-radius: clamp(1.5px, 0.375vw, 2.5px);
    z-index: 1;
}

/* CORRIGIDO: Linha bicolor depois da seta - adicionado ponto antes */
.arrow-connector[b-klyq8ze6z5]::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 45%;
    height: clamp(3px, 0.75vw, 5px);
    transform: translateY(-50%);
    border-radius: clamp(1.5px, 0.375vw, 2.5px);
    z-index: 1;
}

/* NOVO: Cores específicas para cada conexão - CORES BICOLOR COMO NA IMAGEM */
/* Seta 1: Entre Bloco 1 (Success) e Bloco 2 (Warning) */
.arrow-connector:nth-child(2)[b-klyq8ze6z5]::before {
    background: #198754 !important; /* Success */
}
.arrow-connector:nth-child(2)[b-klyq8ze6z5]::after {
    background: #ffc107 !important; /* Warning */
}

/* Seta 2: Entre Bloco 2 (Warning) e Bloco 3 (Info) */
.arrow-connector:nth-child(4)[b-klyq8ze6z5]::before {
    background: #ffc107 !important; /* Warning */
}
.arrow-connector:nth-child(4)[b-klyq8ze6z5]::after {
    background: #0dcaf0 !important; /* Info */
}

/* Seta 3: Entre Bloco 3 (Info) e Bloco 4 (Primary) */
.arrow-connector:nth-child(6)[b-klyq8ze6z5]::before {
    background: #0dcaf0 !important; /* Info */
}
.arrow-connector:nth-child(6)[b-klyq8ze6z5]::after {
    background: #0d6efd !important; /* Primary */
}

/* Seta 4: Entre Bloco 4 (Primary) e Bloco 5 (Secondary) */
.arrow-connector:nth-child(8)[b-klyq8ze6z5]::before {
    background: #0d6efd !important; /* Primary */
}
.arrow-connector:nth-child(8)[b-klyq8ze6z5]::after {
    background: #6c757d !important; /* Secondary */
}

/* Seta 5: Entre Bloco 5 (Secondary) e Bloco 6 (Danger) */
.arrow-connector:nth-child(10)[b-klyq8ze6z5]::before {
    background: #6c757d !important; /* Secondary */
}
.arrow-connector:nth-child(10)[b-klyq8ze6z5]::after {
    background: #dc3545 !important; /* Danger */
}

/* CORRIGIDO: Ícone da seta - fundo cinza claro como na imagem */
.arrow-icon[b-klyq8ze6z5] {
    width: clamp(1rem, 3vw, 1.75rem);
    height: clamp(1rem, 3vw, 1.75rem);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 3;
    background: #f0f0f0 !important; /* CINZA CLARO como na imagem */
    border-radius: 50%;
    padding: clamp(0.125rem, 0.5vw, 0.25rem);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Garantir que o SVG da seta seja escuro para contrastar com o fundo claro */
.arrow-icon path[b-klyq8ze6z5] {
    fill: #333333 !important; /* SETA ESCURA */
}

.arrow-icon:hover[b-klyq8ze6z5] {
    transform: translateX(clamp(0.125rem, 0.5vw, 0.25rem)) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #e0e0e0 !important; /* CINZA MAIS ESCURO NO HOVER */
}

/* Efeito de pulso na linha durante hover */
.arrow-connector:hover[b-klyq8ze6z5]::before,
.arrow-connector:hover[b-klyq8ze6z5]::after {
    animation: pulse-line-b-klyq8ze6z5 1.5s ease-in-out infinite;
}

@keyframes pulse-line-b-klyq8ze6z5 {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scaleY(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) scaleY(1.2);
    }
}

/* ===== SUBMENU STYLES ===== */
.submenu-container[b-klyq8ze6z5] {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 8px 16px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    pointer-events: none;
}

.submenu-container.active[b-klyq8ze6z5] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) scale(1) !important;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 8px 16px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 0 1px var(--primary-color);
}

.submenu-container[b-klyq8ze6z5]::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--primary-color);
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.submenu-content[b-klyq8ze6z5] {
    padding: 16px 0;
    position: relative;
    z-index: 2;
}

.submenu-item[b-klyq8ze6z5] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: white !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    border-left: 3px solid transparent;
    cursor: pointer;
}

.submenu-item:hover[b-klyq8ze6z5] {
    background: rgba(255, 255, 255, 0.15) !important;
    border-left: 3px solid rgba(255, 255, 255, 0.9);
    color: white !important;
    text-decoration: none !important;
    transform: translateX(4px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.submenu-item:visited[b-klyq8ze6z5],
.submenu-item:focus[b-klyq8ze6z5],
.submenu-item:active[b-klyq8ze6z5] {
    color: white !important;
    text-decoration: none !important;
}

.submenu-item i[b-klyq8ze6z5] {
    width: 16px;
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
}

.submenu-item span[b-klyq8ze6z5] {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Efeito espelho */
.submenu-reflection[b-klyq8ze6z5] {
    position: relative;
    height: 60px;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.submenu-reflection[b-klyq8ze6z5]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.submenu-item-reflection[b-klyq8ze6z5] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 20px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-weight: 500;
    transform: scaleY(-1);
    opacity: 0.4;
    filter: blur(0.5px);
    pointer-events: none;
}

.submenu-item-reflection i[b-klyq8ze6z5] {
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.submenu-item-reflection span[b-klyq8ze6z5] {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Animações de entrada */
.submenu-container.active .submenu-item[b-klyq8ze6z5] {
    animation: slideInSubmenu-b-klyq8ze6z5 0.4s ease forwards;
}

.submenu-container.active .submenu-item:nth-child(1)[b-klyq8ze6z5] { animation-delay: 0.05s; }
.submenu-container.active .submenu-item:nth-child(2)[b-klyq8ze6z5] { animation-delay: 0.1s; }
.submenu-container.active .submenu-item:nth-child(3)[b-klyq8ze6z5] { animation-delay: 0.15s; }
.submenu-container.active .submenu-item:nth-child(4)[b-klyq8ze6z5] { animation-delay: 0.2s; }

@keyframes slideInSubmenu-b-klyq8ze6z5 {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Efeito de brilho sutil no submenu */
.submenu-container[b-klyq8ze6z5]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.submenu-container.active[b-klyq8ze6z5]::after {
    left: 100%;
}

/* ===== ANIMAÇÕES DOS BLOCOS ===== */
@keyframes slideInFromLeft-b-klyq8ze6z5 {
    from {
        opacity: 0;
        transform: translateX(clamp(-1rem, -5vw, -2rem));
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInArrow-b-klyq8ze6z5 {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes drawLine-b-klyq8ze6z5 {
    from {
        width: 0;
    }
    to {
        width: 45%;
    }
}

/* Aplicação das animações */
.workflow-block:nth-child(1)[b-klyq8ze6z5] {
    animation: slideInFromLeft-b-klyq8ze6z5 0.6s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.arrow-connector:nth-child(2)[b-klyq8ze6z5] {
    animation: fadeInArrow-b-klyq8ze6z5 0.4s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.arrow-connector:nth-child(2)[b-klyq8ze6z5]::before,
.arrow-connector:nth-child(2)[b-klyq8ze6z5]::after {
    animation: drawLine-b-klyq8ze6z5 0.6s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.workflow-block:nth-child(3)[b-klyq8ze6z5] {
    animation: slideInFromLeft-b-klyq8ze6z5 0.6s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.arrow-connector:nth-child(4)[b-klyq8ze6z5] {
    animation: fadeInArrow-b-klyq8ze6z5 0.4s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

.arrow-connector:nth-child(4)[b-klyq8ze6z5]::before,
.arrow-connector:nth-child(4)[b-klyq8ze6z5]::after {
    animation: drawLine-b-klyq8ze6z5 0.6s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.workflow-block:nth-child(5)[b-klyq8ze6z5] {
    animation: slideInFromLeft-b-klyq8ze6z5 0.6s ease-out;
    animation-delay: 0.7s;
    animation-fill-mode: both;
}

.arrow-connector:nth-child(6)[b-klyq8ze6z5] {
    animation: fadeInArrow-b-klyq8ze6z5 0.4s ease-out;
    animation-delay: 0.8s;
    animation-fill-mode: both;
}

.arrow-connector:nth-child(6)[b-klyq8ze6z5]::before,
.arrow-connector:nth-child(6)[b-klyq8ze6z5]::after {
    animation: drawLine-b-klyq8ze6z5 0.6s ease-out;
    animation-delay: 0.9s;
    animation-fill-mode: both;
}

.workflow-block:nth-child(7)[b-klyq8ze6z5] {
    animation: slideInFromLeft-b-klyq8ze6z5 0.6s ease-out;
    animation-delay: 1.0s;
    animation-fill-mode: both;
}

.arrow-connector:nth-child(8)[b-klyq8ze6z5] {
    animation: fadeInArrow-b-klyq8ze6z5 0.4s ease-out;
    animation-delay: 1.1s;
    animation-fill-mode: both;
}

.arrow-connector:nth-child(8)[b-klyq8ze6z5]::before,
.arrow-connector:nth-child(8)[b-klyq8ze6z5]::after {
    animation: drawLine-b-klyq8ze6z5 0.6s ease-out;
    animation-delay: 1.2s;
    animation-fill-mode: both;
}

.workflow-block:nth-child(9)[b-klyq8ze6z5] {
    animation: slideInFromLeft-b-klyq8ze6z5 0.6s ease-out;
    animation-delay: 1.3s;
    animation-fill-mode: both;
}

.arrow-connector:nth-child(10)[b-klyq8ze6z5] {
    animation: fadeInArrow-b-klyq8ze6z5 0.4s ease-out;
    animation-delay: 1.4s;
    animation-fill-mode: both;
}

.arrow-connector:nth-child(10)[b-klyq8ze6z5]::before,
.arrow-connector:nth-child(10)[b-klyq8ze6z5]::after {
    animation: drawLine-b-klyq8ze6z5 0.6s ease-out;
    animation-delay: 1.5s;
    animation-fill-mode: both;
}

.workflow-block:nth-child(11)[b-klyq8ze6z5] {
    animation: slideInFromLeft-b-klyq8ze6z5 0.6s ease-out;
    animation-delay: 1.6s;
    animation-fill-mode: both;
}

/* ===== RESPONSIVIDADE ===== */

/* REMOVIDO: Media query que ocultava setas */
/* @media (max-width: 1399px) {
    .arrow-connector {
        display: none;
    }
} */

/* Telas muito grandes (> 1400px) */
@media (min-width: 1400px) {
    .workflow-container[b-klyq8ze6z5] {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .workflow-grid[b-klyq8ze6z5] {
        flex-wrap: nowrap;
    }
    
    .workflow-grid[b-klyq8ze6z5]::before {
        height: 4px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            #ffffff 5%, 
            #ffffff 95%, 
            transparent 100%) !important;
    }
    
    .arrow-connector[b-klyq8ze6z5]::before,
    .arrow-connector[b-klyq8ze6z5]::after {
        height: 5px;
    }
    
    .workflow-block[b-klyq8ze6z5] {
        width: clamp(9rem, 11vw, 11rem);
        height: clamp(7rem, 8vw, 8.5rem);
        min-height: clamp(7rem, 8vw, 8.5rem);
        max-height: clamp(7rem, 8vw, 8.5rem);
    }

     .block-icon[b-klyq8ze6z5] {
        width: clamp(2rem, 3.5vw, 3rem);
        height: clamp(2rem, 3.5vw, 3rem);
        margin-bottom: clamp(0.5rem, 1.2vw, 0.75rem);
    }
    
    .block-icon i[b-klyq8ze6z5] {
        font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    }
}

/* Telas grandes (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .workflow-container[b-klyq8ze6z5] {
        padding: 0.5rem;
    }
    
    .workflow-grid[b-klyq8ze6z5] {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 1rem;
        column-gap: clamp(0.75rem, 3vw, 1rem);
    }
    
    .workflow-grid[b-klyq8ze6z5]::before {
        height: 3px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            #ffffff 5%, 
            #ffffff 95%, 
            transparent 100%) !important;
    }
    
    .arrow-connector[b-klyq8ze6z5]::before,
    .arrow-connector[b-klyq8ze6z5]::after {
        height: 4px;
    }
    
    .workflow-block[b-klyq8ze6z5] {
        width: clamp(8rem, 18vw, 10rem);
        height: clamp(6rem, 14vw, 7.5rem);
        min-height: clamp(6rem, 14vw, 7.5rem);
        max-height: clamp(6rem, 14vw, 7.5rem);
    }

    .block-icon[b-klyq8ze6z5] {
        width: clamp(1.8rem, 3.2vw, 2.5rem);
        height: clamp(1.8rem, 3.2vw, 2.5rem);
        margin-bottom: clamp(0.4rem, 1vw, 0.6rem);
    }
    
    .block-icon i[b-klyq8ze6z5] {
        font-size: clamp(1.1rem, 2vw, 1.5rem);
    }
}

/* Telas médias (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .workflow-container[b-klyq8ze6z5] {
        padding: 0.4rem;
    }
    
    .workflow-grid[b-klyq8ze6z5] {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 1rem;
        column-gap: clamp(0.75rem, 3vw, 1rem);
    }
    
    .workflow-grid[b-klyq8ze6z5]::before {
        display: none;
    }
    
    .workflow-block[b-klyq8ze6z5] {
        width: clamp(7rem, 20vw, 9rem);
        height: clamp(5rem, 16vw, 7rem);
        min-height: clamp(5rem, 16vw, 7rem);
        max-height: clamp(5rem, 16vw, 7rem);
    }

    .block-icon[b-klyq8ze6z5] {
        width: clamp(1.6rem, 3vw, 2.2rem);
        height: clamp(1.6rem, 3vw, 2.2rem);
        margin-bottom: clamp(0.3rem, 0.8vw, 0.5rem);
    }
    
    .block-icon i[b-klyq8ze6z5] {
        font-size: clamp(1rem, 1.8vw, 1.3rem);
    }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .workflow-container[b-klyq8ze6z5] {
        padding: 0.3rem;
    }
    
    .workflow-grid[b-klyq8ze6z5] {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 1rem;
        column-gap: clamp(0.75rem, 3vw, 1rem);
    }
    
    .workflow-grid[b-klyq8ze6z5]::before {
        display: none;
    }
    
    .workflow-block[b-klyq8ze6z5] {
        width: clamp(7rem, 22vw, 9rem);
        height: clamp(5rem, 18vw, 7rem);
        min-height: clamp(5rem, 18vw, 7rem);
        max-height: clamp(5rem, 18vw, 7rem);
    }
    
    .submenu-container[b-klyq8ze6z5] {
        width: 240px;
        top: calc(100% + 8px);
    }
    
    .submenu-item[b-klyq8ze6z5] {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .submenu-item i[b-klyq8ze6z5] {
        font-size: 13px;
    }

     .block-icon[b-klyq8ze6z5] {
        width: clamp(1.4rem, 3.5vw, 2rem);
        height: clamp(1.4rem, 3.5vw, 2rem);
        margin-bottom: clamp(0.25rem, 0.7vw, 0.4rem);
    }
    
    .block-icon i[b-klyq8ze6z5] {
        font-size: clamp(0.9rem, 2.2vw, 1.2rem);
    }
}

/* Tablets pequenos (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .workflow-container[b-klyq8ze6z5] {
        padding: 0.25rem;
    }
    
    .workflow-grid[b-klyq8ze6z5] {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 1rem;
        column-gap: clamp(0.75rem, 4vw, 1rem);
    }
    
    /* CORRIGIDO: adicionado ponto antes */
    .workflow-grid[b-klyq8ze6z5]::before {
        height: 2px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            #ffffff 5%, 
            #ffffff 95%, 
            transparent 100%) !important;
    }
    
    .arrow-connector[b-klyq8ze6z5]::before,
    .arrow-connector[b-klyq8ze6z5]::after {
        height: 3px;
    }
    
    .workflow-block[b-klyq8ze6z5] {
        width: clamp(6rem, 28vw, 8rem);
        height: clamp(4.5rem, 22vw, 6rem);
        min-height: clamp(4.5rem, 22vw, 6rem);
        max-height: clamp(4.5rem, 22vw, 6rem);
    }
    
    .submenu-container[b-klyq8ze6z5] {
        width: 200px;
        top: calc(100% + 6px);
    }
    
    .submenu-item[b-klyq8ze6z5] {
        padding: 8px 12px;
        font-size: 12px;
        gap: 8px;
    }
    
    .submenu-item i[b-klyq8ze6z5] {
        font-size: 12px;
        width: 14px;
    }
    
    .submenu-reflection[b-klyq8ze6z5] {
        height: 40px;
    }

     .block-icon[b-klyq8ze6z5] {
        width: clamp(1.3rem, 4vw, 1.8rem);
        height: clamp(1.3rem, 4vw, 1.8rem);
        margin-bottom: clamp(0.2rem, 0.6vw, 0.35rem);
    }
    
    .block-icon i[b-klyq8ze6z5] {
        font-size: clamp(0.8rem, 2.5vw, 1.1rem);
    }
}

/* Mobile (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    .workflow-container[b-klyq8ze6z5] {
        padding: 0.2rem;
    }
    
    .workflow-grid[b-klyq8ze6z5] {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.8rem;
        column-gap: clamp(0.5rem, 5vw, 0.75rem);
    }
    
    .workflow-grid[b-klyq8ze6z5]::before {
        height: 2px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            #ffffff 5%, 
            #ffffff 95%, 
            transparent 100%) !important;
    }
    
    .arrow-connector[b-klyq8ze6z5]::before,
    .arrow-connector[b-klyq8ze6z5]::after {
        height: 2px;
    }
    
    .workflow-block[b-klyq8ze6z5] {
        width: clamp(5.5rem, 32vw, 7rem);
        height: clamp(4rem, 24vw, 5.5rem);
        min-height: clamp(4rem, 24vw, 5.5rem);
        max-height: clamp(4rem, 24vw, 5.5rem);
    }
    
    .submenu-container[b-klyq8ze6z5] {
        width: 180px;
        border-radius: 8px;
        top: calc(100% + 4px);
    }
    
    .submenu-item[b-klyq8ze6z5] {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .submenu-reflection[b-klyq8ze6z5] {
        height: 30px;
    }

    .block-icon[b-klyq8ze6z5] {
        width: clamp(1.2rem, 4.5vw, 1.6rem);
        height: clamp(1.2rem, 4.5vw, 1.6rem);
        margin-bottom: clamp(0.15rem, 0.5vw, 0.3rem);
    }
    
    .block-icon i[b-klyq8ze6z5] {
        font-size: clamp(0.75rem, 3vw, 1rem);
    }
}

/* Mobile pequeno (320px - 479px) */
@media (max-width: 479px) {
    .workflow-container[b-klyq8ze6z5] {
        padding: 0.15rem;
    }
    
    .workflow-grid[b-klyq8ze6z5] {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.6rem;
        column-gap: clamp(0.4rem, 6vw, 0.6rem);
    }
    
    .workflow-grid[b-klyq8ze6z5]::before {
        display: none;
    }
    
    .workflow-block[b-klyq8ze6z5] {
        width: clamp(5rem, 38vw, 6.5rem);
        height: clamp(3.5rem, 28vw, 5rem);
        min-height: clamp(3.5rem, 28vw, 5rem);
        max-height: clamp(3.5rem, 28vw, 5rem);
    }
    
    .step-title[b-klyq8ze6z5] {
        font-size: clamp(0.6rem, 3.2vw, 0.75rem);
        line-height: 1.1;
    }
    
    .step-number[b-klyq8ze6z5] {
        font-size: clamp(0.7rem, 3.8vw, 0.85rem);
    }

     .block-icon[b-klyq8ze6z5] {
        width: clamp(1.1rem, 5vw, 1.4rem);
        height: clamp(1.1rem, 5vw, 1.4rem);
        margin-bottom: clamp(0.1rem, 0.4vw, 0.25rem);
    }
    
    .block-icon i[b-klyq8ze6z5] {
        font-size: clamp(0.7rem, 3.5vw, 0.9rem);
    }
}

/* Mobile muito pequeno (< 320px) */
@media (max-width: 319px) {
    .workflow-container[b-klyq8ze6z5] {
        padding: 0.1rem;
    }
    
    .workflow-grid[b-klyq8ze6z5] {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.5rem;
        column-gap: clamp(0.3rem, 8vw, 0.5rem);
    }
    
    .workflow-grid[b-klyq8ze6z5]::before {
        display: none;
    }
    
    .workflow-block[b-klyq8ze6z5] {
        width: clamp(4.5rem, 42vw, 6rem);
        height: clamp(3rem, 32vw, 4.5rem);
        min-height: clamp(3rem, 32vw, 4.5rem);
        max-height: clamp(3rem, 32vw, 4.5rem);
    }
    
    .step-title[b-klyq8ze6z5] {
        font-size: clamp(0.55rem, 4.2vw, 0.7rem);
        line-height: 1.0;
    }
    
    .step-number[b-klyq8ze6z5] {
        font-size: clamp(0.65rem, 4.8vw, 0.8rem);
    }

     .block-icon[b-klyq8ze6z5] {
        width: clamp(1rem, 6vw, 1.3rem);
        height: clamp(1rem, 6vw, 1.3rem);
        margin-bottom: clamp(0.05rem, 0.3vw, 0.2rem);
    }
    
    .block-icon i[b-klyq8ze6z5] {
        font-size: clamp(0.65rem, 4vw, 0.8rem);
    }
}

/* ===== VARIAÇÕES E ESTADOS ===== */

/* Variação com descrições */
.workflow-container.show-descriptions .step-description[b-klyq8ze6z5] {
    display: block;
}

.workflow-container.show-descriptions .workflow-block[b-klyq8ze6z5] {
    min-height: clamp(7rem, 14vw, 10rem);
}

/* Efeito de hover melhorado */
.workflow-block:hover + .arrow-connector .arrow-icon[b-klyq8ze6z5] {
    transform: translateX(clamp(0.25rem, 1vw, 0.375rem)) scale(1.15);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.workflow-block:hover + .arrow-connector[b-klyq8ze6z5]::before,
.workflow-block:hover + .arrow-connector[b-klyq8ze6z5]::after {
    box-shadow: 0 0 clamp(0.5rem, 1vw, 0.75rem) rgba(0, 0, 0, 0.2);
}

/* ===== ACESSIBILIDADE E PREFERÊNCIAS ===== */

/* Otimizações para zoom */
@media (min-resolution: 150dpi) {
    .workflow-block[b-klyq8ze6z5] {
        border-radius: 0.5rem;
    }
    
    .step-title[b-klyq8ze6z5] {
        text-rendering: optimizeLegibility;
    }
    
    .arrow-connector[b-klyq8ze6z5]::before,
    .arrow-connector[b-klyq8ze6z5]::after {
        border-radius: 2px;
    }
}

/* Modo de alto contraste */
@media (prefers-contrast: high) {
    .workflow-block[b-klyq8ze6z5] {
        box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.3);
    }
    
    .step-title[b-klyq8ze6z5] {
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    
    .arrow-connector[b-klyq8ze6z5]::before,
    .arrow-connector[b-klyq8ze6z5]::after {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    
    .arrow-icon[b-klyq8ze6z5] {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
}

/* Redução de movimento para acessibilidade */
@media (prefers-reduced-motion: reduce) {
    .workflow-block[b-klyq8ze6z5],
    .arrow-connector[b-klyq8ze6z5],
    .arrow-icon[b-klyq8ze6z5],
    .submenu-container[b-klyq8ze6z5],
    .submenu-item[b-klyq8ze6z5] {
        animation: none;
        transition: none;
    }
    
    .workflow-block:hover[b-klyq8ze6z5] {
        transform: none;
    }
    
    .arrow-icon:hover[b-klyq8ze6z5] {
        transform: none;
    }
    
    .arrow-connector:hover[b-klyq8ze6z5]::before,
    .arrow-connector:hover[b-klyq8ze6z5]::after {
        animation: none;
    }
    
    .submenu-container.active[b-klyq8ze6z5] {
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* Modo escuro */
@media (prefers-color-scheme: dark) {
    .workflow-grid[b-klyq8ze6z5]::before {
        background: linear-gradient(90deg, 
            transparent 0%, 
            #ffffff 5%,
            #ffffff 95%, 
            transparent 100%) !important;
    }
    
    .arrow-icon[b-klyq8ze6z5] {
        background: #f0f0f0 !important;
    }
    
    .arrow-icon path[b-klyq8ze6z5] {
        fill: #333333 !important;
    }
    
    .submenu-container[b-klyq8ze6z5] {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 8px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.15);
    }
    
    .submenu-container.active[b-klyq8ze6z5] {
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .submenu-item:hover[b-klyq8ze6z5] {
        background: rgba(255, 255, 255, 0.1) !important;
        border-left-color: rgba(255, 255, 255, 0.7);
    }
    
    .submenu-reflection[b-klyq8ze6z5] {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 50%, transparent 100%);
        border-top-color: rgba(255, 255, 255, 0.05);
    }
}

/* ===== UTILITÁRIOS ===== */

.custom-link[b-klyq8ze6z5] {
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.25rem, 1vw, 0.5rem);
    box-sizing: border-box;
    transition: color 0.3s ease;
}

.custom-link:hover[b-klyq8ze6z5] {
    color: rgba(255, 255, 255, 0.8);
}
/* _content/Boilerplate4Dev/Components/Pages/MonitoramentoAtivo/ConsultarMonitoramentoAdocao.razor.rz.scp.css */
/* Regras para a coluna Nome: largura menor e hifenização adequada em pt-BR */

/* Garante que o texto do nome possa quebrar com hifenização */
.pagina-monitoramento .nome-text[b-j8z3avyrfl] {
  white-space: normal;            /* permite quebra de linha normal */
  word-break: normal;             /* não força quebra no meio da palavra, deixa a hifenização atuar */
  overflow-wrap: break-word;      /* quebra palavras muito longas somente quando necessário */
  word-wrap: break-word;          /* compatibilidade com navegadores antigos */
  hyphens: auto;                  /* ativa hifenização com base no atributo lang (pt-BR no container) */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}
/* _content/Boilerplate4Dev/Components/Pages/Pesquisa/AvaliacaoResultado.razor.rz.scp.css */
.stacked-element[b-73yqg8pxk3] {
    display: flex;
    margin-bottom: 0px;
    padding: 2px;
}
/* _content/Boilerplate4Dev/Components/Pages/QualificacaoAtivo/AcompanhamentoQualificacao.razor.rz.scp.css */
/* Estreita apenas o controle do Select e mantém label acima, alinhados à esquerda */
.select-narrow[b-oe0gro7b12]  .bb-form-item,
.select-narrow[b-oe0gro7b12]  .bb-form-body {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.select-narrow[b-oe0gro7b12]  .bb-form-label,
.select-narrow[b-oe0gro7b12]  .form-label {
  display: block !important;
  width: auto !important;
  margin-bottom: .25rem !important;
  text-align: left !important;
}

.select-narrow[b-oe0gro7b12]  .dropdown-toggle,
.select-narrow[b-oe0gro7b12]  .form-select,
.select-narrow[b-oe0gro7b12]  .dropdown,
.select-narrow[b-oe0gro7b12]  .bb-select {
  width: 130px !important;
  max-width: 130px !important;
  display: block !important;
}

/* Evita que utilitários forcem 100% de largura */
.select-narrow[b-oe0gro7b12]  .w-100 {
  width: 130px !important;
  max-width: 130px !important;
}

/* Faz a tabela respeitar larguras e quebrar linhas em header e células */
.wrap-table[b-oe0gro7b12]  table {
  table-layout: fixed;
  width: 100%;
}

.wrap-table[b-oe0gro7b12]  th,
.wrap-table[b-oe0gro7b12]  td {
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.wrap-table[b-oe0gro7b12]  th {
  vertical-align: middle !important;
}

/* Em alguns temas o header/cell tem um wrapper interno; herda a regra acima */
.wrap-table[b-oe0gro7b12]  th > * ,
.wrap-table[b-oe0gro7b12]  td > * {
  white-space: inherit !important;
}

.pagina-qualificacao[b-oe0gro7b12]  span,
.pagina-qualificacao[b-oe0gro7b12]  td,
.pagina-qualificacao[b-oe0gro7b12]  th {
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}
/* _content/Boilerplate4Dev/Components/Shared/CultureChooser.razor.rz.scp.css */
/* _content/Boilerplate4Dev/Components/Shared/MainLayout.razor.rz.scp.css */
.page[b-7eiiiajkme] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-7eiiiajkme] {
    flex: 1;
}

.sidebar[b-7eiiiajkme] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-7eiiiajkme] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-7eiiiajkme]  a, .top-row[b-7eiiiajkme]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-7eiiiajkme]  a:hover, .top-row[b-7eiiiajkme]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-7eiiiajkme]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-7eiiiajkme] {
        justify-content: space-between;
    }

    .top-row[b-7eiiiajkme]  a, .top-row[b-7eiiiajkme]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-7eiiiajkme] {
        flex-direction: row;
    }

    .sidebar[b-7eiiiajkme] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-7eiiiajkme] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-7eiiiajkme]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-7eiiiajkme], article[b-7eiiiajkme] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-7eiiiajkme] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-7eiiiajkme] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
