@font-face {
  font-family: 'fonte';
  src: url('path/to/font.woff2') format('woff2'),
    url('path/to/font.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


.btn-custom {
  background-color: transparent;
  border: 1px solid #c1c1c1;
  color: gray;
  margin: 0 10px;
  border-radius: 20px;
}

.btn-custom:hover {
  color: #378A8F;
}

.btn-custom.active {
  background-color: transparent;
  border-color: #378A8F;
  color: #378A8F;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  text-align: left;
}

#slider-container {
  position: relative;
  width: 100%;

}

#slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  color: #2199B9;
  background: #ddd;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;

}

#slider::-webkit-slider-thumb {

  width: 24px;
  height: 24px;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 2;
}

#slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 2;
}

.electricity-icon {
  position: absolute;
  top: -24px;
  left: calc((100% - 24px) * var(--position));
  font-size: 19px;
  margin-left: 4px;
  color: #2199B9;
}

.currency-input {
  display: flex;
  align-items: center;
  margin-top: 5px
}

.currency-input input {
  border: solid 1px #80808052;

  border-radius: 10px;
  padding: 5px;
  font-size: 16px;
  width: 100px;
  /* Ajuste conforme necessÃƒÂ¡rio */
}

span {
  text-align: center;
  font-size: 13px;
  color: gray;
}

.currency-input span {
  margin-right: 10px;
}

input {
  color: #378A8F;
}

.button-19 {
  appearance: button;
  background-color: #13586b;
  border: solid transparent;
  border-radius: 16px;
  border-width: 0 0 4px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: din-round, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .8px;
  line-height: 20px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 13px 16px;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  transform: translateZ(0);
  transition: filter .2s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  width: 350px;
}

.button-19:after {
  background-clip: padding-box;
  background-color: #2199B9;
  border: solid transparent;
  border-radius: 16px;
  border-width: 0 0 4px;
  bottom: -4px;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.button-19:main,
.button-19:focus {
  user-select: auto;
}

.button-19:hover:not(:disabled) {
  filter: brightness(1.1);
  -webkit-filter: brightness(1.1);
}

.button-19:disabled {
  cursor: auto;
}

label,
h3,
#loading-text,
h2,
span,
h1 {
  font-family: 'fonte', sans-serif;
}

/* Estilo para centralizar o loader */
.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 999;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

/* Estilo para esconder o conteÃºdo enquanto carrega */
.content.hidden {
  display: none;
}

#loading-text {
  margin-top: 10px;
  /* Ajuste a margem superior para posicionar o texto abaixo do GIF */
  font-size: 28px;
  text-align: center;
  color: #378A8F;
}

.loader img {
  max-width: 50%;
  /* Define o tamanho mÃ¡ximo do GIF */
  height: auto;
  /* Garante que a proporÃ§Ã£o seja mantida */
}

.content h2,
.content p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.content.show h2,
.content.show p {
  opacity: 1;
  transform: translateY(0);
}

.content.show {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 40px
}

.content.show img {
  width: 250px;
}

.logo {
  width: 110px;
}
.logo2 {
  width: 290px;
}

.content.show .valor {
  color: #2199B9;

}

.content {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.content.show span {
  font-size: 18px;

}

.content.show .titulo {
  color: #378a8f
}

.content.show .logo {
  width: 110px;
}

.container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  max-width: 400px;
  margin: 0 auto;
}

.step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  font-size: 15px;
  color: #fff;
  background-color: #79bcd7;
}

.step.active {
  background-color: #007bff;
}

.steps .step.completed {
  background: #28a745;
  color: white;
}

.step-content {
  transition: opacity 1s ease-in;
}

.ola {
  margin: 15px;
  color: #4c4c4c;
  font-size: 20px;
}

.ilustracoes {
  width: 400px
}

#myForm {
  width: 100%;
  margin: 0 auto
}

@media (min-width: 1000px) {
  #myForm {
    width: 50%;
  }

  .finalizar {
    width: 50%;
  }
}

.finalizar {
  margin: 0 auto
}

.text-ec8220 {
  color: #f15824;
}

.font-semibold {
  font-weight: 600;
}

/* Estilos bÃ¡sicos para garantir que o footer fique na parte de baixo */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
  margin-bottom: 20px;
  /* Isto empurra o footer para o fundo */
  text-align:center;
}
footer span, a{
  text-decoration: none;
  font-size:14px
}
center {
  width: 100%;
}