/* Aquece Zap - Estilos Principais */

/* CSS Variables */
:root {
  --brand-green: #25D366;
  --brand-green-dark: #128C7E;
  --brand-green-light: #34E89E;
  --text-primary: #2F3349;
  --text-secondary: #8B94A8;
  --system-blue: #3B82F6;
  --system-red: #EF4444;
  --system-yellow: #F59E0B;
  --system-green: #10B981;
}

/* Navegação Desktop */
.nav-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-item:hover {
  background-color: #f9fafb;
  color: #111827;
}

.nav-item.active {
  background: linear-gradient(to right, var(--brand-green), var(--brand-green-light));
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
}

/* Navegação Mobile */
.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 0.5rem;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
  color: var(--brand-green);
}

/* Menu Mais */
.more-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.more-menu-item:hover {
  background-color: #f9fafb;
}

.more-menu-item:hover i {
  color: var(--brand-green);
}

/* Layout */
.page-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .page-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.page-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

@media (min-width: 640px) {
  .page-title {
    margin-bottom: 0;
  }
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  transition: all 0.2s ease;
  cursor: pointer;
}

.stat-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.stat-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-change {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
}

.stat-change.positive {
  color: var(--system-green);
}

.stat-change.negative {
  color: var(--system-red);
}

/* Quick Actions */
.quick-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .quick-actions {
    grid-template-columns: repeat(2, 1fr);
    max-width: 48rem;
    margin: 0 auto;
  }
}

.action-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  transition: all 0.2s ease;
  cursor: pointer;
}

.action-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.action-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}

.action-card:hover .action-icon {
  background-color: var(--brand-green);
  color: white;
}

.action-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.action-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Botões */
.btn-primary {
  background: linear-gradient(to right, var(--brand-green), var(--brand-green-light));
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

.btn-outline {
  border: 2px solid var(--brand-green);
  color: var(--brand-green);
  background: transparent;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background-color: var(--brand-green);
  color: white;
  transform: translateY(-1px);
}

/* Inputs */
.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  outline: none;
}

.input-field:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
}

/* Cards */
.card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  transition: all 0.2s ease;
  overflow: hidden;
}

.card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-body {
  padding: 1.5rem;
}

.card-footer {
  padding: 1.5rem;
  border-top: 1px solid #f1f5f9;
  background-color: #f9fafb;
}

/* Tabelas */
.data-table {
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.data-table th {
  padding: 0.75rem 1.5rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.data-table td {
  padding: 1rem 1.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  color: #111827;
  border-bottom: 1px solid #f1f5f9;
}

.data-table tbody tr:hover {
  background-color: #f9fafb;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.badge-success {
  background-color: #dcfce7;
  color: #166534;
}

.badge-warning {
  background-color: #fef3c7;
  color: #92400e;
}

.badge-danger {
  background-color: #fee2e2;
  color: #991b1b;
}

.badge-info {
  background-color: #dbeafe;
  color: #1e40af;
}

.badge-secondary {
  background-color: #f1f5f9;
  color: #374151;
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.3s ease-out;
}

.slide-up {
  animation: slideUp 0.3s ease-out;
}

/* Loading */
.skeleton-loader {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

/* Chart Components */
.chart-container {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.chart-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.chart-period {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Activity Items */
.activity-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: background-color 0.2s ease;
}

.activity-item:hover {
  background-color: #f9fafb;
}

.activity-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.activity-content {
  flex: 1;
}

.activity-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.activity-time {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Font Awesome */
.fa-fire {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.fa-bell:hover {
  animation: bounce 1s;
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0,0,0);
  }
  40%, 43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0,-4px,0);
  }
}
/* Botões de Ação */
.action-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  margin: 0 0.125rem;
}

.action-btn-view {
  background-color: #dbeafe;
  color: #1e40af;
}

.action-btn-view:hover {
  background-color: #3b82f6;
  color: white;
  transform: translateY(-1px);
}

.action-btn-start {
  background-color: #dcfce7;
  color: #166534;
}

.action-btn-start:hover {
  background-color: #10b981;
  color: white;
  transform: translateY(-1px);
}

/* Botão de Contingência - Estilo especial */
.action-btn-contingency {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
  color: white;
  box-shadow: 0 2px 4px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.action-btn-contingency::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.action-btn-contingency:hover::before {
  left: 100%;
}

.action-btn-contingency:hover {
  background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
}

.action-btn-contingency:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(37, 211, 102, 0.3);
}

.action-btn-delete {
  background-color: #fee2e2;
  color: #991b1b;
}

.action-btn-delete:hover {
  background-color: #ef4444;
  color: white;
  transform: translateY(-1px);
}

/* Tabela específica */
.table-container {
  overflow-x: auto;
}

.table-header {
  padding: 0.75rem 1.5rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}

.table-row {
  transition: background-color 0.2s ease;
}

.table-row:hover {
  background-color: #f9fafb;
}

.table-cell {
  padding: 1rem 1.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  color: #111827;
  border-bottom: 1px solid #f1f5f9;
}

/* Card específico */
.card-content {
  padding: 0;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Search Box */
.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.search-input {
  padding-left: 2.5rem;
  padding-right: 1rem;
  width: 16rem;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
}

.empty-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #6b7280;
  font-size: 1.5rem;
}

.empty-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.empty-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}

