@media (max-width: 768px) {
    header, main, footer {padding: 0px 20px;}
    .options-container, .text-content {padding: 0px;}

    /* Cabeçalho */
    header {
        justify-content: center;
    }

    .options-container  {
        width: 100dvw;
    }

    .search-bar-container {
        justify-content: center;
        max-width: 100%;
    }

    #search-bar {
        width: 80%;
        font-size: 0.85rem;
    }

    /* Principal */

    main {
        flex-direction: column;
        gap: 20px;
    }

    .photo-container, .text-container {
        height: fit-content;
        width: 100%;
    }

    #profile-photo {
        width: 320px;
        height: 320px;
    }

    .text-content {
        align-items: center;
        text-align: center;
    }

    /* Rodapé */
    
    .footer-container {
        gap: 10px;
    }

    .footer-text {
        font-size: 0.95rem;
    }
}

/* ---------------------------------------------------------------------------------------------------------- */

@media (max-width: 600px) {
    .text-content {
        gap: 12px;
    }

    #text-description {font-size: 1.2rem;}
    #text-bio {font-size: 1.2rem;}
}

/* Dispositivos Muito Pequenos (Menor que 480px) */
@media (max-width: 480px) {
    #profile-photo {
        height: 220px;
        width: 220px;
    }

    .footer-button {
        padding: 0 8px;
    }
}

@media (max-width: 425px) {
    .footer-text {
        display: none; /* Em telas muito pequenas exibe apenas os ícones para economizar espaço */
    }
}