
  
/* ------------------------------
   FORMULÁRIO DE ENTREGA
------------------------------ */

.formulario-entrega {
  padding: 1rem ;
  gap: 0.5em;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(212, 210, 210);
  font-family: var(--fonte-texto);
  max-width: 350px; /* Limita a largura */


}

.formulario-entrega h2 {
text-align: center;
font-size: var(--fs-grande);
margin-bottom: 0.5em;
font-family: var(--fonte-titulo);
font-weight: 700;
color: var(--amarelo-ouro);
}


.formulario-entrega h3 {
  font-size: var(--fs-normal);
  text-align: center;
  font-weight: 500;
  margin-bottom: 0.3em;
  font-family: var(--fonte-titulo, 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif);
  color: var(--amarelo-ouro); 
}

.formulario-entrega label {
  display: flex;
  font-family: 'Times New Roman', Times, serif;
  color: #fcfcfc;
  font-size: var(--fs-normal);
  
}

/* Estilo dos inputs do formulário */
input, textarea {
  width: 100%;
  max-width: 350px; /* Limita a largura mesmo com width: 100% */
  padding: 0.4em;
  margin-bottom: 0.4em;
  border-radius: 5px;
  border: none;
  font-size: var(--fs-normal);
  font-family: var(--fonte-texto);
  box-sizing: border-box;
  background-color: #4d4c4ca5;
  color: rgb(0, 0, 0);
  transition: 0.2s ease;

}

input:focus, textarea:focus {
  outline: 2px solid var(--amarelo-ouro);
  background-color: #242424cf;
}

/* Estilo dos botões do formulário */
.botoes-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 1.5em;
}


.botoes-form button img {
  height: 26px; /* Tamanho mais proporcional ao texto */
  width: auto;
  margin-left: 10px;
}

/* Estilo geral dos botões */
button {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  align-items: center;
  padding: 0.6em 0.8em;
  max-width: 350px; /* Limita a largura mesmo com width: 100% */
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-family: var(--fonte-texto);
  font-size: var(--fs-pequeno);
  cursor: pointer;
  background-color: var(--amarelo-ouro);
  color: #000;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Botão de remover ponto */
.remover-ponto {
  background-color: #ff4d4d;
  color: white;
  margin-top: 1em;
  font-size: var(--fs-pequeno);
}

.remover-ponto:hover {
  background-color: #e03e3e;
  transform: translateY(-2px);
}

/* Agrupamento de cada ponto extra */
.ponto-a, .ponto-b, .ponto-extra {
  margin-top: 1em;
  padding: 0.8em;
  background-color: rgba(5, 5, 5, 0.644);
  border: 1.5px dashed #eae7e7;
  border-radius: 8px;
  max-width: 350px;
  
}


/* ------------------------------
 FORMAS DE PAGAMENTO
------------------------------ */

.formas-pagamento {
  margin-top: 2em;
  text-align: center;
  color: #e9e8e8;
  font-family: var(--fonte-texto);
  font-size: var(--fs-pequeno);
}

/* Container dos ícones de pagamento */
.icones-pagamento {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin: 1em;
  flex-wrap: wrap; /* Permite quebrar linha se necessário */
}

.icones-pagamento label {
  color: #e9e8e8;
  font-size: var(--fs-pequeno);
  margin: 0.5em 1em;
}

/* Estilo individual dos ícones */
.icones-pagamento img {
  width: 2.2em;
  height: auto;
  transition: transform 0.2s ease;
  filter: brightness(0.9);
}

/* Efeito hover nos ícones de pagamento */
.icones-pagamento img:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}


@media (min-width: 1024px) {
  .formulario-entrega h2 {
    font-size: var(--fs-grande2);
  }
  .formulario-entrega h3 {
    font-size: var(--fs-grande);
  }
}