/* ==================== SISTEMA UNIFICADO DE PRODUTOS - CSS MODERNO ==================== */
/* Baseado na UI/UX do dashboard moderno */

/* ==================== VARIÁVEIS CSS ==================== */
:root {
  --primary-color: #FCC75C;
  --primary-dark: #e6b347;
  --secondary-color: #2196f3;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --danger-color: #ff4757;
  --dark-bg: #0f0f0f;
  --dark-card: #1a1a1a;
  --dark-border: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* ==================== CONTAINER PRINCIPAL ==================== */
.unified-product-container {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  min-height: 100vh;
  padding: 1rem;
}

/* ==================== HEADER MODERNO ==================== */
.modern-product-header {
  background: linear-gradient(135deg, rgba(252, 199, 92, 0.1) 0%, rgba(252, 199, 92, 0.05) 100%);
  border: 1px solid rgba(252, 199, 92, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.category-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.category-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 0.3rem;
}

.category-subtitle {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1rem;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: bold;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ==================== CONTROLES DE PRODUTO ==================== */
.product-controls {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-section {
  flex: 1;
}

.search-input-wrapper {
  position: relative;
  max-width: 400px;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.2rem;
}

.modern-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  padding: 0.8rem 3rem 0.8rem 3rem;
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.modern-search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(252, 199, 92, 0.2);
}

.modern-search-input::placeholder {
  color: var(--text-muted);
}

.clear-search-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.2rem;
  border-radius: 50%;
  transition: var(--transition);
}

.clear-search-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.modern-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  padding: 0.8rem 1.5rem;
  color: var(--text-primary);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.modern-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modern-btn.primary-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-color: var(--primary-color);
  color: #000;
}

.modern-btn.primary-btn:hover {
  box-shadow: 0 4px 20px rgba(252, 199, 92, 0.3);
}

.modern-btn.secondary-btn:hover {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.2) 0%, rgba(33, 150, 243, 0.1) 100%);
  border-color: var(--secondary-color);
}

.modern-btn.filter-btn:hover {
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.2) 0%, rgba(156, 39, 176, 0.1) 100%);
  border-color: #9c27b0;
}

/* ==================== GRID DE PRODUTOS ==================== */
.modern-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* ==================== CARD DE PRODUTO ==================== */
.modern-product-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.modern-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b6b, #4ecdc4, #45b7d1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-product-card:hover::before {
  opacity: 1;
}

.modern-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(252, 199, 92, 0.3);
}

.product-card-header {
  position: relative;
}

.product-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: var(--transition);
}

.modern-product-card:hover .product-overlay {
  opacity: 1;
}

.quick-action-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}

.quick-action-btn:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.product-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.product-status.active .status-dot {
  background: var(--success-color);
}

.product-status.inactive .status-dot {
  background: var(--danger-color);
}

.status-text {
  color: var(--text-primary);
  font-weight: 500;
}

.product-card-content {
  padding: 1.5rem;
}

.product-title {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.product-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.detail-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.product-pricing {
  margin-bottom: 1rem;
}

.main-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.price-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.price-value {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
}

.package-info {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 0.8rem;
  margin-top: 0.5rem;
}

.package-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}

.package-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.package-value {
  color: var(--success-color);
  font-weight: 600;
}

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

.discount-badge {
  background: linear-gradient(135deg, var(--success-color), #66bb6a);
  color: white;
  padding: 0.2rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-card-actions {
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--dark-border);
}

.action-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition);
  font-size: 1.1rem;
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.delete-btn:hover {
  color: var(--danger-color);
  background: rgba(255, 71, 87, 0.1);
}

.duplicate-btn:hover {
  color: var(--warning-color);
  background: rgba(255, 152, 0, 0.1);
}

.share-btn:hover {
  color: var(--secondary-color);
  background: rgba(33, 150, 243, 0.1);
}

.toggle-btn:hover {
  color: var(--success-color);
  background: rgba(76, 175, 80, 0.1);
}

/* ==================== ESTADO VAZIO ==================== */
.empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 3rem;
}

.empty-state-content {
  text-align: center;
  max-width: 400px;
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.empty-state-title {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.empty-state-subtitle {
  color: var(--text-secondary);
  margin: 0 0 2rem 0;
  line-height: 1.5;
}

/* ==================== AÇÕES FLUTUANTES ==================== */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 100;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-hover);
}

