/* Início estilos gerais =============================================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "fredoka", sans-serif;
}

html::-webkit-scrollbar {
    display: block;
    width: 12px;
}

html::-webkit-scrollbar-track {
    background-color: transparent;

}

html::-webkit-scrollbar-button {
    background-color: #ffffff;
    display: none;
}

html::-webkit-scrollbar-thumb {
    background-color: #1a17c0;
}


body {
    background-color: #f3f3f3;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    flex: 1;
}


/* Fim estilos gerais =============================================================================================== */

/* Início Navbar e sidebar =============================================================================================== */

.menu-responsivo {
    display: none;
    top: 15px;
    left: 15px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: white;
}

.menu-responsivo img {
    width: 30px;
    height: 30px;
}


.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 100%;
  background-color: white;
  border-right: 1px solid #000081;
  overflow-x: hidden;
  z-index: 100;
  padding: 10px;
  flex-direction: column;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
  display: flex ;
}
.sidebar.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


#botao-fechar {
  width: 35px;
  background-color: red;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid white;
  cursor: pointer;
  position: fixed;
  left: 330px;
  top: 12px;
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-300px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#botao-fechar.ativo {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

#fundo-preto {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
#fundo-preto.ativo {
  opacity: 1;
  visibility: visible;
}


.sidebar::-webkit-scrollbar {
    display: block;
    width: 4px;
}

.sidebar::-webkit-scrollbar-track {
    background-color: transparent;

}

.sidebar::-webkit-scrollbar-button {
    background-color: #f0f0f0;
    display: none;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #1a17c0;
    border-radius: 10px;
}

.lista-sidebar {
    flex: 1;
}
 

.icon-sidebar {
    width: 25px;
    height: 25px;
    cursor: pointer;
    margin-left: 10px;
    fill: #000081;
    stroke: #000081;
}

.items-sidebar {
    font-size: 16px;
    width: 0;
    border-radius: 8px;
}

.items-sidebar a {
    display: grid;
    grid-template-columns: 40px 250px;
    align-items: center;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    color: #000081;
}

.items-sidebar a p {
    padding-top: 15px;
    padding-bottom: 15px;
}


.items-sidebar:hover {
    background-color: #1a17c0;
    width: 100%;
}

.items-sidebar:hover .icon-sidebar {
    fill: #ffffff;
    stroke: #ffffff;
}

.items-sidebar a:hover {
    font-weight: 500;
    color: white;
}

