/* ==========================================
   AJUSTES RESPONSIVOS (responsive.css)
========================================== */

/* AJUSTES PARA CELULAR (Telas menores que 768px) */
@media (max-width: 768px) {
    #header .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 8px 12px !important;
        position: relative;
    }

    /* Trava o tamanho da logo em 40px no celular */
    .logo-img {
        height: 40px !important;
        width: auto !important;
        object-fit: contain !important;
    }

    /* Esconde os ícones do desktop no celular */
    .social-desktop {
        display: none !important;
    }

    /* Mostra os ícones sociais no celular entre a logo e o menu */
    .social-mobile {
        display: flex !important;
        margin-left: auto;
        margin-right: 12px;
    }

    /* Estilo do Menu Hambúrguer (3 traços) */
    #menu-btn {
        display: block !important;
        cursor: pointer;
        font-size: 1.8rem;
        background: none;
        border: none;
        color: #1F2937;
        padding: 5px;
    }

    /* Esconde o menu por padrão e prepara a gaveta mobile */
    #header .menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column !important;
        margin: 0 !important;
        padding: 15px 0;
        text-align: center;
        z-index: 999;
    }

    /* Exibe o menu quando o botão for clicado (.active) */
    #header .menu.active {
        display: flex !important;
    }

    #header .menu a {
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid #f1f5f9;
        font-weight: 600;
    }
}

/* AJUSTES PARA DESKTOP (Telas maiores que 768px) */
@media (min-width: 769px) {
    .social-mobile {
        display: none !important;
    }

    .social-desktop {
        display: flex !important;
    }

    #menu-btn {
        display: none !important;
    }

    #header .menu {
        display: flex !important;
    }

    /* Tamanho padrão da logo no Desktop (60px) */
    .logo-img {
        height: 60px !important;
        width: auto !important;
        object-fit: contain !important;
    }
}