/* ============================================================================
   COMPONENTS - OTIMIZADO
   ============================================================================ */

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  user-select: none;
}

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

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}

.btn-secondary:hover:not(:disabled) {
  background-color: #2563eb;
  border-color: #2563eb;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover:not(:disabled) {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-danger {
  background-color: var(--color-danger);
  color: var(--color-white);
  border-color: var(--color-danger);
}

.btn-danger:hover:not(:disabled) {
  background-color: #dc2626;
  border-color: #dc2626;
}

.btn-warning {
  background-color: var(--color-warning);
  color: var(--color-white);
  border-color: var(--color-warning);
}

.btn-warning:hover:not(:disabled) {
  background-color: #d97706;
  border-color: #d97706;
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-gray-600);
  border-color: transparent;
}

.btn-ghost:hover:not(:disabled) {
  background-color: var(--color-gray-100);
  color: var(--color-gray-900);
}

.btn-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
}

/* ============================================================================
   CARDS
   ============================================================================ */
.card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition);
}

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

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.card-body {
  padding: 1.5rem;
}

.card-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-gray-200);
  background-color: var(--color-gray-50);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* ============================================================================
   WELCOME HEADER
   ============================================================================ */
.welcome-header {
  background: linear-gradient(135deg, #10b981, #3b82f6);
  border-radius: 0.75rem;
  padding: 1.5rem;
  color: var(--color-gray-900);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.welcome-content h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.welcome-content p {
  color: #a7f3d0;
  margin-bottom: 1rem;
}

.welcome-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
}

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

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

.welcome-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0.1;
}

.welcome-icon img {
  width: 80px;
  height: 80px;
}

.welcome-content {
  position: relative;
  z-index: 1;
}

/* ============================================================================
   ALERTS
   ============================================================================ */
.alerts-section {
  margin-bottom: 2rem;
}

.alert {
  background-color: #f0f9ff;
  border: 1px solid #0ea5e9;
  border-radius: var(--border-radius);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.alert:last-child {
  margin-bottom: 0;
}

.alert-warning {
  background-color: #fff7ed;
  border-color: #f97316;
}

.alert-info {
  background-color: #f0f9ff;
  border-color: #0ea5e9;
}

.alert h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.alert p {
  color: #475569;
  font-size: 0.875rem;
}

.alert-content {
  display: flex;
  justify-content: start;
  flex-direction: column;
}

.alert-action {
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--border-radius);
  padding: 0.25rem 0.5rem;
  transition: all var(--transition);
}

.alert-action:hover {
  background-color: rgba(14, 165, 233, 0.1);
}

/* ============================================================================
   FINANCIAL CARDS
   ============================================================================ */
.financial-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .financial-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.financial-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition);
}

.financial-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.card-label {
  color: var(--color-gray-600);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

.card-value.profit {
  color: var(--color-success);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  margin-bottom: 1rem;
}
.progress-container {
  width: 100%;
  height: 8px;
  background-color: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 12px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6, #a855f7);
  border-radius: 4px;
  transition: width 0.3s ease;
  position: relative;
}

.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.card-icon.income {
  background-color: var(--color-success);
}

.card-icon.expense {
  background-color: var(--color-danger);
}

.card-icon.profit {
  background-color: var(--color-primary);
}

/* .progress-bar {
  width: 100%;
  height: 4px;
  background-color: var(--color-gray-200);
  border-radius: 2px;
  overflow: hidden;
} */

.progress-fill {
  height: 100%;
  background-color: var(--color-success);
  transition: width var(--transition);
}

.progress-fill.warning {
  background-color: var(--color-warning);
}

/* ============================================================================
   FORMS
   ============================================================================ */
.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

label {
  display: block;
  font-weight: 500;
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background-color: var(--color-white);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* ============================================================================
   TABLES
   ============================================================================ */
.table-container {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-gray-200);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table thead {
  background-color: var(--color-gray-50);
}

.table th,
.table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-200);
}

.table th {
  font-weight: 600;
  color: var(--color-gray-700);
  font-size: 0.875rem;
}

.table td {
  color: var(--color-gray-900);
  font-size: 0.875rem;
}

.table tbody tr:hover {
  background-color: var(--color-gray-50);
}

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

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

.badge-warning {
  background-color: #fed7aa;
  color: #c2410c;
}

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

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

