body{
  font-family:'Segoe UI',sans-serif;
  background:#f4f6fc;
  margin:0;  
  padding:0;
}

.content{
  padding:35px;
}

.container {
  max-width: 650px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
  color: #1a237e;
}

label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="password"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  font-size: 15px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #a51400;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

p {
  text-align: justify;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.hidden {
  display: none;
}

button {
  margin-top: 30px;
  width: 100%;
  padding: 14px;
  background-color: #a51400;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #303f9f;
}

.btn-primary{
  display:inline-block;
  background:#a51400;
  color:#fff;
  padding:10px 18px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
}
.btn-primary:hover{background:#2c3b91}

.tabela{
  width:100%;
  border-collapse:collapse;
  margin-top:15px;
}

.tabela th,
.tabela td{
  padding:12px 15px;
  text-align:left;
}
.tabela tbody tr:nth-child(even){background:#f4f6fc}
.tabela th{
  background:#dee2f7;
  font-weight:700;
}
.link-acao{
  color:#a51400;
  text-decoration:none;
  font-weight:600;
}
.link-acao:hover{text-decoration:underline;}

/* ---- LGPD badge ---- */
.lgpd-badge{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  align-items:center;
  gap:6px;
  padding:10px 14px;
  background:#fff;
  color:#1a237e;
  border-radius:30px;
  box-shadow:0 2px 8px rgba(0,0,0,.15);
  font-weight:600;
  text-decoration:none;
  font-size:14px;
  z-index:100;
  transition:background .2s;
}
.lgpd-badge:hover{background:#e8eaf6;}






/* ---------- RESPONSIVO ---------- */
@media(max-width:480px){
  .lgpd-badge{right:10px;bottom:10px;font-size:13px;padding:9px 12px;}
}

@media (max-width: 991px){
  .container{
    width:95%;
    padding:30px 18px;
  }
  .dashboard{flex-wrap:wrap;gap:24px;}
  .dash-card{flex:1 1 45%;max-width:45%;}
  nav{flex-wrap:wrap;gap:20px;}
}

@media (max-width: 768px){
  .dashboard{flex-direction:column;gap:20px;}
  .dash-card{width:100%;max-width:none;}
  .tabela{display:block;overflow-x:auto;}
}

@media (max-width: 480px){
  h1{font-size:24px;}
  h2{font-size:22px;}
  .topbar{font-size:22px;padding:18px 0;}
  .btn,.btn-primary{font-size:17px;padding:13px 26px;}
  nav{gap:14px;padding:10px 0;}
  nav a{padding:6px 6px;}
}


