@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&display=swap');

/* Estilos para o rodapé */
footer {
    width: 100%;
    background-color: #1f2937; /* bg-gray-800 */
    color: white;
    text-align: center;
    padding: 0.75rem 0; /* py-3 */
    margin-top: 2.5rem; /* mt-10 */
    font-family: 'Work Sans', sans-serif;
}

footer .text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
    font-family: 'Work Sans', sans-serif;
}

/* Garantir que o corpo tenha a estrutura correta para o rodapé */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Work Sans', sans-serif;
}

.flex-grow {
    flex-grow: 1;
} 