/* ===== RESPONSIVO DA LOGO ===== */

/* Celulares */
@media (max-width: 600px) {
    .cartlogo img {
        width: 95%;
        max-width: 380px;
    }
}

/* Tablets */
@media (min-width: 601px) and (max-width: 900px) {
    .cartlogo img {
        width: 80%;
        max-width: 550px;
    }
}

/* Desktop */
@media (min-width: 901px) {
    .cartlogo img {
        width: 70%;
        max-width: 750px;
    }
}


/* Celular */
@media (max-width: 600px) {
    .aviso-img img {
        height: 420px;
        max-height: 70vh;
    }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 900px) {
    .aviso-img img {
        height: 520px;
    }
}

/* Desktop */
@media (min-width: 901px) {
    .aviso-img img {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .tabela-valores {
        overflow-x: auto;
    }

    .tabela-valores table {
        min-width: 700px;
    }
}
/* ===== TABELA FIXA NO CELULAR ===== */

@media (max-width: 768px) {

    .tabela-valores {
        padding: 15px;
    }

    .tabela-valores table {
        width: 100%;
        table-layout: fixed;
        word-wrap: break-word;
    }

    .tabela-valores th,
    .tabela-valores td {
        font-size: 13px;
        padding: 8px;
        word-break: break-word;
    }

    /* Esconde colunas menos importantes */
    .tabela-valores th:nth-child(1),
    .tabela-valores td:nth-child(1),
    .tabela-valores th:nth-child(4),
    .tabela-valores td:nth-child(4),
    .tabela-valores th:nth-child(5),
    .tabela-valores td:nth-child(5) {
        display: none;
    }

    /* Destaque do total */
    .tabela-valores td:last-child {
        font-weight: bold;
        color: #255aff;
    }
}


/* ===== TITULO MOBILE ===== */
@media (max-width: 600px) {

    h1.titulo {
        font-size: 24px !important;
        padding: 6px 10px !important;
        line-height: 1.2 !important;
        max-width: 95% !important;
    }

}

@media (max-width: 600px) {
    .grid-servicos {
        flex-direction: column;
    }

    .col {
        width: 100%;
        text-align: center;
    }

    .numero {
        font-size: 20px;
    }
}

@media (max-width: 600px) {

    .linhas {
        flex-direction: column;
    }

    .lado {
        width: 100%;
    }

    .servico {
        text-align: center;
    }

    .numero {
        text-align: center;
        font-size: 20px;
    }
}