.badge-gray {
  background-color: var(--color-gray-100);
  color: var(--color-gray-600);
}

/* ============================================================================
   MODALS
   ============================================================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%;
  overflow-y: auto;
  transform: scale(0.9) translateY(-20px);
  transition: transform var(--transition);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gray-900);
}

.modal-close {
  background: none;
  border: none;
  color: var(--color-gray-400);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: all var(--transition);
}

.modal-close:hover {
  background-color: var(--color-gray-100);
  color: var(--color-gray-600);
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-gray-200);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* ============================================================================
   SETTINGS
   ============================================================================ */
.settings-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.settings-container .dashboard-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.settings-container .page-header {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.settings-section h2 {
  padding: 1.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gray-900);
  border-bottom: 1px solid var(--color-gray-200);
  margin: 0;
}

.settings-card {
  padding: 1.5rem;
}

.settings-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.setting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.setting-item:last-child {
  border-bottom: none;
}

.setting-info h3 {
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.setting-info p {
  color: var(--color-gray-600);
  font-size: 0.75rem;
  margin: 0;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-gray-300);
  transition: var(--transition);
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--color-white);
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--color-primary);
}

input:checked + .slider:before {
  transform: translateX(20px);
}

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

  .financial-cards {
    grid-template-columns: 1fr;
  }

  .setting-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .toggle {
    margin-left: auto;
  }
}

/* Responsive Design */
@media (max-width: 640px) {
  .modal-content {
    width: 95% !important;
    max-height: 90vh !important;
    margin: 10px !important;
  }

  .modal .modal-header {
    padding: 20px 20px 0 20px !important;
    margin-bottom: 20px !important;
  }

  .modal .modal-body {
    padding: 0 20px 20px 20px !important;
  }

  .modal .modal-footer {
    padding: 16px 20px 20px 20px !important;
    flex-direction: column-reverse !important;
  }

  .modal .modal-footer .btn {
    width: 100% !important;
  }

  .modal .form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .modal .supplier-action-options {
    gap: 8px !important;
  }

  .modal .action-option {
    padding: 12px !important;
  }
}

/* Responsive Design */
@media (max-width: 640px) {
  .modal-content {
    width: 95% !important;
    max-height: 90vh !important;
    margin: 10px !important;
  }

  .modal .modal-header {
    padding: 20px 20px 0 20px !important;
    margin-bottom: 20px !important;
  }

  .modal .modal-body {
    padding: 0 20px 20px 20px !important;
  }

  .modal .modal-footer {
    padding: 16px 20px 20px 20px !important;
    flex-direction: column-reverse !important;
  }

  .modal .modal-footer .btn {
    width: 100% !important;
  }

  .modal .form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .modal .supplier-action-options {
    gap: 8px !important;
  }

  .modal .action-option {
    padding: 12px !important;
  }
}

/* ============================================================================
   CHECKLIST MEI - ESTILOS ESPECÍFICOS
   ============================================================================ */

