/* =========================
   RESET
========================= */
*{
  box-sizing:border-box;
  font-family:system-ui,-apple-system,sans-serif;
}

body{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at top,#fff7ed,transparent 60%),
    linear-gradient(180deg,#fff,#f1f5f9);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  color:#111;
  overflow:hidden;
}

/* =========================
   FONDO SUAVE EN MOVIMIENTO
========================= */
body::after{
  content:'';
  position:fixed;
  inset:0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,.03) 0,
      rgba(0,0,0,.03) 1px,
      transparent 1px,
      transparent 60px
    );
  animation:moveBg 30s linear infinite;
  z-index:-1;
}

@keyframes moveBg{
  from{background-position:0 0}
  to{background-position:1200px 0}
}

/* =========================
   WRAP
========================= */
.wrap{
  width:100%;
  max-width:420px;
  display:flex;
  flex-direction:column;
  gap:20px;
  animation:fadeUp .5s ease;
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:none}
}

/* =========================
   BRAND
========================= */
.brand{
  background:#ffffff;
  border-radius:26px;
  padding:26px 20px;
  text-align:center;
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.logo{
  width:350px;
  height:150px;
  margin-bottom:0px;
  animation:float 3s ease-in-out infinite;
}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}

.brand p{
  margin:0;
  font-size:15px;
  font-weight:600;
  color:#475569;
}

/* =========================
   CARD
========================= */
.card{
  background:#ffffff;
  border-radius:28px;
  padding:24px;
  box-shadow:0 18px 36px rgba(0,0,0,.14);
  display:flex;
  flex-direction:column;
  gap:18px;
}

.title{
  text-align:center;
  font-size:16px;
  font-weight:800;
  color:#111;
}

/* =========================
   BOTONES
========================= */
.btn{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px;
  border-radius:22px;
  text-decoration:none;
  color:#111;
  font-size:17px;
  font-weight:800;
  background:#f8fafc;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
  transition:transform .15s, box-shadow .15s;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(0,0,0,.18);
}

.btn:active{
  transform:scale(.96);
}

.icon{
  width:58px;
  height:58px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  background:#e2e8f0;
}

/* =========================
   ROLES
========================= */
.cliente{
  border-left:6px solid #22c55e;
}

.negocio{
  border-left:6px solid #f97316;
}

.repartidor{
  border-left:6px solid #3b82f6;
}

.desc{
  font-size:13px;
  font-weight:600;
  color:#475569;
}

/* =========================
   FOOTER
========================= */
.footer{
  text-align:center;
  font-size:12px;
  font-weight:600;
  color:#64748b;
}

/* =========================
   MOBILE
========================= */
@media(max-width:480px){
  .logo{width:320px;height:150px}
}
