
/* ============================= */
/*      ESTILOS PARA TABLETS     */
/* ============================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .btn-tabletmenu {
        display: block !important;
        position: relative;
        margin-left: 1rem;
        width: 3.2rem;
        height: 3.2rem;
        font-size: 2rem;
        border-radius: 0.4rem;
        border: 1px solid #2a5b2f;
        background: #f3f3f3;
        cursor: pointer;
        z-index: 12000;
    }
    .tablet-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 220px;
        height: 100vh;
        background: #fff;
        box-shadow: 2px 0 8px rgba(0,0,0,0.1);
        z-index: 1000;
        flex-direction: column;
        padding-top: 80px;
        transition: transform 0.3s ease, opacity 0.3s;
        transform: translateX(-100%);
        opacity: 0;
        pointer-events: none;
        display: flex;
    }
    .tablet-sidebar.aberta {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }
    .tablet-sidebar[hidden] {
        display: none;
    }
    .btn-tabletinicio, .btn-tabletsobre, .btn-tabletservicos, .btn-tabletcontato {
        width: 90%;
        margin: 0.5rem auto;
        padding: 0.8rem 0;
        border: 1px solid #2a5b2f;
        border-radius: 0.3rem;
        background: #f3f3f3;
        font-family: "Outfit", sans-serif;
        font-size: 1.1rem;
        cursor: pointer;
        text-align: center;
        transition: background 0.2s;
    }
    .btn-tabletinicio:hover, .btn-tabletsobre:hover, .btn-tabletservicos:hover, .btn-tabletcontato:hover {
        background: #e0e0e0;
    }
    /* Esconde botões e menus do desktop e mobile em tablets */
    .btn-inicio, .btn-sobre, .btn-servicos, .btn-contato,
    .btn-mobile-menu, .btn-iniciomobile, .btn-sobremobile, .btn-servicosmobile, .btn-contatomobile,
    #mobile-menu {
        display: none !important;
    }
}





@media (max-width: 768px), (min-width: 1025px) {
    .btn-tabletmenu, .tablet-sidebar {
        display: none !important;
    }
}