
/* ==============================
   Formulario de Reservas
   ============================== */

.rm-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rm-grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.rm-f {
  margin-bottom: 1rem;
}

.rm-f label {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
  letter-spacing: .03em;
  font-weight: 600;
  text-transform: uppercase;
}

.rm-f select,
.rm-f input[type=date],
.rm-f input[type=text],
.rm-f input[type=tel] {
  width: 100%;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-family: "Open Sans", Arial, sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -webkit-transition: border-color .2s;
  transition: border-color .2s;
}

.rm-f select:focus,
.rm-f input:focus {
  outline: none;
  border-color: #aaa;
}

.rm-sel {
  position: relative;
}

.rm-sel::after {
  content: '\25BE';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #aaa;
  pointer-events: none;
}

.rm-qty {
  display: flex;
  align-items: center;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.rm-qb {
  width: 38px;
  height: 100%;
  background: none;
  border: none;
  color: #666;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-transition: background .2s;
  transition: background .2s;
}

.rm-qb:hover {
  background: #f5f5f5;
}

.rm-qn {
  flex: 1;
  text-align: center;
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

.rm-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 1.25rem 0;
}

.rm-err {
  font-size: 11px;
  color: #e24b4a;
  margin-top: 3px;
  display: none;
}

.rm-req {
  color: #e24b4a;
}

.rm-wa {
  width: 100%;
  height: 44px;
  background: #25D366;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: "Open Sans", Arial, sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.25rem;
  -webkit-transition: background .2s;
  transition: background .2s;
}

.rm-wa:hover {
  background: #20c05a;
}

.rm-wa:active {
  -webkit-transform: scale(.98);
  transform: scale(.98);
}

@media screen and (max-width: 600px) {
  .rm-grid2 {
    grid-template-columns: 1fr;
  }
  .rm-grid3 {
    grid-template-columns: 1fr 1fr;
  }
}
