/* === EuroTask — Estilo moderno tipo app === */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f8f8f8;
  color: #333;
}

header.topbar {
  background-color: #e53935;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
}

header .brand {
  font-weight: 600;
  font-size: 18px;
}

header .actions .btn {
  background: white;
  color: #e53935;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.container {
  padding: 15px;
  max-width: 500px;
  margin: auto;
}

/* === Carteira === */
.card.wallet {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 20px;
  text-align: center;
  padding: 20px;
}

.card.wallet img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}

.card.wallet h3 {
  margin: 10px 0;
  color: #444;
}

.saldo {
  font-size: 32px;
  font-weight: 600;
  color: #222;
}

small {
  color: #777;
}

.btn-main {
  background-color: #e53935;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
  width: 100%;
}

.btn-main:hover {
  background-color: #c62828;
}

/* === Botões secundários === */
.actions-row {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.actions-row button, .actions-row a {
  background: #ffe5e5;
  color: #e53935;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.actions-row button:hover {
  background: #ffcccc;
}

.actions-row i {
  font-size: 18px;
  margin-bottom: 5px;
}

/* === Tarefas === */
.card.tasks {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 15px;
}

.task {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.task:last-child {
  border-bottom: none;
}

.task .desc {
  color: #555;
  font-size: 14px;
  margin-top: 5px;
}

.btn.small {
  background: #e53935;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}

.btn.small.success {
  background: #4caf50;
}

.success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  text-align: center;
}

.muted {
  color: #777;
  text-align: center;
  padding: 20px;
}

/* Responsividade */
@media (max-width: 600px) {
  .actions-row {
    gap: 10px;
  }
  .actions-row button {
    width: 60px;
    height: 60px;
  }
}
.btn-saque {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    transition: 0.2s;
}
.btn-saque:hover { background-color: #218838; }
.btn-saque:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
.btn-done {
    background-color: #ccc;
    color: #444;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: not-allowed;
}
.actions-row {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}
.actions-row button {
  background: #e53935;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}
.actions-row button:hover {
  background: #c62828;
}

/* MODAL POPUP */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-align: left;
  position: relative;
}
.modal-content h2 {
  color: #e53935;
  margin-top: 0;
  text-align: center;
}
.modal-content .deposit-info {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
}
.modal-content .deposit-info p {
  font-size: 14px;
  margin: 4px 0;
}
.copy-box {
  display: flex;
  margin-top: 10px;
}
.copy-box input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 8px 0 0 8px;
}
.copy-box button {
  background: #43a047;
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  padding: 8px 12px;
}
.copy-box button:hover {
  background: #2e7d32;
}
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
  color: #666;
}
.note {
  font-size: 13px;
  color: #666;
  text-align: center;
  margin-top: 10px;
}
.alert-info {
  background: linear-gradient(135deg, #ffeb3b, #ff9800);
  color: #212121;
  border-radius: 15px;
  padding: 18px 20px;
  margin: 15px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: "Poppins", sans-serif;
  text-align: left;
  animation: fadeIn 0.6s ease-in-out;
}
.alert-info h3 {
  margin-top: 0;
  color: #d32f2f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.alert-info p {
  margin: 6px 0;
  line-height: 1.5;
  font-size: 15px;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.task.premium {
  border: 1px solid #ffcccc;
  background: #fff4f4;
  cursor: pointer;
  transition: 0.3s;
}

.task.premium:hover {
  background: #ffecec;
  transform: scale(1.01);
}
