*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui, Arial;
  background:#f4f1ec;
}

/* CONTENEDOR */
.app{
  width:100%;
  max-width:480px;
  margin:auto;
  padding:20px;
}

/* LOGO */
.logo{
  width:160px;
  display:block;
  margin:0 auto 20px;
}

/* INPUT */
input{
  width:100%;
  padding:16px;
  font-size:16px;
  border-radius:12px;
  border:1px solid #ddd;
  margin-bottom:12px;
}

/* CARDS */
.card{
  background:#fff;
  border-radius:14px;
  padding:14px;
  margin-top:12px;
  box-shadow:0 6px 15px rgba(0,0,0,0.06);
}

/* FILAS */
.row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:15px;
}

/* SELECT */
select{
  width:100%;
  margin-top:10px;
  padding:10px;
  border-radius:10px;
}

/* INFO */
#info{
  text-align:center;
  font-weight:600;
  margin:10px 0;
  color:#6b3f1d;
}

/* DETALLE */
#detalle{
  margin-top:15px;
  font-size:14px;
  line-height:1.5;
}

/* TOTAL */
#total{
  text-align:center;
  font-size:24px;
  font-weight:700;
  color:#b8942f;
  margin-top:18px;
}

/* VERSION */
.version{
  position:fixed;
  bottom:8px;
  right:10px;
  font-size:12px;
  color:#999;
}