* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fondo actualizado */
  background: #a17b2d25;
  color: #111827;
}

.container {
  width: 100%;
  max-width: 480px;
  padding: 2rem 1.5rem 2.5rem;
}

.card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
  text-align: center;
  position: relative;
}

/* NUEVO: contenedor del logo */
.logo-wrapper {
  width: 240px;
  height: 240px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* NUEVO: imagen del logo */
.logo-img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

h1 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.06);
  color: #047857;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.3);
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

button {
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
}

button:active {
  transform: scale(0.98);
  box-shadow: none;
}

.btn-primary {
  /*background: linear-gradient(to right, #4f46e5, #6366f1);*/
  background: #a17b2d;
  color: #f9fafb;
  box-shadow: 0 10px 25px #a17b2d25;
}

.btn-primary:hover {
  /*background: linear-gradient(to right, #4338ca, #4f46e5);*/
  background: #a17b2d25;
  color: #a17b2d;
}

.btn-outline {
  background: #f9fafb;
  color: #111827;
  border: 1px solid #e5e7eb;
}

.btn-outline span.platform {
  font-size: 0.8rem;
  color: #6b7280;
}

.btn-outline:hover {
  background: #a17b2d25;
  border-color: #fff6e625;
  color: #a17b2d;
}

.helper-text {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.4;
}

.helper-text strong {
  color: #4b5563;
  font-weight: 600;
}

.privacy-link-wrapper {
  margin-top: 1rem;
  text-align: center;
}

.privacy-link {
  font-size: 0.75rem;
  color: #6b7280;
  text-decoration: underline;
  cursor: pointer;
}

.privacy-link:hover {
  text-decoration: none;
  color: #4b5563;
}
/* Selector de idioma */
.lang-switcher {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #6b7280;
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  opacity: 0.6;
}

.lang-btn-active {
  font-weight: 600;
  opacity: 1;
  text-decoration: underline;
}

.lang-btn:hover {
  opacity: 1;
}

.lang-separator {
  opacity: 0.6;
}

/* Link de privacidad */
.privacy-link-wrapper {
  margin-top: 1rem;
  text-align: center;
}

.privacy-link {
  font-size: 0.75rem;
  color: #6b7280;
  text-decoration: underline;
  cursor: pointer;
}

.privacy-link:hover {
  text-decoration: none;
  color: #4b5563;
}


@media (min-width: 640px) {
  .card {
    padding: 2.25rem 2rem;
  }
}
