.hidden {
   display: none;
}

.visible {
   display: block;
}

#conteudoServicos {
   height: calc(100vh - 91px);
   display: flex;
   /* border-top: 1px solid #000; */
}

/* Seção de catálogo dos serviços */

#catalogoServicos {
   width: 66.66%;
   height: 100%;
   overflow: auto;
   padding: 5%;
   display: flex;
   justify-content: space-around;
   flex-wrap: wrap;
   align-self: center;
}

.servicoItem {
   display: flex;
   flex-direction: column;
   align-items: center;
   width: 250px;
   height: fit-content;
}

.servicoItem p {
   text-align: center;
   font-size: 20px;
   cursor: pointer;
}

.link_servico:hover p {
   color: #0e5fc9;
}

.icon_i {
   width: 25px;
}

.icon_i:hover {
   opacity: 0.7;
   cursor: pointer;
}

.imgServico {
   width: 250px;
}

.link_servico:hover .disponivel{
   opacity: 0.7 ;
   cursor: pointer;
}

.indisponivel {
   opacity: 0.4;
   cursor: pointer;
}

/* Seção de Informação sobre os serviços */

#infomacaoServicos {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: space-between;
   width: 33.33%;
   background-color: #0b5cb8;
   overflow: auto;
}

.divInformacaoServicos {
   padding: 11% 11% 0;
}

.divInformacaoServicos p {
   color: #fff;
   text-align: justify;
   font-weight: 500;
   margin-bottom: 40px;
}

#abaixo {
   display: none;
}

#aoLado {
   display: inline;
}


#divBtCtt {
   text-align: center;
}

#btCtt {
   color: #fff;
   font-weight: bold;
   background-color: #0a5cb8;
   border-radius: 13px;
   border: solid 1px #fff;
   padding: 4px 12px;
   cursor: pointer;
   text-decoration: none !important;
}

#btCtt:hover {
   opacity: 0.7;
}

#balao {
   margin: 10% 10% 0;
   background-color: #f2f0f0;
   border-radius: 30px;
   padding: 5px;
   position: relative;
   align-items: center;
}

/* #imgBalao {
   position: absolute;
   top: 3px;
   left: 3px;
} */

#cabecalhoBalao{
   display:flex;
   align-items: center;
   justify-content: left;
   margin-bottom: 5px;
}

#fecharBalao {
   position: absolute;
   color: #0a5cb8;
   top : 12px;
   right: 12px;
   font-weight: bold;
   cursor: pointer;
}

#icon_i_big {
   width: 60px;
   margin-right: 5px;
}

#icon_desenvolv {
   width: 110px;
   margin-right: 5px;
}

#titBalao {
   text-align: center;
   color: #0a5cb8;
}

#corpoBalao{
   padding: 15px;
}

#textoBalao,
#obsBalao {
   text-align: justify;
}

#setaBalao {
   height: 30px;
   width: 30px;
   background-color: #f2f0f0;
   /* border: 1px solid #000;; */
   transform: rotate(45deg);
   display: block;
   position: absolute;
   bottom: -15px;
   left: calc(50% - 15px);
}

#obsBalao span {
   color: #0a5cb8;
   font-weight: 500;
}


#divImgInformacoes {
   text-align: center;
}

.personagem {
   width: 93%;
   margin: auto
}

.cf-turnstile {
   margin: 20px auto;
   display: flex;
   justify-content: center;
}

@media only screen and (max-width: 800px) {
   #conteudoServicos{
      flex-direction: column-reverse;
      justify-content: flex-end;
      height: auto;
   }

   #catalogoServicos {
      width: 100%;
      height: fit-content;
   }
   #infomacaoServicos {
      /* display: flex; */
      flex-direction: row;
      /* align-items: center; */
      /* justify-content: space-between; */
      width: 100%;
      height: fit-content;
   }

   .divInformacaoServicos {
      padding: 20px;
   }

   .personagem {
      display: none;
   }

   #balao {
      margin: 25px;
      flex-direction: column;
      padding: 15px;
   }

   #setaBalao {
      display: none;
   }

   #abaixo {
      display: inline;
   }
   
   #aoLado {
      display: none;
   }
 }


  /* AVALIACAO */
  .rating-options {
   display: flex;
   flex-direction: row;
   flex-wrap: nowrap;
   justify-content: center; 
   gap: 2px;
}

