/* MIMOS — Design tokens */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors — paleta boho-chic terrosa da marca */
  --color-cream: #F5F0E1;
  --color-cream-deep: #EFE6D0;
  --color-sand: #E4D5BC;
  --color-choc: #3B2A21;
  --color-choc-soft: #5A4636;
  --color-terracotta: #C46A4B;
  --color-terracotta-dark: #A8543A;
  --color-mustard: #C9973E;
  --color-olive: #6B7353;
  --color-olive-dark: #545C40;
  --color-white: #FFFFFF;

  --color-bg: var(--color-cream);
  --color-surface: var(--color-white);
  --color-surface-alt: var(--color-sand);
  --color-text: var(--color-choc);
  --color-text-muted: var(--color-choc-soft);
  --color-accent: var(--color-terracotta);
  --color-accent-2: var(--color-mustard);
  --color-accent-3: var(--color-olive);
  --color-border: rgba(59, 42, 33, 0.14);

  /* Typography */
  --font-heading: 'Cormorant', serif;
  --font-body: 'Montserrat', sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.5rem;
  --fs-xl: 2rem;
  --fs-2xl: clamp(2.25rem, 4vw, 3.25rem);
  --fs-3xl: clamp(3rem, 6vw, 5rem);
  --fs-4xl: clamp(3.5rem, 9vw, 7.5rem);

  --lh-tight: 1.1;
  --lh-snug: 1.3;
  --lh-body: 1.7;

  --ls-wide: 0.14em;
  --ls-widest: 0.24em;

  /* Spacing — base 8px */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;
  --sp-32: 8rem;
  --sp-48: 12rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(59, 42, 33, 0.08);
  --shadow-md: 0 8px 24px rgba(59, 42, 33, 0.12);
  --shadow-lg: 0 24px 60px rgba(59, 42, 33, 0.18);

  /* Motion */
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 600ms;

  /* Layout */
  --container-max: 1320px;
  --container-pad: clamp(1.25rem, 5vw, 4rem);

  /* Z-index scale */
  --z-base: 1;
  --z-sticky: 10;
  --z-nav: 20;
  --z-overlay: 30;
  --z-modal: 50;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * , *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: var(--lh-tight);
  margin: 0;
}

p { margin: 0; }

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

button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

button { cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--color-terracotta);
  outline-offset: 3px;
}