.primary-fab {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.secondary-fab {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border: 1px solid var(--dark-border);
}

/* ==================== MODAL MODERNO ==================== */
.modern-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-container {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-lg);
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-hover);
}

.small-modal {
  max-width: 500px;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(252, 199, 92, 0.1) 0%, rgba(252, 199, 92, 0.05) 100%);
}

.modal-title {
  color: var(--text-primary);
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition);
  font-size: 1.2rem;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.modal-content {
  padding: 1.5rem;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--dark-border);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.02);
}

.modal-btn {
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--dark-border);
}

.modal-btn.primary-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #000;
  border-color: var(--primary-color);
}

.modal-btn.secondary-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ==================== FORMULÁRIO MODERNO ==================== */
.modern-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  padding: 1.5rem;
}

.section-title {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 2px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  padding: 0.8rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(252, 199, 92, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.price-input-wrapper {
  position: relative;
}

.currency-symbol {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-weight: 600;
}

.price-input {
  padding-left: 2.5rem;
}

/* ==================== UPLOAD DE IMAGEM ==================== */
.image-upload-area {
  border: 2px dashed var(--dark-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.image-upload-area:hover {
  border-color: var(--primary-color);
  background: rgba(252, 199, 92, 0.05);
}

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.upload-icon {
  font-size: 3rem;
  color: var(--text-muted);
}

.upload-text {
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
}

.upload-hint {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.image-preview {
  position: relative;
  max-width: 200px;
  margin: 0 auto;
}

.image-preview img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.remove-image-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--danger-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.remove-image-btn:hover {
  transform: scale(1.1);
}

/* ==================== CHECKBOXES E RADIOS CUSTOMIZADOS ==================== */
.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.checkbox-label,
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.checkbox-label:hover,
.radio-label:hover {
  color: var(--primary-color);
}

.checkbox-custom,
.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--dark-border);
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
}

.radio-custom {
  border-radius: 50%;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
  display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom,
.radio-label input[type="radio"]:checked + .radio-custom {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-weight: bold;
  font-size: 0.8rem;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
}

.checkbox-text,
.radio-text {
  color: var(--text-primary);
  font-size: 0.9rem;
}

/* ==================== LOADING STATE ==================== */
.product-loading-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

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

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(252, 199, 92, 0.3);
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-title {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.loading-subtitle {
  color: var(--text-secondary);
  margin: 0;
}

/* ==================== TOAST DE NOTIFICAÇÃO ==================== */
.modern-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-card);
  border: 1px solid var(--success-color);
  border-radius: var(--border-radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
  z-index: 1100;
  min-width: 300px;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
}

.toast-icon {
  color: var(--success-color);
  font-size: 1.5rem;
}

.toast-message {
  color: var(--text-primary);
  font-weight: 500;
}

.toast-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.2rem;
  border-radius: 50%;
  transition: var(--transition);
}

.toast-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

/* ==================== RESPONSIVIDADE ==================== */
@media (max-width: 1024px) {
  .modern-product-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .header-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .unified-product-container {
    padding: 0.5rem;
  }
  
  .modern-product-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .product-controls {
    flex-direction: column;
  }
  
  .action-buttons {
    justify-content: center;
  }
  
  .modal-container {
    width: 95%;
    max-height: 95vh;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-actions {
    bottom: 1rem;
    right: 1rem;
  }
  
  .fab {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .modern-product-header {
    padding: 1rem;
  }
  
  .category-title {
    font-size: 1.4rem;
  }
  
  .category-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .product-card-content {
    padding: 1rem;
  }
  
  .modal-content {
    padding: 1rem;
  }
  
  .modal-footer {
    flex-direction: column;
  }
}

/* ==================== ANIMAÇÕES ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modern-product-card {
  animation: fadeInUp 0.4s ease;
}

.modern-toast {
  animation: slideInRight 0.3s ease;
}

.modern-modal {
  animation: scaleIn 0.3s ease;
}

/* ==================== UTILITÁRIOS ==================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }

.hidden { display: none !important; }
.visible { display: block !important; }
