body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.rodape {
    background: linear-gradient(135deg, #003366, #005594);
    color: #ffffff;
}

.rodape-titulo {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.rodape-texto {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.rodape-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rodape-lista li {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.rodape-lista i {
    margin-right: 8px;
}

.rodape-redes a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.rodape-redes a:hover {
    background-color: #ffffff;
    color: #0a1fd8;
    transform: translateY(-2px);
}

.img-rodape {
    width: 150px;
    height: auto;
}

.rodape-linha {
    border-color: white;
}

/* Ajuste responsivo para celular */
@media (max-width: 768px) {
    .rodape-content {
        flex-direction: column;
        gap: 1rem;
    }

    .img-rodape {
        width: 80px;
    }

    .texto-rodape {
        font-size: 1rem;
        margin-top: 0.8rem;
        margin-bottom: 0.8rem;
        text-align: center;
        width: 100%;
    }

    .versao {
        display: block;
        opacity: 0.75;
    }
}