/* ===========================================
   PLAZA ACQUA LIVING - Variáveis CSS
   =========================================== */

/* ===== FONTES - ARTIFEX CF ===== */
@font-face {
  font-family: 'Artifex CF';
  src: url('../fonts/Artifex CF Extra Light.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Artifex CF';
  src: url('../fonts/Artifex CF Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Artifex CF';
  src: url('../fonts/Artifex CF Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Artifex CF';
  src: url('../fonts/Artifex CF Book.otf') format('opentype');
  font-weight: 450;
  font-style: normal;
}

@font-face {
  font-family: 'Artifex CF';
  src: url('../fonts/Artifex CF Demi Bold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Artifex CF';
  src: url('../fonts/Artifex CF Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Artifex CF';
  src: url('../fonts/Artifex CF Extra Bold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Artifex CF';
  src: url('../fonts/Artifex CF Heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

/* ===== VARIÁVEIS CSS ===== */
:root {
  /* Cores principais (extraídas dos SVGs) */
  --color-primary: #eed9d8;        /* Verde principal (logo) */
  --color-primary-dark: #533f4f;   /* Verde escuro (elementos) */
  --color-accent: #8aa789;         /* Verde ícones */
  --color-dark: #634f5d;           /* Cinza escuro (barra/textos) */

  /* Botões CTA */
  --color-cta: #eed9d8;            /* Verde vibrante para CTAs */
  --color-cta-hover: #634f5d;      /* Verde CTA hover */

  /* Cores de destaque */
  --color-highlight: #0ea5e9;      /* Azul para links/destaques */

  /* Neutros */
  --color-white: #FFFFFF;
  --color-off-white: #F8F9FA;
  --color-off-white-warm: #F8F6F3;   /* Bege claro para seções */
  --color-green-light: #F5F7F4;      /* Verde muito claro para seções */
  --color-gray-light: #E5E7EB;
  --color-gray: #6B7280;
  --color-gray-dark: #374151;
  --color-black: #1A1A1A;

  /* Tipografia */
  --font-heading: 'Artifex CF', Georgia, serif;
  --font-body: 'Artifex CF', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Tamanhos de fonte */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */
  --text-5xl: 3rem;       /* 48px */
  --text-6xl: 3.75rem;    /* 60px */

  /* Pesos de fonte */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Espaçamentos */
  --space-xs: 0.25rem;    /* 4px */
  --space-sm: 0.5rem;     /* 8px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 1.5rem;     /* 24px */
  --space-xl: 2rem;       /* 32px */
  --space-2xl: 3rem;      /* 48px */
  --space-3xl: 4rem;      /* 64px */
  --space-4xl: 6rem;      /* 96px */

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1.5rem;

  /* Bordas */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

  /* Transições */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
}
