
:root{
    --branco: #ffff;
    --gelo: #f1f1f1;
    --preto: #black;

}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
body{
    
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;


}

.toolbar {
    height: 75px;
}

.tab-link {
    display: flex;
    justify-content: center;
    flex-flow: column nowrap; /* antes era wrap, que causava sobreposição */
}

.toolbar-inner .link {    
    flex: 1;
    height: 80px;  
    line-height: 20px; /* diminui a altura da linha */
    font-weight: bold;
    font-size: 12px; /* diminui o tamanho da fonte */
    white-space: normal; /* permite que o texto quebre linha */
    text-align: center;  /* centraliza texto */
}

.toolbar-inner .link:not(.active){
    color: grey;
    font-weight: normal;
}

.toolbar-inner > .link i {
    font-size: 24px; /* diminui o tamanho do ícone */
}



    html,
    body {
      position: relative;
      height: 97%;
    }

    body {
      background: #000;
      font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
      font-size: 14px;
      color: #020100;
      margin: 0;
      padding: 0;
    }

    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #ddd4c3;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
  .img-fluid{
    max-width: 49%;
    box-shadow: 5px 5px 10px black;
    border-radius: 40px;
  }
   
   
   
    body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f0f2f5;
}

#popup {
display: none;
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.6);
justify-content: center;
align-items: center;
z-index: 1000;
}

.popup-content {
background: #fff;
padding: 30px;
border-radius: 12px;
width: 90%;
max-width: 500px;
text-align: center;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
position: relative;
}

.popup-content h2 {
font-size: 26px;
margin-bottom: 15px;
}

.resultado-texto {
font-size: 28px;
font-weight: bold;
color: #2c3e50;
}

.close-btn {
position: absolute;
top: 15px;
right: 20px;
font-size: 30px;
cursor: pointer;
color: #aaa;
}

button {
padding: 12px 20px;
font-size: 18px;
cursor: pointer;
border: none;
background-color: #27ae60;
color: white;
border-radius: 6px;
}

button:hover {
background-color: #219150;
}




body {
  font-family: Arial, sans-serif;
  margin: -18px;      
  background: #9bb2cc;
}

#login-container, #app-container {
  background: white;
  padding: 20px;
  max-width: 400px;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

input, select, button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 8px;
}

button {
  background: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #45a049;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  background: #eee;
  margin: 5px 0;
  padding: 8px;
  border-radius: 4px;
}

/*alinhamento do bloco total abastecimento:*/
/* Alinhar texto e elementos à direita */
.alinhar-direita {
  text-align: right; /* alinha textos */
  display: flex; /* transforma em flexbox */
  justify-content: flex-end; /* empurra conteúdo para a direita */
  flex-direction: column; /* mantém os itens em coluna */
}
/*/////////////////////////////////////////*/
/* Container do botão e info à direita */
.block {
  position: relative;
}

/* Caixa à direita */
.info-direita {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  background: #f5f5f5;
  border-left: 2px solid #ccc;
  padding: 15px;
  display: none; /* começa escondido */
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
}

/* Ajuste para botão */
.mostrar-info {
  margin-top: 15px;
}