/* ========================================== */
/* HOTEL MOBILE STEPPER - APENAS MOBILE */
/* ========================================== */

@media (max-width: 992px) {
  /* Esconder tooltip tradicional */
  .hospedes-tooltip {
    display: none !important;
  }
  
  /* Exceção: mostrar tooltip no motor de busca de quartos */
  .hotel-update-box .hospedes-tooltip {
    display: block !important;
  }
  
  /* Layout horizontal */
  .container-pesquisa-conector-hotel-item.hospedes {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    width: 100% !important;
  }
  
  .container-pesquisa-conector-hotel-item.hospedes .form-group {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    width: auto !important;
    flex: 1 !important;
    flex-direction: row !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .container-pesquisa-conector-hotel-item.hospedes label {
    margin: 0 !important;
    padding: 0 !important;
    margin-right: -157px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    height: 32px !important;
  }
  
  .container-pesquisa-conector-hotel-item.hospedes .form-fields {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 32px;
    border: none;
    border-radius: 5px;
    background: #fff;
    padding: 0 4px;
    gap: 4px;
    flex-shrink: 0;
  }
  
  /* Esconder elementos do desktop */
  .container-pesquisa-conector-hotel-item.hospedes .hospedes-front,
  .container-pesquisa-conector-hotel-item.hospedes .form-fields i {
    display: none;
  }

  /* Botões do stepper */
  .stepper-btn {
    display: flex;
    border: none;
    background: #00487A;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
  }

  .stepper-btn:hover {
    background: #003366;
    transform: scale(1.05);
  }

  .stepper-btn:active {
    transform: scale(0.95);
  }

  .stepper-btn.stepper-minus {
    width: 26px;
    height: 25px;
    padding: 3px 9.056px 4px 9px;
    border-radius: 4px 0 0 4px;
  }

  .stepper-btn.stepper-plus {
    width: 26px;
    height: 25px;
    padding: 3px 7.932px 4px 9px;
    border-radius: 0 4px 4px 0;
  }

  .stepper-btn:disabled {
    background: #00487A;
    cursor: pointer;
    transform: none;
  }

  .hospedes-count {
    font-size: 14px;
    font-weight: 600;
    color: #00487A;
    width: 12px;
    text-align: center;
    font-family: "DM Sans", Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
}
