/* INÍCIO RODAPÉ */
.rodape {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.rodape-div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
}

.rodape-div1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.rodape-div1 a {
    color: #4dffff;
    font-size: 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-decoration: none;
    margin: 5px 0;
    transition: color 0.3s ease;
}

.rodape-div1 a:hover {
    color: #28b4ff;
}

.rodape-div1-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
    width: 100%;
}

.rodape-div1-titulo {
    color: white;
    padding-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.rodape-redes {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.rodape-redes img {
    background-color: transparent;
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.rodape-redes img:hover {
    transform: scale(1.1);
}

.rodape-copy {
    color: white;
    font-size: 0.875rem;
    padding: 15px 0;
    font-weight: 300;
    text-shadow: #28b4ffb7 1px 1px 1px;
    text-align: center;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* FIM RODAPÉ */

/* INÍCIO RESPONSIVIDADE */
/* Tablets (768px+) */
@media (min-width: 768px) {
    .rodape {
        padding: 40px 30px;
    }

    .rodape-div {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: flex-start;
    }

    .rodape-div1 {
        width: 45%;
        margin-bottom: 30px;
        align-items: flex-start;
        text-align: left;
    }

    .rodape-div1-titulo {
        font-size: 1.75rem;
    }

    .rodape-redes {
        justify-content: flex-start;
    }

    .rodape-redes img {
        width: 45px;
        height: 45px;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .rodape {
        padding: 50px 40px;
    }

    .rodape-div1 {
        width: 30%;
        align-items: center;
        text-align: center;
        margin-bottom: 0;
    }

    .rodape-div1:last-child {
        width: 40%;
    }

    .rodape-div1-titulo {
        font-size: 2rem;
    }

    .rodape-redes img {
        width: 50px;
        height: 50px;
    }

    .rodape-copy {
        font-size: 1rem;
    }
}

/* Telas grandes (1440px+) */
@media (min-width: 1440px) {
    .rodape {
        padding: 60px 0;
    }

    .rodape-div {
        max-width: 1400px;
        margin: 0 auto;
    }
}
/* FIM RESPONSIVIDADE */