body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: linear-gradient(90deg, #0c223b 0%, #355c7d 100%);
  color: #ddd;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

footer {
  padding: 20px;
  font-size: 14px;
  color: #eee;
  background-color: rgba(245, 245, 245, 0.1);
  text-align: center;
}

footer a {
  text-decoration: none;
  color: #eee;
}

footer a:hover {
  text-decoration: underline;
}

h1 {
  text-align: center;
  font-size: 2rem;
}

h2 {
  text-align: center;
}

p {
  font-size: 1.2rem;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
  padding: 10px;
}

input,
select {
  margin: 10px 0;
  padding: 12px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  /* background-color: #27ae60; */
  background-color: #2c99ce;
  color: white;
  padding: 12px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  /* width: 100px; */
}

button:hover {
  background-color: #2fafe4;
}

.logo_iluminado_aguas {
  height: 22rem;
  width: 22rem;
  border-radius: 8px;
  margin-bottom: 20px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

/* .modal-content {
  background-color: #222;
  color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
} */

.modal-content {
  background-color: #222;
  color: #fff;
  margin: 20% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
  box-sizing: border-box;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #fff;
}

@media (max-width: 480px) {
  .modal-content {
    margin: 40% auto;
    padding: 16px;
    width: 90%;
    font-size: 14px;
  }

  .close {
    font-size: 24px;
  }

  button {
    font-size: 16px;
    padding: 10px;

  }

  .container-button {
    max-width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    box-sizing: border-box;
    /* border: solid 1px; */
  }

  .container-button button {
    background-color: #2c99ce;
    color: white;
    padding: 12px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    flex: 1 1 40%;
    /* Flexível, com tamanho mínimo de 40% */
    max-width: 150px;
    /* Para não crescer demais */
    min-width: 120px;
    /* Para não encolher demais */
  }

  #btnGasAgua {
    flex: 1 1 100%;
    max-width: 100%;
  }

  input,
  select {
    font-size: 14px;
    padding: 10px;
  }
}

/* ========================================================= */
#modalTroco .modal-content {
  background-color: #222;
  color: #fff;
  margin: 25% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 300px;
  text-align: center;
  border-radius: 10px;
}

#modalTroco button {
  margin: 10px;
  padding: 10px 15px;
  /* background-color: #27ae60; */
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

/* #modalTroco button:hover {
  background-color: #2ecc71;
} */

#trocoNao {
  background-color: #888;
}

#trocoNao:hover {
  background-color: #999;
}

.mural-avisos {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.mural-avisos p {
  font-size: large;
  font-weight: bold;
}

.container-button {
  width: 100%;
  /* background-color: #856404; */
  display: flex;
  justify-content: center;
  gap: 8px;
}


.container-button button {
  /* background-color: #27ae60; */
  background-color: #2c99ce;
  color: white;
  padding: 12px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 8rem;
}

.container-button button:hover {
  background-color: #2fafe4;
}


/* add novo stilo */
#pedidoForm {
  position: relative;
  /* para posicionar o ul.sugestoes absoluto dentro do form */
}

#sugestoes {
  position: absolute;
  top: 105px;
  /* ajuste essa medida para ficar abaixo do input endereço */
  left: 0;
  right: 0;
  max-height: 150px;
  overflow-y: auto;
  background-color: #222;
  border: 1px solid #ccc;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  color: #eee;
  font-size: 14px;
  display: none;
  /* fica escondido até digitar */
}

#sugestoes li {
  padding: 8px 12px;
  cursor: pointer;
}

#sugestoes li:hover {
  background-color: #2c99ce;
  color: white;
}

#infoFrete {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}


/* INPUT QUANTIDADE GAS */
/* .quantidade-controle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.quantidade-controle button {
  width: 32px;
  height: 32px;
  font-size: 20px;
  background-color: #00bcd4;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.quantidade-controle input {
  width: 60px;
  text-align: center;
  font-size: 16px;
  padding: 5px;
} */

/* .quantidade-controle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
} */

.quantidade-controle button {
  width: 64px;
  height: 42px;
  font-size: 20px;
  /* background-color: #00bcd4; */
  background-color: #2c99ce;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.quantidade-controle input {
  height: 32px;
  width: 60px;
  text-align: center;
  font-size: 16px;
  padding: 5px;
  border: none;
}

.quantidade-controle {
  display: flex;
  align-items: center;
  justify-content: center;
  /* ⬅ centraliza horizontalmente */
  gap: 10px;
  margin: 1rem auto;
}