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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background-color: #f8fafc;
}

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

/* Layout */
.page {
  display: none;
}

.page.active {
  display: block;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-gradient {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* Typography */
.main-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  text-align: center;
}

.subtitle {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: #475569;
  margin-bottom: 1.5rem;
  text-align: center;
}

.description {
  font-size: 1.125rem;
  color: #475569;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

/* Header */
.header-section {
  padding: 3rem 0;
  text-align: center;
}

.footer-text {
  text-align: center;
  margin-top: 3rem;
  padding-bottom: 2rem;
  color: #64748b;
  font-size: 0.875rem;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.tool-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #e2e8f0;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.tool-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tool-icon {
  padding: 0.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tool-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.bg-blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}
.bg-purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.bg-red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}
.bg-green {
  background: linear-gradient(135deg, #10b981, #059669);
}
.bg-orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.tool-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.tool-card p {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  font-size: 0.875rem;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}

.btn-secondary:hover {
  background-color: #e2e8f0;
  border-color: #cbd5e1;
}

.btn-nav {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  min-width: 44px;
  min-height: 44px;
}

.btn-nav:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
}

.btn-nav svg {
  color: #475569;
}

/* Tool Pages */
.tool-page {
  min-height: 100vh;
  background-color: #f8fafc;
}

.tool-header-bar {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.tool-header-bar .container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.back-btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #475569;
  cursor: pointer;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
  font-weight: 500;
}

.back-btn:hover {
  background-color: #f1f5f9;
}

.tool-header-bar h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
}

/* Cards */
.card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.stat-card h3 {
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
}

/* Form Elements */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.input-field {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  background-color: #fafafa;
}

.input-field:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background-color: white;
}

.textarea-field {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
  transition: all 0.2s ease;
  background-color: #fafafa;
}

.textarea-field:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background-color: white;
}

.input-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

.input-group .input-field {
  flex: 1;
}

/* Area Selector */
.area-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.area-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  background-color: #fafafa;
}

.area-option:hover {
  border-color: #3b82f6;
  background-color: #f8fafc;
  transform: translateY(-2px);
}

.area-option.selected {
  border-color: #3b82f6;
  background-color: #eff6ff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.area-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.area-option span {
  font-weight: 500;
  color: #374151;
  font-size: 0.875rem;
}

/* Sliders */
.slider-group {
  margin-bottom: 1.5rem;
}

.slider-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.slider-value {
  background-color: #3b82f6;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  min-width: 2rem;
  text-align: center;
}

.slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.slider::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #3b82f6;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #3b82f6;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Slide Components */
.area-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.slide-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.slide-counter {
  font-weight: 600;
  color: #475569;
  font-size: 0.875rem;
  min-width: 4rem;
  text-align: center;
}

.slide-content {
  margin-bottom: 2rem;
}

.slide-question {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 8px;
  background-color: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  transition: width 0.3s ease;
  border-radius: 4px;
}

/* Strategy Result */
.strategy-result {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #93c5fd;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.strategy-result h3 {
  color: #1e40af;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.strategy-result p {
  color: #1e40af;
  line-height: 1.5;
  margin: 0;
}

