@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

@font-face {
  font-family: 'Tondu';
  src: url('./Tondu-Beta.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #000000;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
  gap: 1rem;
}

.sliders, .resultados {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sliders {
  flex: 1;
  padding-top: 20px
}

.resultados {
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  align-self: flex-start;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-align: center;
}

.input-group input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: #00CAD9;
  border-radius: 10px;
  cursor: pointer;
}

.input-group input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

.input-group span { 
  font-weight: 600;
  color: #31393C;
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  background: white;
  border-radius: 8px;
  padding: 0.3rem 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.resultados h2 {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  border: 2px dashed #ffffff;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.box {
  background: linear-gradient(0deg, #003944, #00CAD9);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.8rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  height: 33px;
}

.box span {
  font-weight: bold;
}

  .TituloPagina {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  line-height: 1.4;
  color: #ffffff;
  
}

.TituloPagina h1 {
  font-weight: 300;
  color: #ffffff;
}

.TituloPagina span {
  color: #00CAD9;
  font-weight: bold;
  font-family: 'Tondu';
  letter-spacing: 0.15em;
}

.logo-container {
    text-align: center;
    margin-top: 2rem !important;
}

.logo-container .logo {
    width: 280px; /* ajuste conforme desejado */
    height: auto;
}


@media (max-width: 768px) {

  body{
    margin:0;
  }

  .container {
    flex-direction: column;
    padding: 0;
    gap: 1.5rem;
    align-items: center;
  }

  .sliders{
    width:100%;
    max-width:320px;             /* limite opcional p/ não ficar gigante */
    display:flex;
    flex-direction:column;
        /* centraliza cada input-group */
  }

  .resultados {
    box-sizing:border-box;
    width: 100%;
    max-width: 320px;             /* mesmo limite dos sliders */
    padding: 1rem;
    /*align-items: stretch;  */ 
    margin: 0 auto;
  }

  .box {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .input-group input[type=range] {
    width: 100% !important;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }

  .input-group span {
    margin-left: 0;
    margin-right: 0;
  }

  .placeholder {
    height: 65px;
    display: none;
  }

}
