.rodape {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: #fff;
    padding: 60px 20px 30px;
    font-family: 'Inter', sans-serif;
    animation: fadeIn 1s ease-in;
}

.container-rodape {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.logo-e-slogan img {
    max-width: 160px;
    margin-bottom: 10px;
    animation: floatLogo 3s ease-in-out infinite;
}

.logo-e-slogan p {
    font-size: 0.95rem;
    color: #ccc;
}

.institucional h4,
.contato-rapido h4,
.redes-footer h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.institucional p {
    font-size: 0.95rem;
    color: #ccc;
}

.contato-rapido p {
    margin: 6px 0;
    font-size: 0.95rem;
}

.btn-agendar-footer {
    display: inline-block;
    margin-top: 10px;
    background-color: #0077cc;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-agendar-footer:hover {
    background-color: #005fa3;
}

.icones-redes a {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #ccc;
    transition: transform 0.3s ease, color 0.3s ease;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #aaa;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatLogo {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .container-rodape {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .icones-redes a {
        margin-right: 10px;
    }
}