/* ========================================
   Foundy — Clean Modern Design System
   ======================================== */

:root {
  /* Cores Principal */
  --primary: #0066FF;
  --primary-light: #4D94FF;
  --primary-dark: #0047B3;
  --accent: #EBF2FF;

  /* Status */
  --success: #52C41A;
  --warning: #FAAD14;
  --danger: #FF4D4F;

  /* Tema Claro */
  --bg-primary: #FAFAFA;
  --bg-secondary: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-input: #F3F4F6;

  /* Texto */
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --text-muted: #9CA3AF;

  /* Bordas e Sombras */
  --border: #E5E7EB;
  --border-light: rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px -5px rgba(0, 102, 255, 0.1);

  /* Raio */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --nav-height: 72px;
  --bottom-nav-height: 64px;
}

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

html, body {
  height: 100%;
  overflow: hidden; /* Trava o viewport principal para impedir pulos do teclado e elástico */
  overscroll-behavior: none;
}

html, body {
  height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: hidden; /* Trava o viewport principal */
  background-color: var(--bg-primary);
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  display: flex;
  flex-direction: column; /* Organiza Top Nav e App verticalmente */
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
}

#app {
  flex: 1; /* Ocupa todo o espaço entre as barras */
  height: 100%;
  min-height: 0; /* Essencial para que os filhos flexíveis possam rolar */
  position: relative;
  overflow: hidden; /* O app container não rola, as páginas rolam */
}

.page {
  padding-top: 20px;
  height: 100%; /* Preenche o #app */
  overflow-y: auto; /* Rolagem automática se o conteúdo exceder a tela */
  padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom) + 40px) !important; /* Espaço para não cobrir botões inferiores */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}


.page.hidden {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}


#page-profile:not(.hidden) {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  overflow-y: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 5% !important; /* Desce o perfil em 5% conforme solicitado */
  padding-bottom: 120px !important;
}




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

/* Header Moderno */
.header-modern {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: calc(24px + env(safe-area-inset-top)) 20px 16px;
}

.welcome-section {
  margin-top: 10px;
}

.welcome-section p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.welcome-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2px;
}

/* Bottom Nav */
.bottom-nav-modern {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-bottom: env(safe-area-inset-bottom);
  z-index: 1000;
}


.nav-item-modern {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}


.nav-item-modern.active {
  color: var(--primary);
}

.nav-item-modern span {
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 4px;
}

/* FAB */
.fab-container {
  position: relative;
  width: 65px;
  height: 65px;
  margin-top: -45px;
}

.fab-btn {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0066FF, #0047B3);
  border: 4px solid var(--bg-secondary);
  border-radius: 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 15px rgba(0, 102, 255, 0.3);
}

/* Auth Pages */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
  padding: 20px;
}

.auth-container {
  width: 100%;
  max-width: 400px;
  background: var(--bg-secondary);
  padding: 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.auth-page-logo {
  height: 72px;
  margin-bottom: 24px;
}

.auth-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  display: none;
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  text-align: left;
  transition: all 0.2s;
}

.input-with-icon input {
  padding-left: 16px;
}

input:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.05);
}

.password-toggle {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Authentication Utilities */
.forgot-link {
  font-size: 0.8rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  margin-top: 4px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.auth-switch {
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.google-btn-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 16px 0;
  min-height: 44px;
}

/* Base Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: var(--primary);
  color: white !important;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-full {
  width: 100%;
}

.btn-link {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 800;
  padding: 0;
  font-size: inherit;
  cursor: pointer;
  margin-left: 4px;
}

.btn-link:hover {
  text-decoration: underline;
}

/* Phone and Code Input Groups (Register) */
.phone-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0;
  transition: all 0.2s;
}

.phone-input-group:focus-within {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.05);
}

.phone-input-group i {
  display: none;
}

.phone-input-group input {
  border: none !important;
  background: transparent !important;
  padding: 14px 16px !important;
  box-shadow: none !important;
  text-align: left !important;
}

.code-input-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 16px 0;
}

.code-input-digit {
  width: 45px;
  height: 55px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--bg-primary);
  transition: all 0.2s;
}

.code-input-digit:focus {
  border-color: var(--primary);
  background: white;
  outline: none;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.1);
}

.form-error {
  margin-top: 16px;
  color: var(--danger);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

/* Utils Padding/Margin */
.flex-1 { flex: 1; }
.gap-3 { gap: 12px; }
.mt-4 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; }
.w-full { width: 100%; }

/* Cards Dashboard */
.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.action-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.action-card.lost .icon-wrapper {
  background: #EBF2FF;
  color: var(--primary);
}

