@charset "UTF-8";

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --crema: #F6F2E9;
  --crema-sombra: #EAE3D4;
  --rojo: #B93226;
  --rojo-tinta: #8F2418;
  --blanco: #FDFCF9;

  --f-display: 'Fredoka', 'Trebuchet MS', sans-serif;
  --f-body: 'Outfit', 'Segoe UI', sans-serif;

  --radio: 28px;
  --margen: clamp(20px, 5vw, 72px);

  --fs-body: clamp(1rem, 0.92rem + 0.4vw, 1.2rem);
  --fs-etiqueta: clamp(0.72rem, 0.66rem + 0.3vw, 0.9rem);
  --fs-titular: clamp(2rem, 1.2rem + 3.6vw, 4.4rem);
  --fs-statement: clamp(3rem, 12.5vw, 13rem);

  --dur: 0.7s;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset mínimo ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scrollbar-width: thin;
  scrollbar-color: var(--rojo) var(--crema);
}

body {
  background: var(--crema);
  color: var(--rojo-tinta);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; user-select: none; -webkit-user-drag: none; }

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.02;
  color: var(--rojo);
  text-wrap: balance;
}

ul { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--rojo); color: var(--crema); }

:focus-visible {
  outline: 3px solid var(--rojo);
  outline-offset: 4px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

/* El punto rojo: la firma de la marca */
.punto {
  display: inline-block;
  width: 0.9em; height: 0.9em;
  border-radius: 50%;
  background: var(--rojo);
  flex: none;
}
