/* Estilos do Footer para Desktop */
.site-footer {
    background: linear-gradient(to right, #00274d, #00509d);
    color: #ffffff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.pre {
    width: 10%;
}

.meio {
    width: 5%;
}

.pos {
    width: 20%;
}

.footer-logo-section {
    width: 16%;
    text-align: center; 
    margin: 0 auto; 
}

.footer-logo-section img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.footer-logo-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px; /* Adicionar espaço entre logo e descrição */
}

/* Seções de links do footer */
.footer-links {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
}

.footer-column {
    margin-right: 10px;
    margin-left: 30px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

/* Parte inferior do footer (Política e Copyright) */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Estilo responsivo para Mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Remover ou ajustar as classes .pre, .meio, .pos */
    .pre, .meio, .pos {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Ajustes na seção de logo */
    .footer-logo-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-logo-section img {
        width: 100px; /* Reduz o tamanho da logo para mobile */
        margin-bottom: 10px;
    }

    .footer-logo-section p {
        font-size: 12px;
        line-height: 1.4;
        margin-top: 8px;
    }

    /* Ajustes nas seções de links */
    .footer-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-column {
        margin: 10px 0;
        width: 80%; /* Ajusta a largura para melhor visualização */
    }

    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer-column ul li {
        margin-bottom: 8px;
    }

    .footer-column ul li a {
        font-size: 14px;
    }

    /* Ajustes na parte inferior do footer */
    .footer-bottom {
        padding-top: 15px;
        margin-top: 15px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}
