@font-face {
  /* Fonte padrão */
  font-family: "AbhayaLibre";
  src: url("../fonts/AbhayaLibre-Regular.ttf") format('truetype');
}

@font-face {
  /* Fonte padrão */
  font-family: "FoundersGrotesk";
  src: url("../fonts/FoundersGrotesk-Regular.otf") format('truetype');
}


* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  background-color: #D9CDBF;
  color: #384001;
  line-height: 1.6;
}

main {
  flex: 1;
}

/* Classes padrões de toda a aplicação */
.btn {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px;
  width: 100%;
  background-color: #374001;
  border-radius: 25px;
  color: #ffffff;
  font-family: AbhayaLibre, sans-serif;
  cursor: pointer;
  font-weight: 700;
  border: none;

  &:hover {
    background-color: #2b3102;
  }
}

.btn_desativado{
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px;
  width: 100%;
  background-color: #374001;
  border-radius: 25px;
  color: #ffffff;
  font-family: AbhayaLibre, sans-serif;
  font-weight: 700;
  background-color: #6d705c;
  cursor:not-allowed;
  border: none;
  
}

/* Para botões com ícones de atendimento como whatsapp e afins */
.btn-atedimento img {
  height: 30px;
}

/* Botão padrão para finalidades secundárias */
.btn_secundario {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px;
  width: 100%;
  background-color: #8c4c28;
  border-radius: 25px;
  color: #ffffff;
  font-family: FoundersGrotesk, sans-serif;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  border: none;

  &:hover {
    background-color: #773b18;
  }
}

.btn_secundario_sem_fundo {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 4px;
  width: 100%;
  background-color: transparent;
  border-radius: 25px;
  color: #8c4c28;
  font-family: FoundersGrotesk, sans-serif;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid #8c4c28;

  &:hover {
    background-color: #773b181a;
  }
}

.btn_secundario_desativado {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px;
  width: 100%;
  background-color: #756d68;
  border-radius: 25px;
  color: #ffffff;
  font-family: FoundersGrotesk, sans-serif;
  font-size: 20px;
  font-weight: 700;
  cursor:not-allowed;
  border: none;

  &:hover {
    background-color: #756d68;
  }
}

.btn_perigo{
  background-color: #aa1308;
  &:hover {
    background-color: #720b03;
  }
}

.btn_perigo_desativado{
  background-color: #a5706d;
  cursor:not-allowed;
  pointer-events: none; /* impede clique */
  &:hover {
    background-color: #a5706d;
  }
}
