/* Estilos gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #c9d6ff, #e2e2e2);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  width: 100%;
}

.profile {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.profile img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0a7cc9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

h1 {
  color: #0a7cc9;
  font-size: 2em;
  margin-bottom: 10px;
  text-align: center;
}

h2 {
  font-size: 1.3em;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

p {
  color: #333;
  margin-top: 5px;
  margin-bottom: 15px;
}

ul {
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
  list-style: none;
  position: relative;
  padding-left: 25px;
}

ul li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
}

.safe {
  color: #2e7d32;
}

.safe ul li::before {
  content: "\f00c";
  color: #2e7d32;
}

.alert {
  color: #d90429;
  font-weight: bold;
}

.alert ul li::before {
  content: "\f06a";
  color: #d90429;
}

.badge {
  display: inline-block;
  background: #0a7cc9;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8em;
  margin-top: 10px;
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.8em;
  color: #777;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #0a7cc9;
  color: #fff;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #0561a6;
}

.riscado-vermelho {
  text-decoration: line-through;
  color: #d90429;
  font-weight: bold;
}

/* Estilos para impressão */
@media print {
  body {
    background: white !important;
  }

  .card {
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .btn {
    display: none !important;
  }
}
