/*geral*/
@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  background-color: #f4f4f4;
  overflow-x: hidden;
}

.text {
  font-family: "Be Vietnam Pro", serif;
  font-style: normal;
  line-height: normal;
}

/*ANIMACAO DE CARREGAMENTO*/
.spinner {
  width: 25px;
  height: 25px;
  border-radius: 50%; /* Formato de círculo */
  border: 5px solid transparent;
  border-top-color: #f2f2f2; /* Parte superior do círculo com cor preta */
  animation: spin 1s linear infinite;
  display: block;
  margin: 0 auto;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spinner_hidden {
  display: none;
}

.btn_desabilitado {
  pointer-events: none; /* Bloqueia o clique */
  opacity: 0.6; /* Deixa o botão visualmente desativado */
  cursor: not-allowed;
  color: #353432;
}

/*header*/
.header {
  width: 100vw;
  border-bottom: 1px solid #d8d8d8;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.c_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0px 5vw;
}

.header .logo {
  max-width: 200px;
  margin-top: 20px;
}

.btns_login {
  display: flex;
  gap: 16px;
}

.btn_login,
.btn_cadastro {
  text-decoration: none;
  cursor: pointer;
  display: flex;
  width: 100px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 5px;
  font-family: "Be Vietnam Pro", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.btn_login {
  border: 1px solid var(--Primary, #8ea134);

  color: var(--Primary, #8ea134);
}

.btn_login:hover {
  border: 1px solid #849530;
  background-color: #f5f5f5;
  color: #849530;
}

.btn_cadastro {
  background: var(--Primary, #8ea134);

  color: #fff;
}
.btn_cadastro:hover {
  background-color: #849530;
}

.logo_pesquisa {
  display: flex;
  align-items: center;
}

.logo_pesquisa .form_desktop {
  display: flex;
}

.form_pesquisa {
  display: flex;
  height: 51px;
  padding: 0px 16px;
  align-items: center;
  align-self: stretch;

  border-radius: 10px;
  border: 1px solid #dbdbdb;
  background: #fff;
}

.form_pesquisa input {
  color: #c3c3c3;
  font-size: 20px;
  font-weight: 400;
  height: 100%;
  width: 100%;
  border: none;
  background: none;
  text-align: justify;
}

.form_pesquisa input:focus {
  outline: none;
}

.form_pesquisa button {
  background: none;
  border: none;
  cursor: pointer;

  right: 10px;
}

.header .form_mobile {
  display: none;
}

.btn_perfil,
.btn_logout {
  color: var(--Secondary, #353432);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  display: flex;
  align-items: center;
  gap: 8px;
}
.btn_perfil:hover,
.btn_logout:hover {
  font-weight: 700;
}

.img_perfil {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .c_header {
    display: flex;
    margin: 0px 0vw;
    justify-content: space-around;
  }

  .header {
    padding-bottom: 12px;
    gap: 10px;
  }

  .header .logo {
    max-width: 110px;
    margin-top: 20px;
  }

  .btn_login,
  .btn_cadastro {
    width: auto;
    padding: 16px 12px;
  }

  .logo_pesquisa .form_desktop {
    display: none;
  }

  .header .form_mobile {
    display: flex;
    justify-content: center;
  }
}

/*NOTIFICAÇÃO*/
.c_notificacao {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
}

.notificacao {
  width: 80vw;
  padding: 30px;
  box-sizing: border-box;
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.notificacao .texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.notificacao .texto .descricao {
  font-size: 12px;
  font-weight: 300;
}

.notificacao_positiva {
  color: #2fa641;
}

.notificacao_negativa {
  color: #a13934;
}

.notificacao button {
  display: flex;
  width: 166px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 5px;
  background: var(--Primary, #8ea134);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.notificacao button:hover {
  background: var(--Primary, #7d8d2b);
}

.notificacao .sucesso,
.notificacao .erro {
  display: none;
}

.c_notificacao_excluir {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
}
.notificacao_excluir {
  width: 80vw;
  padding: 30px;
  box-sizing: border-box;
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.notificacao_excluir .texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.notificacao_excluir .descricao {
  font-size: 12px;
  font-weight: 300;
}
.notificacao_excluir .titulo {
  color: #ae5924;
}

.c_notificacao_excluir .btns {
  display: flex;
  gap: 20px;
}

.notificacao_excluir .btns button {
  display: flex;
  width: 166px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 16px;

  border-radius: 5px;
  background: var(--Primary, #8ea134);

  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.notificacao_excluir .btns button:hover {
  background: var(--Primary, #7d8d2b);
}

.notificacao_excluir .btns .btn_excluir_avaliacao {
  background: var(--Primary, #a1343d);
}
.notificacao_excluir .btns .btn_excluir_avaliacao:hover {
  background: var(--Primary, #942d36);
}

.c_modal_crud {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}
.modal_crud {
  width: 80vw;
  padding: 30px;
  box-sizing: border-box;
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.modal_crud p {
  font-size: 20px;
}

.modal_crud input {
  display: flex;
  height: 50px;
  padding: 10px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 5px;
  border: 1px solid #c3c3c3;
  background: #fbfbfb;
  color: #353535;
  font-size: 12px;
  font-weight: 400;
}

.modal_crud textarea {
  display: flex;
  width: 100%;
  height: 174px;
  padding: 10px;
  align-items: flex-start;
  border-radius: 5px;
  border: 1px solid #c3c3c3;
  background: #fbfbfb;
  color: #353535;
  font-size: 12px;
  font-weight: 400;
  box-sizing: border-box;
}

.modal_crud .btns {
  display: flex;
  gap: 8px;
}

.btn_enviar_crud {
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 5px;
  background: var(--Primary, #8ea134);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}
.btn_enviar_crud:hover {
  transform: scale(1.05);
}

.btn_cancelar_crud {
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--Primary, #8ea134);
  background: none;
  border: 1px solid var(--Primary, #8ea134);
}
.btn_cancelar_crud:hover {
  transform: scale(1.05);
}

/*/NOTIFICAÇÃO*/

footer {
  margin-top: 2rem;
  background-color: #0e0e0e;
  display: flex;
  justify-content: center;
  padding: 32px;
  flex-direction: column;
  align-items: center;
  gap: 120px;
}

footer .line1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0px 10vw;
  box-sizing: border-box;
}

footer .line1 .whatsapp {
  display: flex;
  gap: 10px;
  align-items: center;
}

footer .line1 .whatsapp svg {
  max-width: 40px;
}

footer .line1 .link_pro {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 5px;
  background: var(--Primary, #8ea134);
  width: fit-content;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

footer .line1 img {
  max-width: 300px;
}

footer .line1 a {
  color: #fff;
  display: inline-block;
}

footer .line1 a:hover {
  transform: scale(1.02);
}

footer .contatos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

footer p a {
  color: #fff;
}