.rating-box {
   width: 55px;
   height: 40px;
   display: flex;
   justify-content: center;
   align-items: center;
   font-weight: bold;
   color: white !important;
   cursor: pointer;
   user-select: none;
   transition: transform 0.2s;
   outline: none !important;
   border-radius: 5px;
}

/* Esconde os radios */
.rating-options input[type="radio"] {
   display: none;
}

/* Aplica estilo quando selecionado */
.rating-options input[type="radio"]:checked + .rating-box {
   transform: scale(1.1);
   opacity: 75%;
   border: #0a5bb8 2px solid;
}

/* Cores por nota */
.rating-box[data-valor="0"] { background-color: #890E0E; }   /* vermelho forte */
.rating-box[data-valor="1"] { background-color: #C61818; }   /* vermelho vivo */
.rating-box[data-valor="2"] { background-color: #E24840; }   /* coral intenso */
.rating-box[data-valor="3"] { background-color: #F96441; }   /* laranja avermelhado */
.rating-box[data-valor="4"] { background-color: #FFC73B; }   /* laranja vivo */
.rating-box[data-valor="5"] { background-color: #F4DA22; }   /* amarelo vibrante */
.rating-box[data-valor="6"] { background-color: #B1E068; }   /* verde-limão */
.rating-box[data-valor="7"] { background-color: #91ED6B; }   /* verde cítrico */
.rating-box[data-valor="8"] { background-color: #49ba43; }   /* verde vivo */
.rating-box[data-valor="9"] { background-color: #35A82C; }   /* verde Apple */
.rating-box[data-valor="10"] { background-color: #2D8425; }  /* verde escuro forte */


#comentarioNota {
   width: 600px;
   font-size: 16px;
   border-radius: 5px;
   border: 1px solid #ccc;
   resize: vertical;
}

.avaliacao-button {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   position: absolute;
   left: 50%; 
   bottom: -80px;
   transform: translateX(-50%);
   border: none;
   outline: none;
   background-color: transparent;
}

.avaliacao-button:hover {
   cursor: pointer;
   transition: transform 0.2s ease;
}

.avaliacao-button:active {
   opacity: 1;
}

.avaliacao-button img {
   width: 80px;
   height: auto;
   border-radius: 50%; 
   cursor: pointer;
   background-color: #0a5bb8; 
   padding: 5px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
   margin-bottom: 10px; 
}

.avaliacao-button img:hover {
   background-color: #1779e9; 
}

.avaliacao-button span {
   font-size: 20px; 
   color: #0a5bb8; 
   font-weight: bold;
   text-transform: uppercase; 
}

.avaliacao-button span:hover {
   font-size: 22px; 
   color: #1779e9; 
   font-weight: bold;
   text-transform: uppercase; 
}

.nota-avaliacao{

   color: rgb(75, 75, 75) !important;
   text-align: left;
   font-weight: normal !important;
}

.rating-guides {
   display: flex;
   justify-content: space-between;
   width: 100%;
   padding: 0 5px;
 }
 
 .guia-label {
   font-size: 12px;
   color: rgb(75, 75, 75);
   width: 33.33%;
 }
 
 .guia-label:first-child {
   text-align: left;
 }
 
 .guia-label:nth-child(2) {
   text-align: center;
 }
 
 .guia-label:last-child {
   text-align: right;
 }

 .label-centralizado {
   display: block;
   width: 100%;
   text-align: center;
   font-size: 14px;
   font-weight: bold;
   margin-bottom: 10px;
 } 

 .titulo-avaliacao {
   flex: 1;
  /*  padding: 10px 15px; */
  padding: 12px 15px;
   text-align: center;
   background-color: #0a5bb8;
   cursor: pointer;
   border-radius: 15px 15px 0 0;
   font-weight: bold;
   color: #fff;
}

#comentarioNota::placeholder {
   font-family: Arial, sans-serif;
   font-size: 14px; 
   color: #999; 
   font-style: italic; 
   letter-spacing: 0.5px; 
}


.modal-avaliacao {
   position: fixed;
   z-index: 9999;
   left: 0;
   top: 0;
   width: 100vw;
   height: 100vh;
   overflow: auto;
   background-color: rgba(0, 0, 0, 0.50);
   display: flex;
   align-items: center;
   justify-content: center;
}

.modal-content-avaliacao {
   border-radius: 10px;
   height: fit-content;
   position: relative; 
}

.close-modal-avaliacao {
   position: absolute; 
/*    top: 40px; */
   right: 20px;
   margin-bottom: 30px;
   font-size: 35px;
   cursor: pointer;
/*    color: #0a5bb8; */
   color: #fff;
   z-index: 1; 
}

.avaliacaoModalContent {
   font-family: Arial, sans-serif !important;
   background-color: transparent;
padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   justify-content: start;
   align-items: center; 
   box-shadow: none;

}

.avaliacaoInfoContent {
   border-radius: 10px;
   text-align: center;
}

/* MODAL ERRO */
/* MODAL ERRO */
.modal {
   display: none;
   position: fixed;
   z-index: 1000;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0,0,0,0.5);
   box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
 }
 
 .modal-content {
   background-color: #fefefe;
   margin: 10% auto;
   padding: 20px;
   width: 80%;
   max-width: 500px;
   border-radius: 15px;
   position: relative;
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
 }
 
 .close-modal {
   color: #aaa;
   position: absolute;
   top: 15px;
   right: 20px;
   font-size: 24px;
   font-weight: bold;
   cursor: pointer;
   transition: color 0.3s;
   background: none;
   border: none;
   padding: 0;
   width: 25px;
   height: 25px;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .close-modal:hover {
   color: #ff0000;
 }
 
 .close-format-modal {
   color: #aaa;
   position: absolute;
   top: 15px;
   right: 20px;
   font-size: 24px;
   font-weight: bold;
   cursor: pointer;
   transition: color 0.3s;
   background: none;
   border: none;
   padding-left: 10px !important;
   width: 25px;
   height: 25px;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .close-format-modal:hover {
   color: #ff0000;
 }

 .modal-header {
   padding: 0;
   margin-bottom: 15px;
   text-align: center;
 }
 
 .modal-header h5 {
   color: rgb(245, 53, 53);
   margin: 0;
   font-size: 17px;
   font-weight: bold;
   line-height: 1.3;
   padding: 0 10px;
 }
 
 .modal-body {
   margin: 15px 0;
   padding: 0 5px;
   text-align: center;
   line-height: 1.5;
 }
 
 .modal-body p {
   margin-bottom: 2px;
   font-size: 15px;
   color: #333;
 }
 
 .modal-body p:last-child {
   margin-bottom: 0;
 }
 
 .modal-body a {
   color: #0066cc;
   text-decoration: underline;
   font-weight: 500;
 }
 
 .modal-footer {
   border-top: 1px solid #eee;
   padding-top: 15px;
   display: flex;
   justify-content: center;
   margin-top: 10px;
 }
 
 .modal-btn {
   padding: 10px 25px;
   border: none;
   cursor: pointer;
   text-decoration: none;
   font-size: 15px;
   background-color: #0066cc;
   color: white;
   transition: all 0.3s;
   border-radius: 6px;
   font-weight: 600;
   min-width: 180px;
   text-align: center;
 }
 
 .modal-btn:hover {
   opacity: 0.9;
   transform: translateY(-1px);
   box-shadow: 0 3px 8px rgba(0, 102, 204, 0.2);
 }