/* De León Indumentaria — En construcción */
:root{
  --bg:#0b0b0c;
  --card:#141416;
  --text:#e9e9ec;
  --muted:#a1a1aa;
  --brand:#d1a955; /* dorado suave */
  --accent:#2a2a2f;
  --ring: rgba(209,169,85,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  background: radial-gradient(1200px 600px at 20% 0%, #111 0%, var(--bg) 70%),
              radial-gradient(900px 500px at 100% 100%, #16161a 0%, var(--bg) 70%);
  color:var(--text);
  line-height:1.5;
}

.wrap{
  min-height:100%;
  display:grid;
  place-items:center;
  padding: clamp(24px, 5vw, 60px);
}

.card{
  width:min(920px, 100%);
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)) var(--card);
  border:1px solid #1f1f22;
  border-radius:28px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 10px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.03);
  text-align:center;
}

.logo{
  display:block;
  margin: 0 auto 16px auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.35));
  max-width: 45vw;
  height:auto;
}

h1{
  margin: 8px 0 8px;
  font-size: clamp(24px, 3.5vw, 40px);
  letter-spacing:.3px;
}

.lead{
  color:var(--muted);
  margin: 0 auto 18px;
  max-width:64ch;
}

.status{
  display:flex;
  justify-content:center;
  gap:10px;
  margin: 10px 0 24px;
}

.dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--brand);
  animation: blink 1.4s infinite ease-in-out both;
  box-shadow: 0 0 0 6px var(--ring);
}
.dot:nth-child(2){ animation-delay:.2s }
.dot:nth-child(3){ animation-delay:.4s }

@keyframes blink{
  0%,80%,100%{opacity:.2; transform:translateY(0)}
  40%{opacity:1; transform:translateY(-4px)}
}

.cta{ display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-bottom: 18px;}

.btn{
  background: var(--brand);
  color:#1a1a1a;
  border:0;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight:600;
  text-decoration:none;
  display:inline-block;
  transition: transform .12s ease, filter .12s ease, box-shadow .2s ease;
  box-shadow: 0 10px 24px rgba(209,169,85,.25);
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.03) }
.btn:active{ transform: translateY(0) scale(.98) }

.btn-outline{
  background: transparent;
  color: var(--text);
  border: 1px solid #2b2b2f;
  box-shadow:none;
}
.btn-outline:hover{ border-color:#3b3b41 }

.suscribe{
  display:flex; gap:10px; justify-content:center; flex-wrap:wrap;
  margin: 4px 0 20px;
}
.suscribe input{
  width:min(340px, 80vw);
  padding:12px 14px;
  border-radius:12px;
  border:1px solid #2b2b2f;
  background:#0f0f12;
  color:var(--text);
  outline:none;
}
.suscribe input:focus{ border-color: var(--brand); box-shadow:0 0 0 6px var(--ring) }
.suscribe button{
  padding:12px 16px;
  border-radius:12px;
  border:1px solid #2b2b2f;
  background: var(--accent);
  color:var(--text);
  cursor:pointer;
}
.suscribe button:hover{ filter:brightness(1.05) }

.foot{
  color:var(--muted);
  font-size:.95rem;
  margin:0;
}

.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* Responsive tweaks */
@media (max-width:420px){
  .cta{ gap:8px }
  .btn{ padding:10px 14px }
}

.btn-whatsapp {
  background-color: #25D366; /* verde WhatsApp */
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;   /* igual que .btn */
  border-radius: 999px; /* 👈 hace que sea redondo/pill */
  font-weight: 600;
  text-decoration: none;
  transition: transform .12s ease, filter .12s ease, box-shadow .2s ease;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .25);
}

.btn-whatsapp:hover {
  background-color: #1ebe5c;
  color: #fff;
  transform: translateY(-1px);
  filter: brightness(1.05);
}


/* Si querés usar un ícono con Unicode (emoji) */
.btn-whatsapp::before {
  content: "💬";
}

.btn-instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .12s ease, filter .12s ease, box-shadow .2s ease;
  box-shadow: 0 10px 24px rgba(221, 42, 123, .35);
}

.btn-instagram:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}



