/* =========================================
   Transição de Página (6 colunas)
   ========================================= */

.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    display: flex;
    z-index: 99999;
    pointer-events: none !important;
}

.transition-col {
    flex: 1;
    height: 100%;
    background-color: var(--cor-primaria);
    transform-origin: bottom;
    transform: scaleY(1);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}
