body {
  background-color: #000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f5ebfa;
  padding: 40px;
  line-height: 1.7;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.light-mode {
  background-color: #f5f5f5;
  color: #222222;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #a56abd;
  transition: color 0.3s ease;
}

body.light-mode h1 {
  color: #6e3482;
}

.descricao {
  margin-bottom: 30px;
}

.preco {
  font-size: 1.8rem;
  color: #f5ebfa;
  font-weight: bold;
  margin-bottom: 40px;
  transition: color 0.3s ease;
}

body.light-mode .preco {
  color: #333333;
}

.btn {
  background: linear-gradient(90deg, #49225b, #a56abd);
  padding: 14px 28px;
  color: #011425;
  text-decoration: none;
  border-radius: 40px;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background: linear-gradient(90deg, #a56abd, #49225b);
}

body.light-mode .btn {
  background: linear-gradient(90deg, #a58ac9, #cdb9f5);
  color: #000000;
}

body.light-mode .btn:hover {
  background: linear-gradient(90deg, #cdb9f5, #a58ac9);
}

.btn-voltar {
  display: inline-block;
  margin-bottom: 40px;
  background: none;
  border: 2px solid #a56abd;
  padding: 10px 20px;
  font-size: 1rem;
  color: #a56abd;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-voltar:hover {
  background-color: #a56abd;
  color: #190019;
}

body.light-mode .btn-voltar {
  color: #6e3482;
  border-color: #6e3482;
  background: none;
}

body.light-mode .btn-voltar:hover {
  background-color: #6e3482;
  color: #f5ebfa;
}

.imagem-servico {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 0 20px #49225b;
  position: relative;
  left: 200px;
  transition: box-shadow 0.3s ease;
}

body.light-mode .imagem-servico {
  box-shadow: 0 0 20px #a56abd;
}

@media (max-width: 785px) {
  .imagem-servico {
    left: 0px;
  }
}

/* botao para alternar tema */
    #toggle-theme {
      position: fixed;
      top: 20px;
      right: 20px;
      padding: 10px 20px;
      background: #6e3482;
      color: #f5ebfa;
      font-weight: 700;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      z-index: 1000;
      box-shadow: 0 0 10px #6e3482;
      transition: background-color 0.3s ease;
    }
    #toggle-theme:hover {
      background-color: #a56abd;
    }

    /* Estilo do pop-up */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  max-width: 90%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .popup {
    width: 90%;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .popup {
    width: 95%;
    padding: 10px;
    font-size: 14px;
  }
}

/* Conteúdo do pop-up */
.popup-content {
  background-color: #1a1a1a;
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: 0 0 20px #49225b;
  max-width: 500px;
  width: 90%;
  color: #f5ebfa;
  font-size: 1rem;
  animation: fadeIn 0.3s ease-in-out;
}

/* Botão de fechar */
.close-btn {
  background-color: transparent;
  border: 2px solid #a56abd;
  color: #a56abd;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  float: right;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background-color: #a56abd;
  color: #1a1a1a;
}

/* Inputs e select */
.popup-content input,
.popup-content select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 20px;
  border: 1px solid #6e3482;
  border-radius: 8px;
  background-color: #000;
  color: #f5ebfa;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.popup-content input:focus,
.popup-content select:focus {
  border-color: #a56abd;
  outline: none;
}

/* Botão de envio */
.popup-content button[type="button"] {
  background: linear-gradient(90deg, #49225b, #a56abd);
  color: #011425;
  padding: 12px 24px;
  border: none;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-content button[type="button"]:hover {
  background: linear-gradient(90deg, #a56abd, #49225b);
}

/* Animação de entrada */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#enviarporemail{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(90deg, #49225b, #a56abd);
  padding: 17px 40px;
  color: #011425;
  text-decoration: none;
  border-radius: 40px;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
  border: none;
}

#enviarporemail:hover {
  background: linear-gradient(90deg, #a56abd, #49225b);
}

body.light-mode #enviarporemail {
  background: linear-gradient(90deg, #a58ac9, #cdb9f5);
  color: #000000;
}

body.light-mode #enviarporemail:hover {
  background: linear-gradient(90deg, #cdb9f5, #a58ac9);
}