/* Boali Brand Colors & Presentation Styles */
:root {
  /* Cores da marca Boali */
  --boali-yellow: #F4A261;
  --boali-orange: #E76F51;
  --boali-red: #C44536;
  --boali-dark: #2A2A2A;
  --boali-light: #F8F9FA;
  --boali-green: #6A994E;
  --boali-accent: #A7C957;
  
  /* Gradientes */
  --boali-gradient: linear-gradient(135deg, var(--boali-yellow) 0%, var(--boali-orange) 50%, var(--boali-red) 100%);
  --boali-gradient-light: linear-gradient(135deg, rgba(244, 162, 97, 0.1) 0%, rgba(231, 111, 81, 0.1) 100%);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--boali-dark);
  background: var(--boali-light);
}

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

/* Header */
.header {
  background: var(--boali-gradient);
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 300;
}

/* Navigation */
.nav-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

.nav-tab {
  padding: 12px 24px;
  margin: 5px;
  background: var(--boali-light);
  border: 2px solid var(--boali-yellow);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: var(--boali-dark);
}

.nav-tab:hover, .nav-tab.active {
  background: var(--boali-gradient);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 162, 97, 0.4);
}

/* Slides */
.slide {
  display: none;
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: slideIn 0.5s ease-in-out;
}

.slide.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide h2 {
  color: var(--boali-red);
  font-size: 2rem;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--boali-yellow);
  padding-bottom: 10px;
}

.slide h3 {
  color: var(--boali-orange);
  font-size: 1.5rem;
  margin: 25px 0 15px 0;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.card {
  background: var(--boali-gradient-light);
  border: 2px solid var(--boali-yellow);
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(244, 162, 97, 0.3);
}

.card h4 {
  color: var(--boali-red);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Metrics */
.metrics-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.metric-card {
  background: var(--boali-gradient);
  color: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.metric-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Charts */
.chart-container {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.data-table th {
  background: var(--boali-gradient);
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

.data-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.data-table tr:hover {
  background: var(--boali-gradient-light);
}

/* Status indicators */
.status-good {
  color: var(--boali-green);
  font-weight: 600;
}

.status-warning {
  color: var(--boali-yellow);
  font-weight: 600;
}

.status-bad {
  color: var(--boali-red);
  font-weight: 600;
}

/* Lists */
.problem-list {
  list-style: none;
  padding: 0;
}

.problem-list li {
  background: white;
  margin: 10px 0;
  padding: 15px;
  border-left: 4px solid var(--boali-orange);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.problem-list li:before {
  content: "⚠️";
  margin-right: 10px;
}

/* Recommendations */
.recommendation {
  background: linear-gradient(135deg, var(--boali-green) 0%, var(--boali-accent) 100%);
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin: 15px 0;
}

.recommendation h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px;
  background: var(--boali-dark);
  color: white;
  border-radius: 15px;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }
  
  .nav-tabs {
    flex-direction: column;
  }
  
  .slide {
    padding: 20px;
  }
  
  .metrics-container {
    grid-template-columns: 1fr;
  }
}

/* Print styles */
@media print {
  .nav-tabs {
    display: none;
  }
  
  .slide {
    display: block !important;
    page-break-after: always;
  }
  
  .slide:last-child {
    page-break-after: avoid;
  }
}