
.precario-container {
    font-family: Arial, Helvetica, sans-serif;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #91a6cf3b;
    border: 2px solid #4464a354;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.titulo {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #16429bd5;
    margin-bottom: 20px;
    margin-top: 60px;
}

.servicos {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid #16429b18;
}

.descricao {
    flex: 1;
}

.preco {
    font-weight: 600;
    color: #405072e0;
}

/* Estilização dos links dentro do preçário */
.preco a {
    color: #4278e2f1;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
}

.preco a:hover {
    text-decoration: underline;
}

#precario-section {
    padding: 5%;
    margin-top: -180px; /* Padrão para tablets */
}

@media (max-width: 768px) {
    #precario-section {
        margin-top: -100px; /* Ajuste para mobile */
     }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #precario-section {
        margin-top: -150px; /* Ajuste para tablets */
 
    }
}
