:root{
  --bg: #fcfcfc;
  --card: #ffffff;
  --muted: #6b7280;
  --accent: #2563eb;
  --accent-2: #06b6d4;
  --success: #16a34a;
  --radius: 12px;
  --shadow: 0 6px 20px rgba(17,24,39,0.06);
  --maxwidth: 760px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:#111827;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding: 45px 16px;
}

.container{
  width:100%;
  max-width:var(--maxwidth);
}

.title{
  margin:0 0 16px 0;
  font-size:10px;
  font-weight:600;
  color:#0f172a;
}

.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
  margin-bottom:18px;
}

.info-card {
  padding:14px 18px;
   
}

.form label{
  display:block;
  margin-bottom:12px;
  font-size:13px;
  color:var(--muted);
}

.form input[type="text"],
.form input[type="number"],
.form select{
  width:100%;
  padding:10px 12px;
  margin-top:6px;
  border-radius:8px;
  border:1px solid #e6e9ef;
  background:white;
  font-size:15px;
  outline:none;
}

.input-row{
  display:flex;
  gap:8px;
}
.input-row input{flex:1}
.input-row select{width:100px}

.row{display:flex;gap:12px}
.row label{flex:1}

.actions{
  margin-top: 12px;
  display: flex;
  justify-content: center; /* Centra el botón */
  align-items: center;
  gap: 8px;
}


.btn{
  padding:10px 14px;
  border-radius:10px;
  border:1px solid transparent;
  background:#e6eefc;
  color:#0f172a;
  cursor:pointer;
  font-weight:600;
}

.btn.small{padding:8px 10px;font-size:14px}
.btn.primary{
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  color:white;
  box-shadow:0 6px 18px rgba(37,99,235,0.18);
  
}

.result{
  margin-top:14px;
}

.hidden{display:none}

.link-box{
  display:flex;
  gap:8px;
  margin-top:8px;
}

.link-box input{
  flex:1;
  font-size:13px;
  padding:10px 12px;
}

.note{font-size:12px;color:var(--muted);margin-top:8px}

.footer{
  text-align:center;
  color:var(--muted);
  font-size:13px;
  margin-top:8px;
}
.footer a{color:var(--accent); text-decoration:none}

kbd{background:#f3f4f6;border-radius:6px;padding:2px 6px}

/* Logo arriba a la izquierda */
.logo-header {
  position: fixed;
  top: -25px;
  left: -28px;
  z-index: 9999;
}

.logo-header img {
  width: 130px;     /* Ajusta el tamaño aquí si quieres */
  height: auto;
  display: block;
}

@media (max-width: 480px) {
  .logo-header img {
    width: 280px;   /* Más pequeño en celulares */
  }
}


/* Logo arriba a la izquierda */
.logo-header {
  position: fixed;
  top: -25px;
  left: -25px;
  z-index: 9999;
}

.logo-header img {
  width: 380px;      /* Tamaño grande en PC */
  height: auto;
  display: block;
}

/* Tablets */
@media (max-width: 900px) {
  .logo-header img {
    width: 200px;
  }
}

/* Celulares */
@media (max-width: 480px) {
  .logo-header img {
    width: 250px;
  }
}

/* Título a la derecha */
#display-tienda {
  text-align: left;
  margin-bottom: 12px;
}

/* Hacer filas con dos columnas: izquierda y derecha */
.info-card p {
  display: flex;
  justify-content: space-between;  /* izquierda — derecha */
  margin: 6px 0;
}

.info-card strong {
  min-width: 120px; /* ancho fijo para alinear perfecto */
}


.logo-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: white; /* Evita que se mezcle con el fondo */
  padding: 12px;
  box-shadow: var(--shadow);
  border-bottom: 1px solid #e6e9ef;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-header img {
  width: 180px;
  height: auto;
}

/* Espacio para que el contenido no quede debajo del logo */
body {
  margin-top: 100px; /* Ajusta según el alto del logo */
}


@media (max-width: 900px) {
  .logo-header img {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .logo-header img {
    width: 180px;
  }
}
.retry-message {
  text-align: center;
  margin-top: 20px;
  font-size: 1.2em;
  color: #333;
}
.terms p {
  font-size: 16px;      /* Tamaño normal en PC */
  line-height: 1.4;
  color: #555;
}

/* Tablets */
@media (max-width: 1024px) {
  .terms p {
    font-size: 15px;
  }
}

/* Celulares */
@media (max-width: 600px) {
  .terms p {
    font-size: 10px;   /* Más pequeño para que no se vea gigante */
  }
}
.card-logos {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  margin-top: -5px;
}

.card-logos.right {
  justify-content: flex-end; /* A la derecha */
}

.card-logos img {
  height: 40px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.card-logos img:hover {
  opacity: 1;
}

/* Celulares */
@media (max-width: 600px) {
  .card-logos img {
    height: 28px;
  }
}

.info-card {
  font-family: 'Inter', sans-serif;
}

.info-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin: 6px 0;
}

.info-card strong {
  font-weight: 600;
  color: #000;
}
