/* Planner/css/base.css */
/* ==========================================================================
   1. Variáveis Globais (:root)
   ========================================================================== */
:root {
  /* Cores Principais */
  --primary-color: #e00078;
  --secondary-color: #e0005a;
  --accent-color: #b610ee;
  --success-color: #00FA9A;
  --danger-color: #F53838;
  --warning-color: #BFFC30;
  --primary-color-rgb: 224, 0, 120; /* RGB for opacity */

 /* Cores de Texto */
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0b0;
  --text-dark: #121212;

  /* Cores de Fundo */
  --bg-primary: #121212;
  --bg-secondary: #1e1e1e;
  --bg-tertiary: #2c2c2c;

  /* Bordas e Sombras */
  --border-color: rgba(255, 255, 255, 0.1);
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);

  /* Gradientes */
  --gradient-main: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  --gradient-success: linear-gradient(135deg, #00b09b, #96c93d);
  --gradient-close: linear-gradient(135deg, #ff416c, #ff4b2b);

  /* Transições e Fontes */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ==========================================================================
   2. Reset e Estilos Base
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

/* ==========================================================================
   3. Tipografia e Utilitários
   ========================================================================== */


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

small {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: -0.75rem;
  display: block;
  font-weight: 300;
}