/* AMUEX · prueba */

:root{
  --bg: #ffffff;
  --text: #111111;
  --muted: #666666;
  --red: #b5161e;
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF UI Display",
               "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

header{
  text-align: center;
  max-width: 680px;
  padding: 2rem 1.5rem;
}

header img{
  display: block;
  margin: 0 auto 1.35rem;
  width: clamp(190px, 30vw, 270px);
  height: auto;
}

.claim{
  font-size: clamp(0,95rem, 1.9vw, 1.15rem);
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.claim strong{
  display: block;
  margin-top: 0.5rem;
  color: var(--text);
  font-weight: 600;
}
