/* Estilos adicionais para a Ouvidoria SPA */
body {
    overflow-x: hidden;
}

/* Transições suaves entre passos */
.container {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.spa-hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.spa-visible {
    display: flex;
    /* ou block, dependendo do layout */
    opacity: 1;
    pointer-events: auto;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar se necessário */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}