/* ==========================================================================
   ARTFÉ Variedades — tokens, reset e tipografia
   ========================================================================== */

:root {
  --color-pink: #ff2d87;
  --color-pink-dark: #e01870;
  --color-pink-soft: #ffe4f1;
  --color-yellow: #ffcc00;
  --color-yellow-dark: #f5b800;
  --color-purple: #4b1d95;
  --color-purple-deep: #3a1578;
  --color-purple-soft: #f3e8ff;
  --color-blue: #2ea8ff;
  --color-blue-deep: #1e6fe8;
  --color-orange: #ff8a00;
  --color-green: #22c55e;
  --color-red: #ef4444;

  --color-text: #1f2937;
  --color-text-soft: #4b5563;
  --color-muted: #6b7280;
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-soft: #f7f8fb;
  --color-border: #e5e7eb;
  --color-shadow: rgba(31, 41, 55, 0.08);

  --font-family: "Nunito", "Segoe UI", Tahoma, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 12px var(--color-shadow);
  --shadow-md: 0 10px 28px rgba(31, 41, 55, 0.12);
  --shadow-pink: 0 8px 18px rgba(255, 45, 135, 0.28);

  --container: 1240px;
  --header-offset: 168px;
  --transition: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 170px;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.45;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 1000;
  background: var(--color-purple);
  color: var(--color-white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 12px;
}