/* Stat Change Neutral */
.stat-change.neutral {
  color: #6b7280;
}

/* Mobile Cards */
.mobile-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  transition: all 0.2s ease;
  overflow: hidden;
}

.mobile-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.mobile-card-header {
  padding: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.mobile-card-subtitle {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.mobile-card-id {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: monospace;
  background-color: #f1f5f9;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
}

.mobile-card-body {
  padding: 1rem;
}

.mobile-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-card-actions {
  padding: 1rem;
  border-top: 1px solid #f1f5f9;
  background-color: #f9fafb;
  display: flex;
  justify-content: space-around;
  gap: 0.5rem;
}

.mobile-action-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: none;
/* Profile Inline Styles */
.profile-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-tabs {
  margin-bottom: 2rem;
}

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

.profile-tab:hover {
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--brand-green);
}

.profile-tab.active {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
  color: white;
  box-shadow: 0 2px 4px rgba(37, 211, 102, 0.2);
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

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

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

.form-field {
  margin-bottom: 1.5rem;
}

.form-field-item {
  margin-bottom: 1.5rem;
}

.input-field {
  transition: all 0.2s ease;
  border: 2px solid #e5e7eb;
}

.input-field:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
  outline: none;
}

.input-field.error {
  border-color: var(--system-red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.input-field.success {
  border-color: var(--system-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.password-toggle {
  transition: color 0.2s ease;
}

.password-toggle:hover {
  color: var(--brand-green);
}

/* Password strength styles removed - Django handles validation */

/* Strength text styles removed - Django handles validation */

.btn-secondary {
  background: linear-gradient(135deg, #6b7280, #9ca3af);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  flex: 1;
  max-width: 3rem;
}

.mobile-action-btn-view {
  background-color: #dbeafe;
  color: #1e40af;
}

.mobile-action-btn-view:hover {
  background-color: #3b82f6;
  color: white;
  transform: translateY(-1px);
}

.mobile-action-btn-start {
  background-color: #dcfce7;
  color: #166534;
}

.mobile-action-btn-start:hover {
  background-color: #10b981;
  color: white;
  transform: translateY(-1px);
}

/* Botão de Contingência Mobile - Estilo especial */
.mobile-action-btn-contingency {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
  color: white;
  box-shadow: 0 2px 4px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.mobile-action-btn-contingency::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.mobile-action-btn-contingency:hover::before {
  left: 100%;
}

.mobile-action-btn-contingency:hover {
  background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
}

.mobile-action-btn-contingency:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(37, 211, 102, 0.3);
}

.mobile-action-btn-delete {
  background-color: #fee2e2;
  color: #991b1b;
}

.mobile-action-btn-delete:hover {
  background-color: #ef4444;
  color: white;
  transform: translateY(-1px);
}

/* Floating Action Button */
.fab-btn {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(to right, var(--brand-green), var(--brand-green-light));
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.2s ease;
  z-index: 40;
}

.fab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

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

/* Stats Grid Responsivo */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Sistema de Notificação Toast */
.toast-notification {
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.toast-notification.translate-x-0 {
  transform: translateX(0);
}

.toast-notification.opacity-100 {
  opacity: 1;
}

.toast-close {
  transition: all 0.2s ease-in-out;
}

.toast-close:hover {
  transform: scale(1.1);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

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


/* Profile Component Styles */
.profile-container {
  animation: slideInUp 0.4s ease-out;
}

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

/* Profile Tabs */
.profile-tab {
  transition: all 0.2s ease;
}

.profile-tab.active {
  background: linear-gradient(135deg, #25D366, #34E89E);
  color: white;
  box-shadow: 0 2px 4px rgba(37, 211, 102, 0.3);
}

.profile-tab:not(.active) {
  background: transparent;
  color: #6b7280;
}

.profile-tab:not(.active):hover {
  background: #f3f4f6;
  color: #374151;
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Form Fields */
.form-field {
  position: relative;
}

.form-field-item {
  position: relative;
}

.input-field {
  transition: all 0.2s ease;
}

.input-field:focus {
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.input-field.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.input-field.success {
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Password Strength styles removed - Django handles validation */

/* Strength text styles removed - Django handles validation */

/* Button States */
.btn-loading {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Floating Elements */
.floating-element {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .stat-value {
    font-size: 1.25rem;
  }
  
  .action-title {
    font-size: 1rem;
  }
  
  .bottom-nav-item {
    min-height: 44px;
  }
  
  .page-title {
    font-size: 1.25rem;
  }
  .search-input {
    width: 100%;
  }
  
  .card-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .table-container {
    font-size: 0.75rem;
  }
  
  .table-cell {
    padding: 0.75rem 1rem;
  }
  
  .action-btn {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
  }
  
  .mobile-card {
    margin-bottom: 0.5rem;
  }
  
  .mobile-card-header {
    padding: 0.75rem;
  }
  
  .mobile-card-body {
    padding: 0.75rem;
  }
  
  .mobile-card-actions {
    padding: 0.75rem;
  }
  
  .mobile-action-btn {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.75rem;
  }
  
  /* Toast responsivo */
  .toast-notification {
    margin: 0.5rem;
  }
}
