/* Estilo inspirado na Apple para o relatório de IA */

/* Importando fontes SF Pro da Apple */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  /* Paleta de cores inspirada na Apple */
  --apple-white: #ffffff;
  --apple-light-gray: #f5f5f7;
  --apple-gray: #86868b;
  --apple-dark-gray: #1d1d1f;
  --apple-black: #000000;
  --apple-blue: #0071e3;
  --apple-purple: #5e5ce6;
  --apple-green: #4cc55d;
  
  /* Cores adicionais para gráficos */
  --chart-blue: #007bff;
  --chart-indigo: #6610f2;
  --chart-purple: #6f42c1;
  --chart-pink: #e83e8c;
  --chart-red: #dc3545;
  --chart-orange: #fd7e14;
  --chart-yellow: #ffc107;
  --chart-green: #28a745;
  --chart-teal: #20c997;
  --chart-cyan: #17a2b8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--apple-white);
  color: var(--apple-dark-gray);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  text-align: center;
  padding: 80px 0;
  background-color: var(--apple-light-gray);
}

header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

header p {
  font-size: 20px;
  font-weight: 400;
  color: var(--apple-gray);
  max-width: 600px;
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: -0.3px;
}

section h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.col-6 {
  grid-column: span 6;
}

.col-12 {
  grid-column: span 12;
}

.chart-container {
  background-color: var(--apple-light-gray);
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.chart-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.stat-card {
  background-color: var(--apple-light-gray);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--apple-blue);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: var(--apple-gray);
}

.quote {
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  text-align: center;
  max-width: 800px;
  margin: 50px auto;
  color: var(--apple-dark-gray);
}

.quote-author {
  font-size: 16px;
  color: var(--apple-gray);
  text-align: center;
  margin-top: 10px;
}

.button {
  display: inline-block;
  background-color: var(--apple-blue);
  color: white;
  padding: 12px 24px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #0062cc;
}

footer {
  background-color: var(--apple-light-gray);
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
  color: var(--apple-gray);
}

/* Estilos para tabelas */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

th, td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--apple-light-gray);
}

th {
  font-weight: 500;
  color: var(--apple-gray);
}

/* Estilos para listas */
ul, ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

/* Media queries para responsividade */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
  
  .col-6 {
    grid-column: span 1;
  }
  
  header {
    padding: 60px 0;
  }
  
  header h1 {
    font-size: 36px;
  }
  
  section {
    padding: 60px 0;
  }
}