
  .form-step { display: none; }
  .form-step.active { display: block; }
  .progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-direction: row;
    background: none;
  }
  .progress-step {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-bottom: 3px solid #ccc;
    color: #7f7c63;
  }
  .progress-step.active {
    border-bottom: 3px solid #634d3a;
    font-weight: bold;
    color: #634d3a;
  }
  .total-display {
    font-weight: bold;
    color: #634d3a;
    margin-top: 15px;
  }
  .btn-step {
    background-color: #7f7c63;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px 10px 10px 0px;
    cursor: pointer;
    border-radius: 5px;
    transition: 500ms;
  }
 .extras {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  .extra {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    background-color: #f9f9f9;
  }
  .extra img {
    max-width: 235px;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 10px;
  }
   .cliente-info input,
  .cliente-info select,
  .cliente-info textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #656565;
  }
  .cliente-info textarea {
    resize: vertical;
    min-height: 80px;
  }
  .form-step.step-3 h4 {
    color: #634d3a;
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .cliente-info {
    display: flex;
    /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
    gap: 5px;
    margin-top: 20px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .qtd-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.qtd-control input {
  width: 50px;
  text-align: center;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
  padding: 5px;
}

.btn-minus, .btn-plus {
  cursor: pointer;
  background-color: #7f7c63;
  color: white;
  border: none;
  padding: 5px 10px;
  font-size: 18px;
  border-radius: 4px;
  user-select: none;
}
.pcliente {
  
margin-bottom: 10px;
}
.cliente-info label {
  color: #535353;
  font-weight: 600;
}

.ver-mais {
  background-color: #5b594a;         /* Cor de fundo roxa */
  color: #fff !important;            /* Cor do texto branca */
  border: none;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 20px;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none !important;  /* Remove sublinhado */
}

.ver-mais:hover {
  background-color: #7f7c63;
  color: #fff !important;
}
.labqtd {
  color: #4f4d3d;
  /* font-size: 16px; */
}
.btn-step:hover {
  background: #8f9778;
  transition: 500ms;
}

/* .titulo-forma {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.formas-presente {
  display: flex;
  gap: 20px;
  justify-content: space-around;
  flex-wrap: nowrap;
}

.forma-presente-card {
  width: 100%;
  max-width: 300px;
  border: 2px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  max-height: 300px;
}

.forma-presente-card:hover {
  border-color: #007bff;
  box-shadow: 0 0 12px rgba(0, 123, 255, 0.2);
}

.forma-presente-card input[type="radio"] {
  display: none;
}

.forma-presente-card label {
  display: block;
  padding: 10px;
}

.forma-presente-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.conteudo-forma {
  padding: 10px 0;
  text-align: center;
}

.conteudo-forma h5 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: #222;
}

.conteudo-forma .valor {
  font-weight: bold;
  margin: 0.3rem 0;
  color: #28a745;
}

.btn-detalhes {
  background: none;
  border: none;
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 5px;
  font-size: 0.9rem;
}

.descricao-oculta {
  display: none;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
} */
.formas-presente {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.forma-presente {
  display: block;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.forma-presente input[type="radio"] {
  display: none;
}

.card-forma {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  text-align: center;
  transition: 0.3s;
  background: #f9f9f9;
  flex-direction: column;
  align-items: center;
}

.forma-presente input[type="radio"]:checked + .card-forma {
  border-color: #7f7c63;
  box-shadow: 0 0 8px rgb(127 124 99 / 20%);
  background: #edffe6;
}

.card-forma img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  max-width: 250px;
}

.card-forma h5 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
}

.card-forma p {
  margin: 0;
  font-weight: bold;
}

.btn-detalhes {
  margin-top: 10px;
  font-size: 0.9rem;
  display: block;
  text-align: center;
  color: #ffffff !important;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  padding: 8px;
  background: #7f7c63;
}
