.logo{
	max-height: 80px;
}

/* ======================== */
/* RESPONSIVE.CSS - BASE */
/* ======================== */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    /* Exemplo */
    body {
        font-size: 14px;
    }
}

/* Small devices (portrait tablets and large phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .container {
        padding: 0 15px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .menu {
        flex-direction: column;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .sidebar {
        width: 250px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* ======================== */
/* CASOS COMUNS EXTRAS */
/* ======================== */

/* Ocultar algo só no mobile */
@media (max-width: 767.98px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Ocultar algo só no desktop */
@media (min-width: 768px) {
    .hide-desktop {
        display: none !important;
    }
}

/* Centralizar texto no mobile */
@media (max-width: 575.98px) {
    .text-center-mobile {
        text-align: center !important;
    }
}

/* Grid com 2 colunas no mobile */
@media (max-width: 767.98px) {
    .grid-mobile-2col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}