/* History Components */
.audit-history,
.events-history {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.audit-item,
.event-item {
  background-color: #f8fafc;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #3b82f6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.audit-item strong,
.event-item strong {
  color: #1e293b;
  font-weight: 600;
}

.audit-item small,
.event-item small {
  color: #64748b;
  font-size: 0.75rem;
}

.audit-item em {
  color: #475569;
  font-style: italic;
  display: block;
  margin-top: 0.5rem;
}

/* Pendulos */
.pendulos-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pendulo-item {
  background-color: #fef2f2;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border-left: 4px solid #ef4444;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pendulo-item h4 {
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pendulo-item p {
  color: #475569;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.pendulo-item small {
  color: #64748b;
  font-size: 0.75rem;
}

.pendulo-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.reaction-btn {
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.reaction-fisgado {
  background-color: #fef2f2;
  color: #dc2626;
  border-color: #fecaca;
}
.reaction-fisgado:hover {
  background-color: #fee2e2;
}

.reaction-falha {
  background-color: #fefce8;
  color: #ca8a04;
  border-color: #fde68a;
}
.reaction-falha:hover {
  background-color: #fef3c7;
}

.reaction-extincao {
  background-color: #f0fdf4;
  color: #16a34a;
  border-color: #bbf7d0;
}
.reaction-extincao:hover {
  background-color: #dcfce7;
}

/* Meal Planner */
.meal-planner {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.meal-period h3 {
  margin-bottom: 0.75rem;
  color: #374151;
  font-size: 1rem;
  font-weight: 600;
}

/* Recipes */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.recipe-card {
  background-color: #f8fafc;
  border-radius: 0.75rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #e2e8f0;
}

.recipe-card:hover {
  background-color: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.recipe-card h4 {
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.recipe-card p {
  color: #64748b;
  font-size: 0.875rem;
  margin: 0;
}

/* Affirmation Result */
.affirmation-result {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 0.75rem;
  padding: 2rem;
  margin-top: 1.5rem;
  text-align: center;
  border: 1px solid #93c5fd;
}

.affirmation-result p {
  font-style: italic;
  color: #1e40af;
  font-size: 1.125rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

/* Audit Result */
.audit-result {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid;
}

.audit-result.positive {
  background-color: #f0fdf4;
  color: #16a34a;
  border-color: #bbf7d0;
}

.audit-result.negative {
  background-color: #fef2f2;
  color: #dc2626;
  border-color: #fecaca;
}

.audit-result strong {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

/* Empty States */
.empty-state {
  color: #64748b;
  font-style: italic;
  text-align: center;
  padding: 2rem;
  background-color: #f8fafc;
  border-radius: 0.75rem;
  border: 1px dashed #cbd5e1;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .tool-card {
    padding: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .area-selector {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide-navigation {
    gap: 1rem;
  }

  .input-group {
    flex-direction: column;
    align-items: stretch;
  }

  .pendulo-actions {
    justify-content: center;
  }

  .recipes-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 1.5rem;
  }

  .tool-header-bar h1 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .area-selector {
    grid-template-columns: 1fr;
  }

  .tool-card {
    padding: 1.25rem;
  }

  .card {
    padding: 1.25rem;
  }

  .stat-card {
    padding: 1.5rem;
  }
}

/* Scrollbar Styling */
.audit-history::-webkit-scrollbar,
.events-history::-webkit-scrollbar {
  width: 6px;
}

.audit-history::-webkit-scrollbar-track,
.events-history::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.audit-history::-webkit-scrollbar-thumb,
.events-history::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.audit-history::-webkit-scrollbar-thumb:hover,
.events-history::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Loading States */
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Focus States for Accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.btn-nav:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.input-field:focus,
.textarea-field:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Animation for success states */
@keyframes success-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.success-animation {
  animation: success-pulse 0.3s ease-in-out;
}

/* Projetor Styles */
.projetor-hero {
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 1rem;
  border: 1px solid #93c5fd;
}

.projetor-hero h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 1rem;
}

.projetor-hero p {
  font-size: 1.125rem;
  color: #1e40af;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.projetor-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: white;
  padding: 0.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: none;
  background: transparent;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  color: #64748b;
  font-size: 0.875rem;
}

.tab-btn:hover {
  background-color: #f1f5f9;
  color: #475569;
}

.tab-btn.active {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.tab-btn svg {
  flex-shrink: 0;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.card-header {
  margin-bottom: 2rem;
  text-align: center;
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.card-header p {
  color: #64748b;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* Area Selector Grid */
.area-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.area-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.area-card:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.area-card.selected {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.area-card .area-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.area-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.area-card p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

/* Slide Editor */
.slide-editor {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid #e2e8f0;
}

.slide-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.slide-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.slide-instruction {
  color: #3b82f6;
  font-weight: 500;
  font-size: 0.875rem;
}

.slide-textarea,
.forma-textarea,
.confirmacao-textarea {
  width: 100%;
  min-height: 150px;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  resize: vertical;
  font-family: inherit;
  transition: all 0.2s ease;
  background: white;
}

.slide-textarea:focus,
.forma-textarea:focus,
.confirmacao-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.slide-actions,
.forma-actions,
.confirmacao-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

/* Formula Guide */
.formula-guide {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid #f59e0b;
}

.formula-guide h4 {
  color: #92400e;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.formula-elements {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.formula-element {
  background: white;
  color: #92400e;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #f59e0b;
}

/* Confirmação Prompt */
.confirmacao-prompt {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid #16a34a;
  text-align: center;
}

.confirmacao-prompt h4 {
  color: #15803d;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.confirmacao-prompt p {
  color: #15803d;
  font-style: italic;
  font-size: 1.125rem;
  margin: 0;
}

/* Lists */
.slides-list,
.formas-list,
.confirmacoes-list {
  margin-top: 2rem;
}

.slides-list h4,
.formas-list h4,
.confirmacoes-list h4 {
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.slide-item,
.forma-item,
.confirmacao-item {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}

.slide-item {
  border-left: 4px solid #3b82f6;
}

.forma-item {
  border-left: 4px solid #f59e0b;
}

.confirmacao-item {
  border-left: 4px solid #16a34a;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.item-area {
  background: #eff6ff;
  color: #1e40af;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.item-date {
  color: #64748b;
  font-size: 0.75rem;
}

.item-content {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.item-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-small {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-edit {
  background: #f1f5f9;
  color: #475569;
}

.btn-edit:hover {
  background: #e2e8f0;
}

.btn-delete {
  background: #fef2f2;
  color: #dc2626;
}

.btn-delete:hover {
  background: #fee2e2;
}

/* Empty States */
.empty-state-projetor {
  text-align: center;
  padding: 3rem 2rem;
  color: #64748b;
  font-style: italic;
}

.empty-state-projetor svg {
  width: 3rem;
  height: 3rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .projetor-tabs {
    flex-direction: column;
  }

  .tab-btn {
    justify-content: flex-start;
  }

  .area-selector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide-actions,
  .forma-actions,
  .confirmacao-actions {
    flex-direction: column;
  }

  .formula-elements {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .area-selector-grid {
    grid-template-columns: 1fr;
  }

  .slide-editor,
  .forma-editor,
  .confirmacao-editor {
    padding: 1rem;
  }
}
