
.precario-container {
     max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #d3d5da3b;
    border: 2px solid #c0c7d46d;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.titulo {
    text-align: center;
    font-size: 24px;
    color: #6d624a;
    margin-bottom: 20px;
    margin-top: 60px;
     text-transform: uppercase;
}

.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: #4f4c45c5;
}

/* Estilização dos links dentro do preçário */
.preco a {
    color: #413a2d92;
    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 */
 
    }
}

.rules-container {
    margin-top: 2rem;
    padding: 1rem;
    background: #f9f9f900;
    border-radius: 8px;

}

.rules-container h3 {
    margin-bottom: 1rem;
    color: #6d624a;
 
}

.rules-container ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.rules-container li {
    margin-bottom: 0.5rem;
}