body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #818ba5, #d5a03d);
  color: #333;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
}

/* LOGO */
.logo-container {
  margin-bottom: 10px;
  text-align: center;
}

/* LOGO CHIQUITO ARRIBA IZQUIERDA */
.logo-mini {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 100px;
  height: auto;
  opacity: 0.9;
  z-index: 1000;
}

.logo-mini:hover {
  opacity: 1;
}

/*RESPONSIVE (celular) */
@media (max-width: 768px) {
  .logo-mini {
    width: 100px;
    top: 20px;
    left: 20px;
  }
}



.logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}


.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #00c853;
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  width: 80%;
  max-width: 350px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: fadeIn 0.6s ease;
}

.icon {
  font-size: 40px;
  margin-bottom: 10px;
}

h1 {
  font-size: 22px;
  margin-bottom: 20px;
}

.price-container {
  font-size: 42px;
  font-weight: bold;
  color: #00c853;
  margin-bottom: 15px;
}

.currency {
  font-size: 24px;
  vertical-align: top;
}

.info {
  font-size: 14px;
  color: #777;
}

.error {
  color: rgb(255, 127, 53);
  margin-top: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}