.footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Adiciona margem no conteúdo para não sobrepor o footer */
body {
    margin-bottom: 50px;
}

/* Responsividade */
@media (max-width: 480px) {
    .footer {
        font-size: 12px;
        padding: 12px 0;
    }
} 