.action-card.found .icon-wrapper {
  background: #F6FFED;
  color: var(--success);
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* Stat Banner Moderno */
.stat-banner {
  background: linear-gradient(135deg, #0066FF, #0047B3);
  border-radius: var(--radius-xl);
  padding: 24px;
  color: white;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.stat-banner h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-banner p {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Seções Dashboard */
.section-header-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.section-header-modern h3 {
  font-size: 1.1rem;
  font-weight: 800;
}

.btn-text-link {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

/* Utilitários Utilitários (usados no HTML) */
.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.mb-4 {
  margin-bottom: 16px;
}

.justify-between {
  justify-content: space-between;
}

.btn-icon-secondary {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #F3F4F6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Feed e Itens Recentes */
.recent-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recent-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 12px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.recent-item-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.recent-item-img {
  width: 84px;
  height: 84px;
  border-radius: 16px;
  object-fit: cover;
}

.recent-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.recent-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2px 0;
}

.recent-item-meta {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.item-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.item-type-pill {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.item-type-pill.lost {
  background: #FFF1F0;
  color: var(--danger);
}

.item-type-pill.found {
  background: #F6FFED;
  color: var(--success);
}

.chevron-icon {
  color: var(--text-muted);
  opacity: 0.5;
}

.item-meta-modern {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.meta-row i {
  width: 14px;
  height: 14px;
}

.meta-row.time {
  opacity: 0.8;
}

/* Forms & Novo Registro */
.form-group-modern {
  margin-bottom: 24px;
  text-align: left;
}

.form-group-modern label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.btn-upload-modern {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-upload-modern:active {
  transform: scale(0.96);
  background: #F9FAFB;
}

.btn-upload-modern i {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.btn-upload-modern:hover i {
  color: var(--primary);
}

.select-wrapper-modern select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  font-size: 0.95rem;
  background: var(--bg-primary);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}

.select-wrapper-modern select:focus {
  border-color: var(--primary);
  outline: none;
}

.type-pill-modern {
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s;
  background: white;
}

.type-option-modern input:checked+.type-pill-modern {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.btn-upload-modern.active-upload {
  background: var(--accent) !important;
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  box-shadow: 0 0 0 2px var(--primary) inset !important;
}

.btn-upload-modern.active-upload i {
  color: var(--primary) !important;
}


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

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

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

.gap-2 {
  gap: 8px;
}

.w-10 {
  width: 40px;
}

.h-10 {
  height: 40px;
}

.rounded-full {
  border-radius: 50%;
}

/* Modal Overlay */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: white;
  padding: 32px;
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: modal-in 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  max-height: 90vh;
  overflow-y: auto;
}

#item-details-modal {
  overflow-y: auto;
}

.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.animate-modal-in {
  animation: modal-in 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal.hidden {
  display: none !important;
}

/* Toast Notification Styles */
.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  width: calc(100% - 40px);
  max-width: 400px;
}

.toast {
  background: white;
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: toast-in 0.3s ease forwards;
  pointer-events: auto;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--primary);
}

.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }

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

@keyframes toast-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* Language Selection Buttons */
.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.lang-option:hover {
  border-color: var(--primary);
  background: #F0F7FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.lang-option.active {
  border: 2px solid var(--primary);
  background: #F0F7FF;
}

.lang-option:active {
  transform: scale(0.98);
}

.lang-option span:first-child {
  font-size: 1.4rem;
}

.lang-option span:last-child {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

#verify-phone-btn:hover {
  filter: brightness(0.95);
}

#verify-phone-btn:active {
  transform: scale(0.95);
}

/* Specific Button Style: Registrar Item & Salvar Alterações */
#new-item-btn,
#profile-save-btn {
  background: #F0F7FF !important;
  color: var(--primary) !important;
  border: 1px solid var(--border) !important;
  box-shadow: none !important;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

#new-item-btn:hover,
#profile-save-btn:hover {
  background: #EBF2FF !important;
  transform: translateY(-1px);
}

#new-item-btn:active,
#profile-save-btn:active {
  transform: scale(0.98);
}

.shadow-primary {
  box-shadow: none !important;
}

/* ========================================
   Chat & Messaging
   ======================================== */
.chat-messages {
  height: 480px;
  max-height: 70vh;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(249, 250, 251, 0.5);
  scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #E5E7EB;
  border-radius: 10px;
}

.message-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 20px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  animation: message-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes message-in {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.message-received {
  align-self: flex-start;
  background: white;
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
  border: 1px solid var(--border-light);
}

.message-sent {
  align-self: flex-end;
  background: var(--primary);
  color: white;
  border-bottom-right-radius: 4px;
}

.message-text {
  word-wrap: break-word;
  word-break: break-word;
}

.message-time {
  font-size: 0.7rem;
  margin-top: 6px;
  opacity: 0.75;
  text-align: right;
}

.chat-subtitle {
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.chat-footer {
  padding: 16px 20px;
  background: white;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

#chat-input-container {
  flex: 1;
}

#chat-input {
  width: 100%;
  background: #F3F4F6 !important;
  border: 1px solid transparent !important;
  padding: 14px 20px !important;
  border-radius: 100px !important;
  font-size: 0.95rem !important;
  text-align: left !important;
}

#chat-input:focus {
  background: white !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08) !important;
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Loading & Empty States */
.loading-spinner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 12px;
  color: var(--text-secondary);
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3.5px solid #F3F4F6;
  border-top: 3.5px solid var(--primary);
  border-radius: 50%;
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.empty-chat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}

.empty-chat i {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  opacity: 0.35;
}

.empty-chat p {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 220px;
}

/* Donation Styles */
.btn-donation-header {
  height: 40px;
  padding: 0 16px;
  background: var(--accent);
  border: 1px solid var(--primary-light);
  border-radius: 100px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.05);
}

.btn-donation-header:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 102, 255, 0.15);
}

.btn-donation-header i {
  width: 16px;
  height: 16px;
}

.empty-state {
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#page-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.donation-content {
  padding: 24px;
  text-align: center;
}

.donation-message {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: left;
  background: #F0F7FF;
  padding: 20px;
  border-radius: 20px;
  border-left: 4px solid var(--primary);
}

.pix-container {
  background: var(--bg-primary);
  border: 1px dashed var(--primary-light);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

.pix-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pix-key-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pix-key-text {
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 0.7rem;
  background: white;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-copy-pix {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-copy-pix:active {
  transform: scale(0.98);
}

.donation-footer {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}