/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Cabeçalho */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header img {
  height: 40px;
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-actions button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #1351B4;
  margin-left: 15px;
}

/* Modal */
.modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  max-width: 600px;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-header {
  background-color: #1351B4;
  color: white;
  padding: 15px;
  text-align: center;
  border-radius: 8px 8px 0 0;
}

.modal-body {
  padding: 20px;
  color: #333;
  text-align: center;
}

.modal-body h1 {
  font-size: 22px;
  margin-bottom: 10px;
}

.modal-body p {
  font-size: 16px;
  margin-bottom: 10px;
}

/* Estilo para o valor */
#valor-beneficio {
  font-weight: bold;
  color: #1351B4;
}

/* Estilo comum para botões */
button {
  width: auto;
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 25px;
  background: #1351B4;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  text-align: center;
  display: inline-block;
  border: none;
  outline: none;
}

button:hover {
  background: #0d3d8a;
}

/* Media Query para telas pequenas (mobile) */
@media (max-width: 768px) {
  .modal {
    padding: 10px;
  }

  .modal-header {
    padding: 10px;
  }

  .modal-body button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
  }

  /* Cabeçalho */
  header {
    padding: 10px 10px;
  }

  header img {
    height: 30px;
  }

  .header-actions button {
    font-size: 12px;
    margin-left: 10px;
  }

  /* Garantir que o botão no beneficio.html fique igual ao beneficio-suspensao.html */
  .finalizar-btn {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
  }
}
