/* ============================= */
/* BOTÓN WHATSAPP */
/* ============================= */
.wa-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  height: 56px;
  background-color: #25D366;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  z-index: 9999;
  transition: all 0.25s ease;
  text-decoration: none;
}

.wa-button svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.wa-text {
  color: white;
  font-size: 14px;
  font-weight: 500;
  font-family: sans-serif;
}

.wa-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}

@media (max-width: 767px) {
  .wa-button {
    width: 56px;
    padding: 0;
    border-radius: 50%;
  }

  .wa-text {
    display: none;
  }
}


/* ============================= */
/* BOOKLY - LIMPIEZA DE FILTROS */
/* ============================= */

/* Ocultar filtros de disponibilidad */
.bookly-form .bookly-week-days,
.bookly-form .bookly-time-range,
.bookly-form .bookly-date-from,
.bookly-form .bookly-date-to {
    display: none !important;
}

/* Ocultar textos asociados a filtros */
.bookly-form .bookly-available-time {
    display: none !important;
}

/* Ocultar staff (si hay solo una doctora) */
.bookly-form .bookly-staff {
    display: none !important;
}

/* Ocultar selector de fecha inicial */
.bookly-form .bookly-date-from,
.bookly-form .bookly-label-from {
    display: none !important;
}


/* ============================= */
/* BOOKLY - MEJORA UX HORARIOS */
/* ============================= */

/* Contenedor por día */
.bookly-form .bookly-columnizer > div {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 16px;
    background: #fafafa;
}

/* Fecha */
.bookly-form .bookly-date {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
    color: #000;
}

/* Contenedor de horas */
.bookly-form .bookly-time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Ocultar radios */
.bookly-form input[type="radio"] {
    display: none;
}

/* Horas como botones */
.bookly-form .bookly-time-slot {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover */
.bookly-form .bookly-time-slot:hover {
    background: #f1f1f1;
}

/* Seleccionado */
.bookly-form input[type="radio"]:checked + .bookly-time-slot {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Días sin disponibilidad */
.bookly-form .bookly-day.bookly-empty {
    opacity: 0.4;
}

/* Espaciado */
.bookly-form .bookly-columnizer {
    gap: 12px;
}


/* ============================= */
/* FIX MOBILE - ELIMINAR TEXTO STEP 2 */
/* ============================= */

@media (max-width: 768px) {

    /* Oculta SOLO el texto redundante */
    .bookly-form .bookly-step-2 .bookly-box > p {
        display: none !important;
    }

    /* Elimina bloque vacío */
    .bookly-form .bookly-step-2 .bookly-box:empty {
        display: none !important;
    }

}

/* AJUSTE: Cabecera 50% más pequeña en la página de reserva */
#header #headerimg h1 a, 
#header #headerimg h1 {
    font-size: 16px !important;
    line-height: 1.1 !important;
    text-decoration: none !important;
    display: block !important;
}

#header #headerimg {
    padding: 10px 0 !important;
    margin: 0 !important;
}

#header {
    height: auto !important;
    min-height: 0 !important;
    padding: 0 20px !important;
    border-bottom: 1px solid #eee; /* Opcional: añade una línea sutil bajo la cabecera */
}

/* Reducir también el tamaño del eslogan/descripción */
#header .description {
    font-size: 11px !important;
    margin-top: 2px !important;
}