/* Estilo padrão para desktops */
footer {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
    width: auto ;
    height: 400px;
    background: #000E29;
}

.footer-text {
    color: #FFF;
    font-family: Roboto;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    height: 100px;
    text-align: center;
}

.footer-redes {
    display: flex;
    gap: 80px;
}

.footer-button  {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 372px;
    height: 66px;
    flex-shrink: 0;
    border-radius: 13px;
    background: #CAA45D;
}

.footer-button a {
    text-decoration: none;
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* Media Query para tablets (dispositivos com largura entre 600px e 1024px) */
@media (max-width: 1024px) {
    footer {
        height: auto;
        padding: 30px;
        gap: 40px;
    }

    .footer-text {
        font-size: 26px;
        height: auto;
        padding: 20px;
    }

    .footer-redes {
        gap: 40px;
    }

    .footer-button {
        width: 300px;
        height: 60px;
    }

    .footer-button a {
        font-size: 16px;
    }
}

/* Media Query para celulares (dispositivos com largura até 600px) */
@media (max-width: 600px) {
    footer {
        height: auto;
        padding: 20px;
        gap: 30px;
    }

    .footer-text {
        font-size: 20px;
        height: auto;
        padding: 10px;
    }

    .footer-redes {
        flex-direction: column;
        gap: 20px;
    }

    .footer-button {
        width: 100%;
        height: 50px;
    }

    .footer-button a {
        font-size: 16px;
    }
}