.navbar {
  margin: 0;
  width: 100%;
  height: auto;
  max-height: 70px; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: radial-gradient(at 50% 50%, #000081, #030434);
  border-bottom: 3px solid #00acc1;
  box-shadow: 0px -3px 10px 2px #000081;
  padding: 4px 8px;
  position: fixed;
  z-index: 90;
}

.icones-usuarios,
.icones {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 25px;
    width: 450px;
}

.icones-quadras {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    gap: 25px;
    width: 450px;
}

.opcao-navbar {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: white;
    text-align: center;
    gap: 6px;
    text-decoration: none;
}

.opcao-navbar div {
    display: flex;
    justify-content: center;
}

.icon {
    width: 22px;
    height: 22px;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center; 
}

.logo a{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.logo img {
    width: 200px; 
}

/* Fim sidebar e navbar =============================================================================================== */


/* Início estilos container principal =============================================================================================== */

.container-principal {
    position: relative; 
    display: flex;
    justify-content: center;
    align-items: start;
    width: 100%;
    flex: 1;
    padding-top: 60px;
}

.conteudo {
    width: 100%;
    height: auto; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-busca {
    display: grid;
    align-items: center;
    padding: 20px;
    width: 100%;
}

.busca-resultado {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
}

.formulario-busca {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 750px;
    padding: 10px;
}

.aviso-form {
    text-align: center;
    color: #000000;
    font-size: 16px;
    font-style: italic;
    margin-top: -10px;
    font-weight: 500;
}

h1 {
    color: #000081;
    margin-bottom: 10px;
    font-size: 36px;
    text-align: center;
    width: 100%;
    font-weight: 550;
}

.buscador {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    font-weight: 600;
}

.dados-pesquisa {
    width: 100%;
    display: grid;
    grid-template-rows: 30px 18px;
    margin: 10px 0;
}

.input-botao {
    display: flex;
    box-shadow: 14px 6px 25px -14px #000081;
    color: green;
    border-radius: 5px;
    height: 40px;
}

.buscador input {
    border: none;
    font-size: 16px;
    height: 40px;
    display: block;
    width: 100%;
    padding: 10px;
    font-weight: 600;
    background-color: white;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom: 1px solid #00acc1;
    border-top: 1px solid #00acc1;
    border-left: 1px solid #00acc1;
}

.buscador input:focus {
    outline: none;
}

.botao-acao-formulario {
    border: none;
    cursor: pointer;
    background-color: #00acc1;
    color: white;
    font-size: 16px;
    font-weight: 500;
    height: 40px;
    margin-bottom: 10px;
    padding: 0 10px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom: 1px solid #00acc1;
    border-top: 1px solid #00acc1;
    border-right: 1px solid #00acc1;
}

.botao-acao-formulario:hover {
    background-color: #008799;
}

.sugestoes-pesquisa {
    background-color: white;
    display: none;
    min-height: 30px;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    position: absolute;
    margin-top: 40px;
    z-index: 2;
}

.sugestoes-pesquisa div {
    padding: 8px;
    cursor: pointer;
    color: #000081;
}

.sugestoes-pesquisa div:hover {
    background-color: #1a17c0;
    color: white;
}

.aviso-pesquisa {
    margin-top: 15px;
    margin-left: 8px;
    width: 100%;
    display: none;
    font-size: 14px;
    color: red;
    font-weight: 500;
}

/* Fim estilos container principal  =============================================================================================== */


/* Inicio estilos container resultados de busca  =============================================================================================== */

.container-resultados-busca {
    width: 100%;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    position: relative;
}

.sugestoes-quadras {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.resultados-busca {
    width: 100%;
}

.resultados-quadras {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.titulo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000081;
}

.titulo h2 {
    text-align: center;
    margin: 0px 8px;
    font-weight: 550;
    font-size: 25px;
    width: auto;
    white-space: nowrap;
}

.linha {
    border-bottom: 2px solid #000081;
    flex-grow: 1;
    width: 100%;
}

.container-quadras,
.outras-quadras-encontradas {
    width: 100%;
    padding: 5px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 20px;
}

/* fim estilos container resultados de busca  =============================================================================================== */

/* Inicio quadras  =============================================================================================== */

.quadra {
    background-color: white;
    border-radius: 10px;
    position: relative;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border: 1px solid #00acc1;
    flex-wrap: wrap;
    margin: 20px 0;
}

.campo-imagens-quadra {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    padding: 5px;
    width: 350px;
}

.imagem-principal {
    border: 1px solid #00acc1;
    width: 300px;
    height: 300px;
    object-fit: contain;
}

.container-miniaturas {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 5px 3px;
    overflow-y: auto;
    border: 1px solid #00acc1;
    border-radius: 5px;
}

.container-miniaturas img {
    width: 70px;
    height: 70px;
    cursor: pointer;
    border-radius: 5px;
}

.dados-quadra {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 15px;
    padding: 10px 0;
    max-width: 750px;
    min-width: 700px;
}

.nome-quadra {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nome-quadra p {
    font-size: 28px;
    font-weight: 500;
    color: #000081;
}

.mais-informacoes {
    padding: 5px;
    border: none;
    background-color: #00acc1;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    font-size: 18px;
    transition: background-color 0.3s;
    height: 100%;
    gap: 5px;
    text-align: center;
    display: none;
}

.mais-informacoes:hover {
    background-color: #008799;
}

.seta-indicadora-mais-info {
    font-size: 12px;
    margin-top: 3px;
}

.avaliacoes-agendamentos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}

.estrela-avaliacao,
.quantidade-agendamentos,
.descricao-quadra {
    display: flex;
    align-items: center;
    justify-content: center;
}

.estrela-avaliacao{
    cursor: pointer;
}

.total-avaliacoes {
    font-size: 15px;
    color: black;
    margin-left: 5px;
}

.estrela {
    fill: #00acc1;
    width: 20px;
    height: 100%;
    margin-top: 3px;
}

.valor-avaliacao {
    margin-left: 5px;
}

.valor-avaliacao,
.valor-quantidade p,
.valor-agendamentos {
    font-weight: 500;
    color: #000081;
}

.descricao-quadra {
    cursor: pointer;
}

.valor-quantidade:hover,
.descricao-quadra div:hover {
    text-decoration: underline;
}

.seta-indicadora {
    font-size: 14px;
}

.descricao-quadra,
.valor-quantidade {
    display: flex;
    align-items: center;
    gap: 5px;
}

.container-modalidades-quadra {
    position: relative;
    width: 100%;
}

.modalidades-quadra {
    width: 100%;
    overflow-y: auto;
    border: 2px solid #00acc1;
    border-radius: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 5px;
    gap: 15px;
}

.titulo-modalidades {
    position: absolute;
    background-color: white;
    padding: 2px;
    top: -11px;
    left: 5px;
    font-size: 13px;
    color: #000081;
}

.modalidades-quadra::-webkit-scrollbar,
.container-miniaturas::-webkit-scrollbar {
    display: block;
    height: 8px;
}

.modalidades-quadra::-webkit-scrollbar-track,
.container-miniaturas::-webkit-scrollbar-track {
    background-color: transparent;

}

.modalidades-quadra::-webkit-scrollbar-button,
.container-miniaturas::-webkit-scrollbar-button {
    background-color: #ffffff;
    display: none;
}

.modalidades-quadra::-webkit-scrollbar-thumb,
.container-miniaturas::-webkit-scrollbar-thumb {
    background-color: #1a17c0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.modalidade {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.icone-modalidade {
    width: 30px;
    height: 30px;
}

.nome-modalidade {
    border: 1px solid #00acc1;
    border-radius: 5px;
    padding: 4px;
    text-align: center;
    width: 100%;
    color: #000081;
    font-weight: 500;
    white-space: nowrap;
}


.endereco {
    font-size: 18px;
    color: #000081;
}

.cobertura-quadra{ 
    font-size: 14px; 
    font-weight: 550;
    color: #000081;
    text-transform: uppercase;
}
 
.horario-contato {
    display: flex;
    justify-content: space-between;
}

.horario-funcionamento {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    font-size: 20px;
    color: #000081;
    cursor: pointer;
    position: relative;
    width: auto;
}

.aberto-fechado {
    font-weight: 500;
}

.aberto {
    color: green;
}

.fechado {
    color: red;
}

.botao-contato {
    padding: 5px 15px;
    border: none;
    background-color: #00acc1;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s;
    gap: 5px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;

}

.botao-contato:hover {
    background-color: #008799;
}

.botao-contato img{
    width: 20px;
    height: 20px;
}

.popup-contato,
.popup-descricao{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.popup-content,
.popup-content-descricao{
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: auto;
    position: relative;
    border: 2px solid #00acc1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}

.popup-content-descricao p {
    max-width: 500px;
    margin-bottom: 10px;
    font-size: 22px;
    text-align: justify;
    padding: 10px;
}

.popup-content p {
    color: #000081;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}

.popup-content .tipo {
    color: #1a17c0;
    font-weight: 500;
}

.fechar-popup,
.fechar-popup-descricao{
    padding: 5px 15px;
    border: none;
    background-color: #00acc1;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    transition: background-color 0.3s;
    width: auto;
    height: 100%;
    text-decoration: none;
}

.fechar-popup:hover,
.fechar-popup-descricao:hover {
    background-color: #008799;
}

.contato {
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.lista-contatos {
    margin: 15px 0;
    width: 100%;
    text-align: start;
}

.icones-contatos {
    margin-left: 15px;
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 60px;
}

.icones-contatos img {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.valor-agendar {
    display: flex;
    justify-content: space-between;
    color: white;
    font-weight: 500;
    gap: 5px;
}

.valor-horarios {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    border: solid;
    font-size: 16px;
}

.item-horario {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000081;
    border: 1px solid #000081;
    height: 100%;
}

.regras-cancelamento {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000081;
    border: 1px solid #000081;
    height: 100%;
    font-size: 14px;
    padding: 5px;
}

.regras-cancelamento p {
    white-space: nowrap;
}

.regra {
    display: flex;
    gap: 10px;
    font-weight: normal;
    color: red;
}

.descricao {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 2px;
}

.aviso-extra {
    font-size: 13px;
    font-weight: normal;
    color: #000000;
}

.preco {
    background-color: #000081;
    color: #FFFFFF;
    width: auto;
    height: 100%;
    padding-left: 60px;
    padding-right: 20px;
    font-weight: 500;
    text-align: end;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.botao-agendar {
    padding: 5px 35px;
    border: none;
    background-color: #00acc1;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 28px;
    transition: background-color 0.3s;
    height: 100%;
    gap: 5px;
    text-align: center;
}

.botao-agendar:hover {
    background-color: #008799;
}

.nenhuma-quadra {
    color: red;
    font-size: 24px;
    font-weight: 500;
    margin-top: 20px;
    z-index: 12;
}

.horario-funcionamento:hover .span-horarios {
    display: block;
}

.seta {
    transition: ease-in-out 0.4s;
    font-size: 16px;
}

.horario-funcionamento:hover .seta {
    transform: rotate(180deg);
}

.span-horarios {
    width: 100%;
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #00acc1;
    border-radius: 5px;
    padding: 10px;
    width: auto;
    height: auto;
    left: 0;
    z-index: 2;
}

.dia label {
    font-weight: 500;
    width: 100px;
}

.dia {
    height: 30px;
    display: flex;
    white-space: nowrap;
}

.botao-carregar-mais {
    padding: 5px 35px;
    border: none;
    background-color: #00acc1;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 22px;
    transition: background-color 0.3s;
    height: 100%;
    text-align: center;
    display: block;
    justify-self: center;
}

.botao-carregar-mais:hover {
    background-color: #008799;
}

.popup-formulario-agendamento {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.formulario-agendamento {
    position: relative;
    border: 2px solid #00acc1;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    justify-self: center;
    align-items: center;
    padding: 20px;
    background-color: white;
    width: 550px;
    max-height: 95%;
    overflow: auto;
}


.formulario-agendamento::-webkit-scrollbar {
    display: block;
    width: 6px;
}

.formulario-agendamento::-webkit-scrollbar-track {
    background-color: transparent;

}

.formulario-agendamento::-webkit-scrollbar-button {
    background-color: #f0f0f0;
    display: none;
}

.formulario-agendamento::-webkit-scrollbar-thumb {
    background-color: #000081;
    border-radius: 10px;
}


.titulo-dados-agendamento {
    font-size: 24px;
    font-weight: 500;
    color: #000081;
    text-align: center;
    margin-bottom: 10px;
}

.informativo-pagamento-adiantado p{
    color: white;
    text-align: center;
    width: 100%;
    background-color: #00acc1;
    padding: 10px 5px;
    border-radius: 5px;
    margin-bottom: 30px; 
}

 






.valores-agendamento.bloco-adiantamento {
  border: 1px solid;
  border-radius: 10px;
  padding: 10px;  
  border: 1px solid #000081;
}

.valores-agendamento.bloco-adiantamento .valor-adiantado-resumo { 
  font-size: 16px;  
  background-color: rgb(0, 160, 0);
  padding: 5px;
  border-radius: 5px;
}

.valores-agendamento.bloco-adiantamento .valor-adiantado-resumo p {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
}

.valores-agendamento.bloco-adiantamento .valor-adiantado-resumo .valor-adiantado { 
  font-weight: 600;
  color: white;
}

.valores-agendamento.bloco-adiantamento .dados-bancarios {
  margin-top: 12px;
  border: 1px dashed #000081;
  border-radius: 5px; 
  background-color: white;
  padding: 10px 5px;
  display: grid;
  gap: 6px;
}

.valores-agendamento.bloco-adiantamento .linha-dado {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.valores-agendamento.bloco-adiantamento .linha-dado span {  
  color: #000081;
}

.valores-agendamento.bloco-adiantamento .linha-dado strong {  
  word-break: break-all;
  font-weight: 600;
  color: #1a17c0;
}

.valores-agendamento.bloco-adiantamento .upload-adiantamento {
  margin-top: 12px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.valores-agendamento.bloco-adiantamento .btn-copiar-pix {
  padding: 6px 10px;
  cursor: pointer;
  border: none;
  background-color: rgb(0, 160, 0);
  color: white;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  height: auto;
}

.valores-agendamento.bloco-adiantamento .btn-comprovante {
    padding: 6px 10px;
    cursor: pointer;
    border: none;
    background-color: #000081;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    height: auto; 
}


.valores-agendamento.bloco-adiantamento .nome-arquivo {
  justify-self: center;
  font-size: 13px;
  font-style: italic;
  max-width: 60%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.valores-agendamento.bloco-adiantamento .aviso-dados-agendamento {
  grid-column: 1 / -1;
  font-size: 13px;
  font-weight: 600;
  text-align: right;
  min-height: 18px;
}

.valores-agendamento.bloco-adiantamento .nome-arquivo {
  grid-column: 1 / -1;
  justify-self: center;
  font-size: 13px;
  font-style: italic;
  max-width: 60%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

 





















.dados-formulario-agendamento {
    width: 100%;
    display: grid;
    grid-template-rows: 40px 18px;
    margin-bottom: 22px;
    position: relative;
}

.label-dados {
    position: absolute;
    top: 7px;
    left: 0;
    color: gray;
    transition: ease-in-out 0.2s;
    font-size: 18px;
    padding-left: 5px;
}

.dados-formulario-agendamento input {
    border: none;
    background-color: transparent;
    border-bottom: 1px solid #3737fa;
    font-size: 16px;
    display: block;
    width: 100%;
    height: 40px;
    z-index: 2;
}

.dados-formulario-agendamento input:focus {
    box-shadow: 0px 4px 10px -8px #000081;
    outline: none;
}

.dados-formulario-agendamento input:focus+.label-dados,
.dados-formulario-agendamento input:not(:placeholder-shown)+.label-dados {
    top: -20px;
    font-size: 14px;
    color: #000081;
    color: #000081;
    padding-left: 0px;
}

.dados-formulario-agendamento input::placeholder {
    color: transparent;
}


.aviso-dados-agendamento {
    display: none;
    font-size: 15px;
    color: red;
    height: 18px;
    font-weight: 500;
    text-align: end;
}

.sugestoes-modalidade,
.sugestoes-frequencia,
.sugestoes-quadra {
    background-color: white;
    display: none;
    min-height: 30px;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    position: absolute;
    z-index: 5;
    right: 0;
    top: 40px;
}

.sugestoes-modalidade div,
.sugestoes-frequencia div,
.sugestoes-quadra div {
    padding: 8px;
    cursor: pointer;
    color: #000081;
}

.sugestoes-modalidade div:hover,
.sugestoes-frequencia div:hover,
.sugestoes-quadra div:hover {
    background-color: #1a17c0;
    color: white;
}

.sugestoes-horario {
    background-color: white;
    min-height: 30px;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    position: absolute;
    z-index: 5;
    right: 0;
    top: 40px;
}

.sugestoes-horario div {
    padding: 8px;
    cursor: pointer;
    color: #000081;
    transition: background-color 0.2s, color 0.2s;
}

.sugestoes-horario div:hover,
.sugestoes-horario .selected {
    background-color: #1a17c0;
    color: white;
}

.sugestao-carregando {
    width: 100%;
}

.horario-agendamento {
    position: relative;
}

#hover-aviso:hover .aviso-sugestao-horario {
    display: block;
}

.aviso-sugestao-horario {
    display: none;
    position: absolute;
    border: 1px solid #000081;
    background-color: white;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    z-index: 5;
    color: #1a17c0;
    right: 10px;
    bottom: 80px;
    font-size: 16px;
    max-width: 220px;
    font-weight: normal;
}

.aviso-sugestao-horario ul {
    list-style: none;
    font-weight: 500;
}

.aviso-sugestao-horario p {
    margin-top: 10px;
    font-weight: 500;
}

.data-horario {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    width: 100%;
}

#data-agendamento,
#horario-agendamento {
    width: 100%;
    cursor: pointer;
}

.modalidade-agendamento,
.quadra-agendamento {
    cursor: pointer;
}

.frequencia-agendamento {
    cursor: pointer;
}






.valores-agendamento {
    background: #F4F4FF;
    border: 1px solid #000081;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 15px;
    margin-top: -10px;
    text-align: center;
    padding: 5px;
    font-size: 16px;
}

.valores-agendamento p {
    color: #000081;
    font-weight: normal;
}

.valores-agendamento p span {
    color: #1a17c0;
    margin-left: 3px;
    font-weight: 500;
}




.upload-adiantamento {
  margin-top: 8px;
}

.btn-comprovante {
  display: inline-block;
  padding: 10px 14px;
  background: #000081;
  color: #ffffff;
  border: 1px solid #000081;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: filter .2s ease, transform .02s ease-in;
  user-select: none;
}

.btn-comprovante:hover { filter: brightness(1.05); }
.btn-comprovante:active { transform: scale(0.99); }

.nome-arquivo {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: #1a17c0;
  font-weight: 500;
  word-break: break-word;
}



#aviso-comprovante { 
    display: none;
    font-size: 15px;
    color: red;
    height: 18px;
    font-weight: 500;
    text-align: center; 
}














.agendar-horario {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.agendar-horario button,
.agendar-horario span {
    padding: 6px 10px;
    cursor: pointer;
    border: none;
    background-color: #00acc1;
    color: white;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    height: 38px;
    transition: background-color 0.3s;
}

.agendar-horario button:hover,
.agendar-horario span:hover {
    background-color: #008799;
}

.popup-confirmacao-agendamento {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.confirmacao-agendamento {
    background: white;
    border: 2px solid #000081;
    border-radius: 5px;
    padding: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.titulo-confirmacao {
    font-size: 28px;
    font-weight: 600;
    color: #000081;
    margin-bottom: 10px;
    text-align: center;
}

.confirmacao-whatsapp {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
}

.dados-agendamento {
    background: #F4F4FF;
    border: 1px solid #000081;
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 16px;
}

.dados-agendamento p {
    margin: 5px 0;
    font-weight: 500;
    color: #000081;
}

.dados-agendamento p span {
    font-weight: normal;
    color: #666666;
}


.cancelamento {
    font-size: 16px;
    color: #666666;
}

.cancelamento a {
    color: red;    
    text-decoration: underline;
    font-size: 17px;
    cursor: pointer;
}


.fechar-popup-confirmacao {
    padding: 6px 10px;
    cursor: pointer;
    border: none;
    background-color: #00acc1;
    color: white;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.fechar-popup-confirmacao:hover {
    background-color: #008799;
}



.info-wpp{
    position: absolute;
    color: #000081;
    border: 1px solid #1a17c0;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    right: 5px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
}

.popup-info-celular {
    position: absolute;
    bottom: 200px;  
    right: 10px; 
    color: #1a17c0; 
    border-radius: 6px;
    padding: 12px; 
    z-index: 100;       
    border: 1px solid #000081;
    background-color: white;
    font-size: 16px;
    max-width: 220px;
    font-weight: normal;
  }
  
  .popup-info-celular .popup-content-info {
    position: relative;  
    display: flex;
    text-align: start;   
  }
  
  .popup-info-celular .fechar-popup-info { 
    top: 2px;
    right: 2px;
    font-size: 14px;
    cursor: pointer;
    color: #1a17c0;
  }
  
  




.condicoes {
    font-size: 14px;
    color: #000081;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    width: 100%; 
    margin-bottom: 20px;
}

.condicoes a {
    text-decoration: none;
    color: #00acc1;
}

.condicoes a:hover {
    text-decoration: underline;
}

.condicoes div{
    display: flex;
    align-items: center;
    gap: 10px; 
}

.condicoes label{
    text-align: start;
    width: 100%; 
}

#aviso-condicoes{
    text-align: center !important;
}

#aceite-termos[type=checkbox]{ 
    width: 22px;
    height: 22px;
    cursor: pointer;
}












 

.popup-avaliacoes {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.fechar-popup-avaliacoes {
    padding: 5px 15px;
    border: none;
    background-color: red;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    transition: background-color 0.3s;
    width: 40px;
    height: 40px;
    text-decoration: none;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 20px;
    top: 15px;
    font-size: 28px;
}

.fechar-popup-avaliacoes:hover {
    background-color: rgb(161, 0, 0);
}

.exibir-mais-comentarios{
    padding: 5px 15px;
    border: none;
    background-color: #00acc1;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    transition: background-color 0.3s;
    width: auto;
    height: 40px; 
    display: flex;
    align-items: center;
    justify-content: center; 
    margin-bottom: 10px;
}

.exibir-mais-comentarios:hover {
    background-color: #008799;
}

.popup-content-avaliacoes {
    border: 2px solid #00acc1;
    border-radius: 5px;
    display: flex;
    flex-direction: column; 
    align-items: center;
    width: 85%;
    height: 80vh; 
    background-color: white; 
    overflow: auto;
    position: relative;
  }

  .titulo-avaliacoes {
    font-size: 28px;
    font-weight: 500;
    color: #000081;
    text-align: center;
    margin: 15px;
  }

  .total-avaliacoes-quadra{
    font-size: 24px;
    color: #1a17c0; 
    font-weight: 500;
  }
  
  #avaliacoes-quadra-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  
  #avaliacoes-quadra-container p {
    padding: 15px 0;
  }
  
  
  .titulo-avaliacoes {
    font-size: 28px;
    font-weight: 500;
    color: #000081;
    text-align: center;
  }
  
  .avaliacao-campo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    column-gap: 15px;
    padding: 15px 0;
  }

  .quantidade-progresso{
    display: flex;
    width: 100%; 
    gap: 10px;
    padding: 10px;  
  }
  
  .avaliacao-media {
    width: 100%;
    height: 100%;
    padding: 15px; 
    border: 3px solid #000081;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  
  
  .avaliacao-media h1 {
    margin: 0;
    padding: 0;
    font-size: 90px;
    font-weight: 600;
    color: #000081;
  }
  
  .avaliacao-campo p {
    align-self: center;
    height: 100%;
    color: #000081;
    font-weight: 500;
  }
  
  .avaliacao-media .estrela-externa {
    position: relative;
    font-size: 45px;
    display: inline-block;
  }
  
  .avaliacao-media .estrela-externa::before {
    content: "\2605 \2605 \2605 \2605 \2605";
    color: gray;
  }
  
  .avaliacao-media .estrela-interna {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
  }
  
  .avaliacao-media .estrela-interna::before {
    content: "\2605 \2605 \2605 \2605 \2605";
    color: #00acc1;
  }
  
   
  
  .avaliacao__progresso {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%; 
  }
  
  .avaliacao__progresso__valor {
    height: auto;
    display: flex;
    align-items: center;
    column-gap: 1rem;
  }
  
  .avaliacao__progresso__valor .estrela {
    font-size: 20px;
    color: #1a17c0;
  }
  
  .avaliacao__progresso__valor p {
    font-size: 22px;
  }
  
  .avaliacao__progresso__valor p:last-child {
    width: 60px;
    text-align: center;
  }
  
  .avaliacao__progresso .progresso {
    flex: 1 1 0;
    height: 12px;
    background-color: #0011ff56;
    width: auto;
  }
  
  .barra {
    height: 100%;
    background-color: #1a17c0;
  }
  
  .comentarios {
    width: 100%;
    height: auto;
  }
  
  .comentario-individual {
    width: 100%;
    display: flex;
    gap: 10px;
    border-top: 2px solid #00acc1;
    padding: 20px;
  }
  
  .dados-usuario-comentado {
    display: grid;
    grid-template-columns: 110px auto;
    height: auto;
  }
  
  .imagem-comentario-usuario {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  
  .imagem-comentario-usuario p {
    margin-top: 8px;
    color: #000081;
    border: 1px solid #1a17c0;
    border-radius: 5px;
    padding: 3px 10px;
    font-weight: 500;
  }
  
  
  .imagem-comentario-usuario img {
    width: 100%;
    height: 70px;
  }
  
  .nome-data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-left: 15px;
    font-size: 20px;
    color: #1a17c0;
    font-weight: 500;
  }
  
  .estrelas-comentario {
    color: #00acc1;
    font-size: 26px;
    padding: 0;
    margin: 0;
  }
  
  #estrela {
    color: #00acc1;
    font-size: 26px;
    padding: 0;
    margin: 0;
  }
  
  .comentario-usuario {
    border: 1px solid lightgray;
    padding: 5px;
    width: 100%;
  }
  
  .filtros-comentarios {
    text-align: center;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    color: #000081;
    font-weight: 600;
    font-size: 20px;
  }
  
  .filtros-comentarios label {
    margin-right: 5px;
  }
  
  #ordenar-comentarios {
    font-size: 16px;
  }

/* fim quadras  =============================================================================================== */

 


@media (max-width: 800px) {
    .plano-fundo {
        background-size: contain;
        background-attachment: scroll;
    }

    .menu-responsivo {
        display: flex;
    }

    .menu-responsivo img {
        width: 24px;
        height: 24px;
    }

    .navbar {
        padding: 5px 10px;
    }

    .icones-usuarios,
    .icones-quadras {
        display: none;
    }
 

    .logo img {
        width: 135px;
    }

    .container-busca {
        padding: 0px;
        margin-top: 0px;
        padding-bottom: 10px;
    }

    h1 {
        font-size: 24px;
    }

    .formulario-busca {
        width: 100%
    }


    .bola img {
        width: 50px;
        height: 50px;
    }

    .nome-esporte {
        font-size: 14px;
        width: 80px;
        height: 40px;
    }

    .dados-pesquisa {
        margin: 5px 0;
    }

    .botao-acao-formulario {
        font-size: 16px;
    }

    .aviso-form {
        font-size: 12px;
    }

    .quadra {
        width: 100%;
        padding: 5px;
        font-size: calc(100% - 10%);
        gap: 5px;
    }

    .dados-quadra {
        width: 100%;
        min-width: 0;
        padding: 0;
        row-gap: 7px;
    }

    .valor-agendar {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .container-popup-formulario,
    .botao-agendar {
        width: 100%;
    }

    .botao-agendar {
        font-size: 24px;
    }

    .formulario-agendamento {
        width: 100%;
        margin: 0 5px;
    }

    .avaliacoes-agendamentos,
    .horario-contato {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .popup-content-descricao {
        padding: 10px;
        margin: 0 5px;
    }

    .aviso-pesquisa {
        font-size: 10px;
    }

    .titulo h2 {
        font-size: 18px;
    }

    .titulos-outras-quadras {
        font-size: 18px;
    }

    .titulos-outras-quadras img {
        width: 40px;
        height: 40px;
    }

    .nome-quadra {
        display: block;
        text-align: center;
    }

    .nome-quadra p {
        font-size: 24px;
    }

    .avaliacoes-agendamentos {
        font-size: 14px;
    }


    .horario-funcionamento,
    .botao-contato {
        font-size: 15px;
    }

    .botao-contato img{
        width: 16px;
        height: 16px;
    }

    .endereco,
    .cobertura-quadra {
        font-size: 12px;
        justify-content: center;
        align-items: center;
    }

    .valor-horarios {
        font-size: 13px;
    }

    .aviso-extra {
        font-size: 10px;
    }

    .regras-cancelamento {
        font-size: 10px;
    }

     
    .descricao-quadra {
        gap: 0px;
    }

    .estrela {
        width: 14px;
    }

    .modalidades-quadra {
        font-size: 10px;
    }

    .titulo-modalidades {
        font-size: 10px;
        top: -8px;
    }

    .total-avaliacoes {
        font-size: 10px;
    }

    .seta-indicadora {
        font-size: 10px;
    }

    .label-dados {
        font-size: 15px;
        top: 9px;
    }

    .dados-formulario-agendamento input:focus+.label-dados,
    .dados-formulario-agendamento input:not(:placeholder-shown)+.label-dados {
        font-size: 11px;
    }

    .aviso-dados-agendamento {
        font-size: 12px;
    }


    .mais-informacoes {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .avaliacoes-agendamentos,
    .container-modalidades-quadra,
    .endereco,
    .horario-contato,
    .valor-agendar,
    .cobertura-quadra {
        display: none;
    }
 

    .popup-content-avaliacoes {
        width: 100%;
        margin: 0 5px;
    }

    .quantidade-progresso{
        flex-direction: column;      
     }
   
     .dados-usuario-comentado{   
       display: flex; 
       flex-direction: column-reverse;
       gap: 10px;
       width: 120px;
     }
   
     .imagem-comentario-usuario img{
       height: 40px;
     }
   
     .imagem-comentario-usuario p{
       font-size: 12px;
       width: 100%;
     }
   
     .nome-data{
       font-size: 14px;
       padding: 0;
       text-align: center;
       gap: 5px;
     }
   
     .comentario-individual{
       padding: 10px;
     }
   
     .estrelas-comentario{
       font-size: 20px;
     }

     .fechar-popup-avaliacoes { 
        width: 35px;
        height: 35px; 
        font-size: 24px;
    }

    

     .imagem-principal{
        width: 200px;
        height: 200px;
    }
    
}