body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
  }
  .app-header {
    background-color: #000;
    padding: 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
  }
  .back-button {
    color: #73ede8;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-right: 15px;
  }
  .header-title {
    color: #73ede8;
    font-size: 18px;
    font-weight: bold;
  }
  .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
  }
  .page-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 28px;
    color: #73ede8;
    font-weight: bold;
  }
  .section-title {
    font-size: 22px;
    text-align: left;
    margin-top: 25px;
    margin-bottom: 20px;
    color: #73ede8;
    font-weight: bold;
  }
  .form-group {
    margin-bottom: 20px;
  }
  label {
    display: block;
    margin-bottom: 5px;
    color: #73ede8;
    font-weight: bold;
  }
  input,
  select,
  textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #73ede8;
    color: #000;
    font-size: 16px;
    box-sizing: border-box;
  }
  input::placeholder,
  select::placeholder,
  textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
  }
  select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 30px;
  }
  .error-message {
    color: #ff4757;
    font-size: 12px;
    margin-top: 5px;
  }
  .photo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
  }
  .user-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
  .user-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .edit-icon-container {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: #73ede8;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .photo-label {
    color: #73ede8;
    margin-top: 5px;
  }
  .tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
  }
  .tab-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #333;
  }
  .tab-indicator.active {
    background-color: #73ede8;
  }
  .tab-content {
    display: none;
  }
  .tab-content.active {
    display: block;
  }
  .multi-select-container {
    margin-bottom: 20px;
  }
  .multi-select-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
  .multi-select-item {
    background-color: #333;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
    color: #fff;
  }
  .multi-select-item.selected {
    background-color: #73ede8;
    color: #000;
  }
  .nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
  }
  .prev-button,
  .next-button {
    background-color: #73ede8;
    color: #000;
    border: none;
    border-radius: 25px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
  }
  .submit-button-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  .submit-button {
    background-color: #73ede8;
    color: #000;
    border: none;
    border-radius: 25px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
  }

  /* Estilos para opções de foto */
.photo-options {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.photo-option-btn {
  background-color: #73ede8;
  color: #000;
  border: none;
  border-radius: 25px;
  padding: 8px 15px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: bold;
}

.photo-option-btn:hover {
  background-color: #5bc9c5;
}

/* Estilos para o modal de captura de foto */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-color: #000;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

.modal-header h2 {
  color: #73ede8;
  margin: 0;
}

.close-btn {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover {
  color: #73ede8;
}

.photo-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 10px;
  justify-content: center;
}

.photo-button {
  background-color: #73ede8;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.2s, background-color 0.2s;
}

.photo-button:hover {
  background-color: #5fdbda;
  transform: translateY(-2px);
}

.photo-button i {
  font-size: 16px;
}

/* Modal da câmera */
.camera-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.camera-modal-content {
  background-color: #111;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.camera-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #000;
  border-bottom: 1px solid #333;
}

.camera-modal-header h3 {
  color: #73ede8;
  margin: 0;
  font-size: 18px;
}

.close-camera {
  background: none;
  border: none;
  color: #73ede8;
  font-size: 20px;
  cursor: pointer;
}

.camera-modal-body {
  padding: 0;
  position: relative;
}

.camera-preview {
  width: 100%;
  height: 70vh;
  max-height: 500px;
  object-fit: cover;
  display: block;
  background-color: #000;
  transform: scaleX(-1); /* Espelhamento horizontal para selfie */
}

.camera-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.capture-button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #73ede8;
  border: 3px solid #fff;
  color: #000;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.capture-button:hover {
  transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .photo-actions {
    flex-direction: column;
  }
  
  .camera-preview {
    height: 50vh;
  }
  
  .camera-modal-content {
    width: 95%;
    height: auto;
  }
}