:root{
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.10);

  /* Dorado-ish (podés ajustar a tu tono exacto) */
  --gold: #caa14a;
  --gold-2: #e6c77a;

  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  --radius: 22px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.wrap{
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.card{
  width: 100%;
  max-width: 460px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 18px 18px;
  position: relative;
  overflow: hidden;
}

/* Glow sutil, pro pero sin gritar */
.card::before{
  content:"";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(202,161,74,.18), transparent 60%);
  pointer-events: none;
}

.logo-box{
  display: grid;
  place-items: center;
  margin-top: 6px;
}

.logo{
  width: min(240px, 70vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(15,23,42,.10));
}

.brand{
  margin: 14px 0 4px;
  font-size: 22px;
  letter-spacing: 0.14em;
  text-align: center;
  font-weight: 700;
}

.tagline{
  margin: 0 0 18px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.links{
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.btn{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  background: #fff;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  position: relative;
  overflow: hidden;
}

/* hover suave (desktop) */
.btn:hover{
  transform: translateY(-2px);
  border-color: rgba(202,161,74,.35);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

/* shine */
.btn::after{
  content:"";
  position:absolute;
  top: -40%;
  left: -40%;
  width: 60%;
  height: 200%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, transparent, rgba(202,161,74,.12), transparent);
  opacity: 0;
  transition: opacity .2s ease, transform .4s ease;
}

.btn:hover::after{
  opacity: 1;
  transform: translateX(180%) rotate(20deg);
}

.icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(202,161,74,.25);
  background: linear-gradient(180deg, rgba(202,161,74,.10), rgba(202,161,74,.03));
  color: var(--gold);
}

.icon svg{
  width: 22px;
  height: 22px;
}

.txt{
  display: grid;
  line-height: 1.1;
  flex: 1;
}

.txt strong{
  font-size: 15px;
  font-weight: 700;
}

.txt small{
  margin-top: 3px;
  font-size: 12.5px;
  color: var(--muted);
}

.chev{
  color: rgba(15,23,42,.55);
  font-weight: 700;
}

.footer{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px dashed rgba(15,23,42,.16);
  flex-wrap: wrap;
}

.ghost{
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}

.ghost:hover{
  background: rgba(202,161,74,.10);
  color: var(--text);
}

.dot{ color: rgba(15,23,42,.25); }

.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Mobile comfy */
@media (max-width: 380px){
  .card{ padding: 22px 14px 14px; }
  .brand{ font-size: 20px; }
}
