

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}





body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
}


/* ---------- servicos ---------- */

.servicos-container {
  text-align: center;
  background: #f7f8fa;
  padding: 60px 20px;
 
  color: #222;
}

h1, h2 {
  font-weight: 600;
}


.titulo-servicos h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #1b1b1b;
}

.icones-servicos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #555;
}

.icones-servicos span {
  background: #fff;
  border: 1px solid #ddd;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

hr {
  width: 80%;
  margin: 20px auto;
  border: none;
  border-top: 2px solid #ccc;
}


.status-servico {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  margin: 50px auto;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.status-servico h2 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: #d62828; 
}

.status-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.status-btn {
  background-color: #e9ecef;
  border: none;
  border-radius: 10px;
  padding: 12px 40px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: default;
  width: 220px;
  color: #333;
  box-shadow: inset 0 -2px 0 #ccc;
}

.status-icon {
  font-size: 1.8rem;
}


.relatorio-servico {
  margin-top: 50px;
}

.relatorio-servico h2 {
  font-size: 1.5rem;
  color: #1b1b1b;
  margin-bottom: 20px;
}

.relatorio-caixa {
  border-radius: 15px;
  background-color: #fff;
  padding: 25px 30px;
  max-width: 700px;


  margin: 0 auto;
  font-size: 1rem;
  color: #444;
  
  text-align: justify;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #d62828;

}


.status-btn[data-status="Aguardando"] {
  background-color: #fff3cd;
  color: #664d03;
  box-shadow: inset 0 -2px 0 #ffa726;
}

.status-btn[data-status="Em Andamento"] {
  background-color: #cfe2ff;
  color: #084298;
  box-shadow: inset 0 -2px 0 #42a5f5;
}

.status-btn[data-status="Concluído"] {
  background-color: #d1e7dd;
  color: #0f5132;
  box-shadow: inset 0 -2px 0 #66bb6a;
}






