#perfilPage.profile-container {
      background-color: #ffe9df;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      max-width: 600px;
      margin: 40px auto;
      text-align: center;
  }
  
  .profile-title {
      font-weight: bold;
      font-size: 2rem;
      margin-bottom: 30px;
      color: #7b4f3b;
  }
  
  .profile-photo-area {
      margin-bottom: 30px;
  }
  
  .profile-pic {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #7b4f3b;
      margin-bottom: 15px;
  }
  
  .photo-upload {
      display: none;
  }
  
  .profile-field {
      margin-bottom: 20px;
      text-align: left;
  }
  
  .profile-field label {
      font-weight: 500;
      color: #555;
      margin-bottom: 5px;
      display: block;
  }
  
  .profile-field input,
  .profile-field textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1rem;
      box-sizing: border-box;
      transition: border-color 0.3s;
  }
  
  .profile-field input:focus,
  .profile-field textarea:focus {
      border-color: #7b4f3b;
      outline: none;
  }
  
  .profile-field input:disabled,
  .profile-field textarea:disabled {
      background-color: #f0f0f0;
      color: #777;
      cursor: not-allowed;
  }
  
  .profile-actions {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 15px;
  }
  
  .btn {
      padding: 10px 20px;
      border: none;
      border-radius: 20px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s;
  }
  
  .btn-primary {
      background-color: #7b4f3b;
      color: #fff;
  }
  
  .btn-primary:hover {
      background-color: #7b4f3b;
  }
  
  .btn-secondary {
      background-color: #7b4f3b;
      color: #fff;
  }
  
  .btn-secondary:hover {
      background-color: #bbb;
  }
  
/* TODO: Tema Escuro */

  .dark-mode #perfilPage.profile-container {
      background-color: #2c2c2c;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  }
  
  .dark-mode .profile-title {
      color: #e0e0e0;
  }
  
  .dark-mode .profile-field label {
      color: #e0e0e0;
  }
  
  .dark-mode .profile-field input,
  .dark-mode .profile-field textarea {
      background-color: #333;
      border-color: #555;
      color: #e0e0e0;
  }
  
  .dark-mode .profile-field input:disabled,
  .dark-mode .profile-field textarea:disabled {
      background-color: #222;
      color: #999;
  }
  
  .dark-mode .profile-pic {
      border-color: #7b4f3b;

  }

