/* ============================================================
   C.H DU CORTE v0.9.2-R4.6 — TIME SELECTION FEEDBACK
   Feedback visual ao selecionar um horário na Etapa 4.
   ============================================================ */

.v09246-selecting-modal[hidden]{
  display:none!important;
}

.v09246-selecting-modal{
  position:fixed;
  inset:0;
  z-index:5100;
  display:grid;
  place-items:center;
  background:rgba(7,7,7,.68);
  backdrop-filter:blur(3px);
  padding:24px;
}

.v09246-selecting-dialog{
  width:min(420px,calc(100vw - 32px));
  border:1px solid rgba(214,166,75,.34);
  border-radius:20px;
  background:linear-gradient(180deg,rgba(18,16,13,.98),rgba(12,11,9,.98));
  box-shadow:0 28px 70px rgba(0,0,0,.45);
  padding:26px 24px 22px;
  text-align:center;
}

.v09246-selecting-spinner{
  width:54px;
  height:54px;
  margin:0 auto 16px;
  border-radius:50%;
  border:3px solid rgba(214,166,75,.18);
  border-top-color:rgba(214,166,75,.95);
  border-right-color:rgba(214,166,75,.60);
  animation:v09246-spin .9s linear infinite;
}

.v09246-selecting-title{
  margin:0;
  font-size:24px;
  line-height:1.15;
  color:#f7f1e8;
  font-weight:700;
}

.v09246-selecting-time{
  margin:10px 0 0;
  color:#d9aa57;
  font-size:14px;
  line-height:1.25;
  font-weight:700;
  letter-spacing:.02em;
}

.v09246-selecting-text{
  margin:6px 0 0;
  font-size:14px;
  line-height:1.5;
  color:rgba(247,241,232,.82);
}

body.v09246-selecting-open{
  overflow:hidden;
}

@keyframes v09246-spin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

@media(max-width:760px){
  .v09246-selecting-dialog{
    width:min(360px,calc(100vw - 28px));
    padding:24px 20px 20px;
    border-radius:18px;
  }

  .v09246-selecting-spinner{
    width:50px;
    height:50px;
  }

  .v09246-selecting-title{
    font-size:22px;
  }

  .v09246-selecting-time,
  .v09246-selecting-text{
    font-size:13.5px;
  }
}

@media(max-width:430px){
  .v09246-selecting-dialog{
    width:calc(100vw - 24px);
    padding:22px 18px 18px;
    border-radius:16px;
  }

  .v09246-selecting-spinner{
    width:46px;
    height:46px;
    margin-bottom:14px;
  }

  .v09246-selecting-title{
    font-size:20px;
  }

  .v09246-selecting-time,
  .v09246-selecting-text{
    font-size:13px;
  }
}
