:root {
  --primary: #0471B5;
  --gnv: #0d6efd;
  --gasolina: #dc3545;
  --etanol: #28a745;
  --bg: #f5f7fa;
  --card: #ffffff;
  --text: #333;
  --muted: #777;
  --border: #e0e0e0;
  --radius: 12px;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --font: 'Montserrat', sans-serif;
}

/* RESET BÁSICO */
body {
  font-family: var(--font);
  background: #FFF;
  color: var(--text);
  margin: 0;
}

/* CONTAINER */
.largura {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* TÍTULO */
.titulo_topo {
  background: var(--primary);
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

/* TEXTO */
.txt_topo {
  color: var(--muted);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* FORMULÁRIO */
.dados {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 25px;
}

/* INPUT */
input {
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 0 10px;
  transition: all 0.2s ease;
}

input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,82,156,0.15);
}

/* LABEL */
label {
  font-size: 0.85rem;
  margin-bottom: 5px;
  display: block;
  color: var(--muted);
}

.peq {
  font-size: 0.7rem;
}

/* GRID DIVISORES */
.esq, .cen {
  border-right: 1px solid var(--border);
}

/* RESULTADOS */
.resultados {
  margin-top: 10px;
}

/* CARDS 
.gas,
.gasolina,
.etanol {
  border-radius: var(--radius);
  padding: 20px 15px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}*/


.resultados .row {
  display: flex;
  flex-wrap: nowrap; /* NÃO quebra linha */
  gap: 5px; /* espaçamento moderno */
}

.gas,
.gasolina,
.etanol {
  flex: 1; /* todos ocupam igual */
  border-radius: var(--radius);
  padding: 20px 15px;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}



/* MOBILE */
@media (max-width: 768px) {
  .resultados .row {
    flex-wrap: wrap; /* agora pode quebrar */
  }

  .gas,
  .gasolina,
  .etanol {
    flex: 100%; /* cada um ocupa linha inteira */
  }
}


.gas:hover,
.gasolina:hover,
.etanol:hover {
  transform: translateY(-4px);
}

.gas { background: var(--gnv); }
.gasolina { background: var(--gasolina); }
.etanol { background: var(--etanol); }

/* TÍTULOS */
.tit_res {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.tit_res2 {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

/* TEXTOS */
.info1, .info2, .detalhe {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* DESTAQUE */
.bg {
  background: rgba(255,255,255,0.15);
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
}

/* KM */
.km_medio_mes {
  margin-top: 10px;
  font-weight: 600;
}

/* OBS */
.obs {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 15px;
  line-height: 1.5;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .esq, .cen {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .titulo_topo {
    font-size: 1.6rem;
  }

  .tit_res2 {
    font-size: 1.3rem;
  }
}


.simulador-iframe {
    width: 100%;
    height: 1000px; 
    border: none;
  }

  /* Mobile */
  @media (max-width: 768px) {
    .simulador-iframe {
      height: 1300px;
    }
  }
