.footer {
background-color: #ffffff;
padding: 40px 20px;
font-family: 'Poppins', sans-serif;
border-top: 1px solid #e0e0e0;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}

.footer-left {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.footer-logo {
height: 100px;
margin-bottom: 10px;
}

.footer-slogan {
font-size: 2rem;
color: #023059;
}

.footer-right {
text-align: right;
color: #000000;
font-size: 0.95rem;
}

.footer-right p {
margin: 10px 0;
}

.footer-right a {
color: #000000;
text-decoration: none;
}

.footer-right a:hover {
text-decoration: underline;
}  

/* Responsivo para telas pequenas */
@media (max-width: 768px) {
    .footer-container {
    flex-direction: column;
    text-align: center;
    }

    .footer-left,
    .footer-right {
    align-items: center;
    justify-content: center;
    }

    .footer-logo {
    margin: 0 auto;
    }
    }