/* === MINERVA TERAPIAS – ESTILO PRINCIPAL === */

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #0b1220;
  color: #eaf2ff;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

/* Header */
.header {
  background: rgba(15, 27, 49, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(6px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

/* Links e Botões */
a {
  color: #eaf2ff;
  text-decoration: none;
  transition: 0.2s ease;
}
a:hover {
  opacity: 0.8;
}

.btn, .btn-outline {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 500;
  margin: 5px;
  transition: 0.3s ease;
}

.btn {
  background: linear-gradient(90deg, #1969d2, #0e47a1);
  color: white;
}
.btn:hover {
  transform: scale(1.03);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #eaf2ff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* Cards e Estrutura */
.card {
  background: #0f1b31;
  border-radius: 12px;
  padding: 18px 20px;
  margin: 14px 0;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 800px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Inputs e Formulários */
input, textarea, select {
  width: 100%;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #eaf2ff;
  padding: 10px;
  margin: 6px 0 12px;
  font-size: 15px;
}
label {
  font-size: 14px;
  opacity: 0.9;
}

/* Tabelas */
table {
  width: 100%;
  border-collapse: collapse;
  color: #eaf2ff;
  font-size: 14px;
}
th, td {
  padding: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
th {
  text-align: left;
  font-weight: 600;
  opacity: 0.9;
}

/* Mensagens */
.alert {
  padding: 12px;
  border-radius: 8px;
  margin: 10px 0;
}
.alert-success {
  background: rgba(40,167,69,0.1);
  color: #28a745;
}
.alert-error {
  background: rgba(220,53,69,0.1);
  color: #dc3545;
}

/* Rodapé */
footer {
  text-align: center;
  padding: 16px;
  font-size: 14px;
  color: #b7d3ff;
  opacity: .85;
  margin-top: 40px;
}


.warn { color: #ffd166; }
.card h3 { margin-top: 0; }
