sup {
    font-size: medium;
}

.wp-block-buttons.is-content-justification-center.is-layout-flex.wp-container-core-buttons-is-layout-16018d1d.wp-block-buttons-is-layout-flex {
    margin-top: 40px;
    margin-bottom: 40px;
}
a.wp-block-button__link.wp-element-button {
    background-color: #63d9e9;
    width: auto;
}
/* Contenedor general del formulario */
.mphb_sc_search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-end;
  justify-content: center;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Oculta el texto de campos requeridos si no lo necesitas */
.mphb-required-fields-tip {
  display: none;
}

/* Cada campo individual */
.mphb_sc_search-form p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

/* Etiquetas */
.mphb_sc_search-form label {
  font-weight: 600;
  font-size: 14px;
  color: #2e5d66;
  margin-bottom: 6px;
}

/* Inputs y selects */
.mphb_sc_search-form input[type="text"],
.mphb_sc_search-form select {
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #b7c7cc;
  border-radius: 8px;
  outline: none;
  transition: all 0.2s ease-in-out;
  color: #2e5d66;
  background-color: #fff;
}

/* Efecto al hacer foco */
.mphb_sc_search-form input[type="text"]:focus,
.mphb_sc_search-form select:focus {
  border-color: #5da6b3;
  box-shadow: 0 0 0 2px rgba(93, 166, 179, 0.2);
}

/* Botón de búsqueda */
.mphb_sc_search-submit-button-wrapper input[type="submit"] {
  background-color: #5da6b3;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mphb_sc_search-submit-button-wrapper input[type="submit"]:hover {
  background-color: #468c9a;
}

/* Ajuste responsivo para pantallas pequeñas */
@media (max-width: 768px) {
  .mphb_sc_search-form {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ---- Contenedor del formulario ---- */
.mphb_sc_search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: flex-end;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* ---- Etiquetas ---- */
.mphb_sc_search-form label {
  font-size: 14px;
  font-weight: 600;
  color: #35606a;
  margin-bottom: 6px;
}

/* ---- Campos de texto y selects ---- */
.mphb_sc_search-form input[type="text"],
.mphb_sc_search-form select {
  padding: 10px 12px;
  border: 1px solid #b6c5ca;
  border-radius: 8px;
  font-size: 15px;
  color: #35606a;
  background: #fff;
  min-width: 160px;
  transition: all .2s ease-in-out;
}

.mphb_sc_search-form input[type="text"]:focus,
.mphb_sc_search-form select:focus {
  border-color: #5aa9b3;
  box-shadow: 0 0 0 2px rgba(90,169,179,.2);
  outline: none;
}

/* ---- Botón de búsqueda ---- */
.mphb_sc_search-submit-button-wrapper input[type="submit"] {
  background-color: #5aa9b3;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s ease;
}

.mphb_sc_search-submit-button-wrapper input[type="submit"]:hover {
  background-color: #4b8f9b;
}

/* ---- Ajuste responsivo ---- */
@media (max-width:768px){
  .mphb_sc_search-form{
    flex-direction: column;
    align-items: stretch;
  }
  .mphb_sc_search-form p{
    width:100%;
  }
}


@media (max-width: 768px) {/* ---- Contenedor general ---- */
form.contact-form {
  max-width: 650px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* ---- Campos individuales ---- */
.grunion-field-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

/* ---- Etiquetas ---- */
.grunion-field-label {
  font-weight: 600;
  font-size: 14px;
  color: #2e5d66;
  margin-bottom: 8px;
}

/* ---- Inputs, email, textarea ---- */
.grunion-field,
form.contact-form textarea {
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #b7c7cc;
  border-radius: 8px;
  color: #2e5d66;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
  width: 100%;
  box-sizing: border-box;
}

/* ---- Efecto al enfocar ---- */
.grunion-field:focus,
form.contact-form textarea:focus {
  border-color: #5da6b3;
  box-shadow: 0 0 0 2px rgba(93, 166, 179, 0.2);
  outline: none;
}

/* ---- Campo de mensaje (textarea) ---- */
form.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ---- Botón de envío ---- */
form.contact-form button.pushbutton-wide {
  background-color: #5da6b3;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease;
}

form.contact-form button.pushbutton-wide:hover {
  background-color: #468c9a;
}

/* ---- Mensajes de error ---- */
.contact-form__input-error {
  color: #c94f4f;
  font-size: 13px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-form__warning-icon svg {
  fill: #c94f4f;
}

/* ---- Ajuste responsivo ---- */
@media (max-width: 600px) {
  form.contact-form {
    padding: 20px;
  }
}

	
	button.pushbutton-wide {
    background-color: #63d9e9;
    color: white;
    padding: 10px 0;
    max-width: 180px;
    padding-left: 0%;
    margin-top: 20px;
    border-radius: 12px;
}

/* --- Botones de Ubicación (Waze y Google Maps) --- */
.location-buttons {
  display: flex;         /* Pone los botones uno al lado del otro */
  flex-wrap: wrap;       /* Si no caben, se ponen abajo */
  gap: 15px;             /* Espacio entre los botones */
  margin-top: 20px;
  margin-bottom: 20px;
}

.btn-location {
  display: inline-flex;  /* Alinear ícono y texto */
  align-items: center;
  justify-content: center;
  
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  
  color: #ffffff;        /* Color del texto e ícono */
  font-size: 16px;
  font-weight: 600;
  text-decoration: none; /* Quitar subrayado del enlace */
  
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Estilo del ícono SVG dentro del botón */
.btn-location svg {
  margin-right: 8px; /* Espacio entre el ícono y el texto */
}

/* Efecto al pasar el mouse */
.btn-location:hover {
  transform: translateY(-2px); /* Eleva un poco el botón */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Colores específicos */
.btn-waze {
  background-color: #33CCFF; /* Color oficial de Waze */
}

.btn-google-maps {
  background-color: #DB4437; /* Color rojo de Google Maps */
}

.mphb-recommendation-reserve-button	{
    background: #63d9e9;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
}	