/* Angê — design tokens */
:root {
  /* Paleta */
  --ange-ink: #141414;         /* preto suave */
  --ange-ink-2: #2a2a2a;
  --ange-bone: #F5F1EA;        /* marfim base (fundo principal) */
  --ange-bone-2: #EAE4DA;      /* marfim mais fechado */
  --ange-mist: #E8E6E1;        /* cinza quente delicado */
  --ange-fog: #C9C5BF;
  --ange-rose: #E8CCC2;        /* acento cole\u00e7\u00e3o rose */
  --ange-rose-2: #D9A99A;
  --ange-sage: #4CA686;        /* verde salva — cor de apoio & hover */
  --ange-sage-soft: #D6ECE1;   /* sage mais claro para bg hover suave */
  --ange-sage-ink: #4CA686;    /* mesmo verde para hovers de CTA */
  --ange-butter: #F0E2B8;      /* amarelo manteiga (coleção sunrise) */
  --ange-line: rgba(20,20,20,0.09);
  --ange-line-2: rgba(20,20,20,0.16);
  --ange-muted: rgba(20,20,20,0.52);

  /* Raios */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;
  --r-xl: 14px;
  --r-pill: 999px;

  /* Tipografia */
  --ff: 'Muli', 'Mulish', system-ui, sans-serif;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;

  /* Shadows */
  --sh-1: 0 1px 2px rgba(20,20,20,0.04), 0 6px 18px rgba(20,20,20,0.05);
  --sh-2: 0 4px 14px rgba(20,20,20,0.08);
  --sh-float: 0 20px 60px rgba(20,20,20,0.12);

  /* Easing */
  --ease: cubic-bezier(.22,.61,.36,1);

  /* Container — responsivo até 1920px */
  --container: 1760px;
  --gutter: clamp(16px, 4vw, 80px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; max-width: 100%; }
body {
  font-family: var(--ff);
  font-weight: var(--fw-400);
  color: var(--ange-ink);
  background: var(--ange-bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }

/* Utilitários */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ange-muted);
}
.display {
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 0.98;
}
.h-section {
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}
.h-kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ange-ink);
}
.divider-thin {
  height: 1px;
  background: var(--ange-line);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ange-ink);
  color: #F6F6F4;
}
.btn-primary:hover { background: var(--ange-sage-ink); transform: translateY(-1px); box-shadow: var(--sh-2); }
.btn-ghost {
  background: transparent;
  color: var(--ange-ink);
  border: 1px solid var(--ange-line-2);
}
.btn-ghost:hover { background: var(--ange-sage); color: var(--ange-ink); border-color: transparent; }
.btn-link {
  padding: 0;
  height: auto;
  background: transparent;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}
.btn-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transition: right .35s var(--ease);
}
.btn-link:hover::after { right: 0; }

/* Swatches */
.swatch {
  width: 18px;
  height: 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--ange-line-2);
  display: inline-block;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.swatch:hover { transform: scale(1.15); }
.swatch.is-selected {
  border-color: transparent;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--ange-ink);
}

/* Chips (filtros ativos) */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 12px 0 14px;
  border-radius: var(--r-pill);
  background: var(--ange-ink);
  color: #F6F6F4;
  font-size: 12.5px;
  font-weight: 400;
}
.chip button { opacity: 0.7; }
.chip button:hover { opacity: 1; }

/* Cards genéricos */
.card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #F6F6F4;
}

/* Scroll suave */
html { scroll-behavior: smooth; }

/* Foco acessível */
:focus-visible {
  outline: 2px solid var(--ange-ink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Scroll horizontal sem scrollbar */
.no-scrollbar { scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }
