/* ===========================
   DESIGN TOKENS — IKP Redesign
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* ── Primárias ── */
  --gold-primary: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #8B6914;

  /* ── Neutros ── */
  --off-white: #F9F7F2;
  --cream: #F0EBE0;
  --charcoal: #1C1C1E;
  --warm-gray: #6B6560;
  --light-border: #E2DDD5;

  /* ── Funcional ── */
  --white: #FFFFFF;
  --cta-bg: #C9A84C;
  --cta-text: #1C1C1E;
  --whatsapp-green: #25D366;

  /* ── Tipografia ── */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* ── Tamanhos (Desktop) ── */
  --h1-size: clamp(48px, 5vw, 72px);
  --h2-size: clamp(32px, 3.5vw, 48px);
  --h3-size: 24px;
  --body-size: 17px;
  --label-size: 12px;

  /* ── Espaçamento ── */
  --section-padding: 96px 40px;
  --container-max: 1200px;
  --gap-sm: 8px;
  --gap-md: 16px;
  --gap-lg: 32px;
  --gap-xl: 64px;

  /* ── Sombras ── */
  --shadow-card: 0 4px 32px rgba(28, 28, 30, 0.06);
  --shadow-hover: 0 8px 40px rgba(28, 28, 30, 0.10);

  /* ── Bordas ── */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --radius-full: 50%;

  /* ── Transições ── */
  --transition: all 0.3s ease;

  /* ── Breakpoints (referência) ── */
  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
}

/* ── Ajustes Responsivos (Variáveis) ── */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px 20px;
    --gap-xl: 40px;
    --gap-lg: 24px;
    
    --h1-size: 36px;
    --h2-size: 28px;
  }
}