:root {
  /* Paleta principal */
  --color-dark-blue: #27364D;
  --color-institutional-blue: #25366D;
  --color-taupe: #A39383;
  --color-light-taupe: #CAC5B9;
  --color-white: #FFFFFF;
  --color-off-white: #F8F7F5;
  --color-cream: #F3F1ED;
  --color-text: #27364D;
  --color-text-muted: #5A6472;
  --color-text-light: rgba(255, 255, 255, 0.85);
  --color-text-light-muted: rgba(255, 255, 255, 0.65);

  /* WhatsApp */
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #20BD5A;

  /* Tipografia */
  --font-display: 'Poiret One', cursive;
  --font-body: 'Montserrat', sans-serif;

  /* Layout */
  --max-width: 1360px;
  --padding-x: clamp(24px, 5vw, 80px);
  --section-spacing: clamp(80px, 10vw, 140px);
  --section-spacing-sm: clamp(60px, 8vw, 100px);

  /* Transições */
  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 300ms var(--ease-out-expo);
  --transition-base: 500ms var(--ease-out-expo);
  --transition-slow: 800ms var(--ease-out-expo);

  /* Bordas e sombras */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-subtle: 0 4px 24px rgba(39, 54, 77, 0.06);
  --shadow-header: 0 2px 20px rgba(39, 54, 77, 0.08);

  /* Header */
  --header-height: 80px;
}
