:root {
    --primary-color: #212529;
}


.baixa{
max-width: 650px;
}


.steps {
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.step {
    margin-bottom: 10px;
}

.step-number {
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
button:hover .text-muted{
    color:#fff !important
}
.title{
    font-size: 2rem;
    line-height: 2rem;
}

.tag-titol{
  font-weight: bold;
}
.tag-preu{
  font-weight: bold;
  font-size: 0.8em;
}

.step-title {
    font-size: 16px;
}

.gap-4 {
    gap: 1.5rem;
}

.boto-selector-est {
    min-width: 250px;
}

.boto-selector-tipus-visita {
    max-width: 600px;
}

.pas {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    height: 0;
    pointer-events: none;
    /* opcional: evita clics quan no es veu */
}

.pas:not(.active) {
    padding: 0 !important;
    /* opcional: amaga completament quan no està actiu */
}

.pas.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    height: auto;
}

.height-100 {
    min-height: 100vh;
}

#dates-disponibles {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    padding-bottom: 16px;
}

.width-100 {
    width: 100%;
}

.flex-start {
    justify-content: flex-start;
}

.flex-end {
    justify-content: flex-end;
}

.boto-selector-data {
    font-size: 0.8rem;
}

/* Només dispositius amb entrada tàctil */
@media (hover: none) and (pointer: coarse) {
    .dates-disponibles {
        overflow-y: auto;
        /* Activa scroll només en tàctils */
        -webkit-overflow-scrolling: touch;
        /* Per millorar el scroll suau en iOS */
    }
}

.contenidor-dates-mobile {
    display: flex;
    justify-content: space-between;
}

#scrollDataPrevMobile,
#scrollDataNextMobile {
    width: 25px;
    display: block;
    text-align: center;
}

#data-disponible {
    min-width: 175px;
    text-align: center;
}

.gap-2 {
    gap: 0.5rem;
}

#selector-dates,
#selector-dates-torns,
#selector-dates-hores {
    display: contents
}

#selector-hora button{
    min-width: 90px
}

.resum-informacio {
  padding: 28px 28px;
  border: 1px solid lightgray;
  border-radius: 28px;
  text-align: center;
  margin-top: 28px;
  margin-bottom: 28px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
  
}

.resum-informacio b {
background: #212529;
  padding: 0 8px;
  border-radius: 28px;
  color: white;
  text-wrap: nowrap;
}

.v-enter-active,
.v-leave-active {
  transition: opacity 0.5s ease;
}

.v-enter-from,
.v-leave-to {
  opacity: 0;
}

.justify-between {
    justify-content: space-between;
}