/* style.css -- estilos para la zona pública (clientes)
   Diseño minimalista: fondo blanco, texto negro, botones grises. */

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111111;
}

/* Header fijo para clientes */
.header-public {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #ffffff;
  border-bottom: 1px solid #dddddd;
  display: flex;
  align-items: center;
  padding: 0 10px;
  z-index: 1000;
}

.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
}

.header-left {
  flex: 0 0 auto;
}

.header-center {
  flex: 1 1 auto;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
}

.header-right {
  flex: 0 0 auto;
  gap: 4px;
}

.logo-img {
  height: 40px;
  width: auto;
}

#home-link {
  text-decoration: none;
  color: #111111;
  font-weight: 500;
}

.lang-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#lang-select {
  font-size: 0.8rem;
  border-radius: 999px;
  border: 1px solid #cccccc;
  padding: 2px 8px;
  background: #ffffff;
}

/* Contenido principal */
.landing {
  max-width: 480px;
  margin: 0 auto;
  padding: 80px 16px 40px; /* espacio para header fijo */
}

/* Hero con logo circular estilo linktree */
.hero {
  text-align: center;
  margin-bottom: 24px;
}

.hero .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 12px;
}

.hero h1 {
  margin: 4px 0;
  font-size: 1.6rem;
}

.hero p {
  margin: 0;
  font-size: 0.95rem;
  color: #555555;
}

.block {
  margin-bottom: 20px;
}

.block h2 {
  font-size: 0.95rem;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #444444;
}

/* Botones tipo linktree */
.btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 12px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: #f2f2f2;
  color: #111111;
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid #dddddd;
}

.btn:hover {
  background: #e5e5e5;
}