/* Progress Card */
.checklist-progress-card {
  background: linear-gradient(135deg, #10b981, #3b82f6);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
  color: white;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.progress-info h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.progress-info p {
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
}

.progress-percentage span {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.progress-percentage small {
  font-size: 14px;
  opacity: 0.8;
  display: block;
  margin-top: 4px;
}

.progress-container {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6, #a855f7);
  border-radius: 4px;
  transition: width 0.3s ease;
  position: relative;
}

.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Checklist Sections */
.checklist-sections {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}

.checklist-section {
  background: white;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.3s ease;
}

.checklist-section:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.checklist-section.legal .section-header {

  background: #fef2f2;
    border-bottom: 1px solid #fecaca;
}

.checklist-section.financial .section-header {
  background: #ecfdf5;
      border-bottom: 1px solid #a7f3d0;
}
.checklist-section.financial{
   border: 1px solid #a7f3d0;
}
.checklist-section.digital .section-header {

    background-color: #eff6ff;
      border-bottom: 1px solid #bfdbfe;
}
.checklist-section.digital {
      border: 1px solid #bfdbfe;
}

/* Section Header */
.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  justify-content: space-between;
}

.section-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.section-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.section-icon.warning {
  color: #ef4444;
}
.section-icon.success {
  color: #10b981;
}
.section-icon.info {
  color: #3b82f6;
}

.section-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.section-info p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.section-progress {
  text-align: right;
  color: #64748b;
}

.section-progress span {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  display: block;
  line-height: 1;
}

.section-progress small {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
  display: block;
}

/* Checklist Items */
.checklist-items {
    padding: 16px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
      border-radius: .5rem;
  padding: 20px 24px;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  cursor: pointer;
  background: white;
      border-left: 4px solid transparent;
      
    margin-bottom: 24px;
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-item:hover {
  background: rgba(0, 0, 0, 0.02);
}

.checklist-item.completed {
  background: rgba(16, 185, 129, 0.05);
}
.checklist-section.legal{
  border: 1px solid #fecaca;
}
/* Custom Checkbox */
.item-checkbox {
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.item-checkbox input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}

.checkbox-custom {
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  background: white;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.checkbox-custom::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.2s ease;
}

.item-checkbox input[type="checkbox"]:checked + .checkbox-custom {
  background: #10b981;
  border-color: #10b981;
}

.item-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
  opacity: 1;
}

/* Item Content */
.item-content {
  flex: 1;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.item-title {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 0;
  line-height: 1.3;
}

.item-badges {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.priority-badge {
    font-weight: 500;
padding-left: .5rem;
    padding-right: .5rem;
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: .75rem;
    line-height: 1rem;
    border-radius: 9999px;
}

.priority-badge.alta {
background-color: #fee2e2;
    color: #991b1b;
}
.priority-badge.media {
background-color: #fef9c3;
color: #854d0e;
}
.priority-badge.baixa {
background-color: #dcfce7;
color: #166534;
}

.system-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 500;
  text-transform: lowercase;
  background: #f1f5f9;
  color: #64748b;
  letter-spacing: 0.5px;
  line-height: 1;
}

.item-description {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.item-details {
  margin-top: 12px;
}

.detail-text {
  font-size: 13px;
  color: #3b82f6;
  margin: 0;
  line-height: 1.4;
 background-color: #eff6ff;
 padding: .75rem;
     border-radius: .5rem;
     border: 1px solid #bfdbfe;
}

/* Item Progress Bar */
.section-progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 8px;
}

.section-progress-fill {
    height: 100%;
    transition: width 0.3s ease;
    border-radius: 3px;
}

.legal .section-progress-fill {
    background-color: #ef4444;
}

.financial .section-progress-fill {
    background-color: #10b981;
}

.digital .section-progress-fill {
    background-color: #3b82f6;
}
/* Upgrade Section */
.upgrade-section {
  background: linear-gradient(135deg, #10b981, #16a34a);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  color: white;
}

.upgrade-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.upgrade-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.upgrade-header h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.upgrade-content p {
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.upgrade-btn {
  background: white;
  color: #10b981;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.upgrade-btn:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}

/* Tips Section */
.tips-section {
  background: #f0f9ff;
  border: 1px solid #e0e7ff;
  border-radius: 12px;
  padding: 24px;
}

.tips-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tips-icon {
  width: 32px;
  height: 32px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.tips-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e40af;
  margin: 0;
}

.tips-content {
  padding-left: 44px;
}

.tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-list li {
  color: #1e40af;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 8px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  pointer-events: none;
}

.toast {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  animation: slideInRight 0.3s ease-out;
  pointer-events: auto;
}

.toast-success {
  border-left: 4px solid #10b981;
}
.toast-info {
  border-left: 4px solid #3b82f6;
}

.toast i {
  font-size: 20px;
  flex-shrink: 0;
}

.toast-success i {
  color: #10b981;
}
.toast-info i {
  color: #3b82f6;
}

.toast span {
  flex: 1;
  font-size: 14px;
  color: #374151;
}

.toast button {
  background: none;
  border: none;
  font-size: 18px;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}

.toast button:hover {
  background: #f3f4f6;
  color: #6b7280;
}

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

/* Responsive */
@media (max-width: 768px) {
  .page-content {
    padding: 20px;
  }
  .checklist-progress-card {
    padding: 24px;
  }
  .progress-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .progress-percentage {
    text-align: left;
  }
  .progress-percentage span {
    font-size: 36px;
  }
  .section-header {
    padding: 16px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .section-progress {
    text-align: left;
    width: 100%;
  }
  .checklist-item {
    padding: 16px;
    gap: 12px;
  }
  .item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .item-badges {
    width: 100%;
    justify-content: flex-start;
  }
  .tips-content {
    padding-left: 0;
    margin-top: 16px;
  }
}
