@charset "utf-8";

/* ========================================
   AVALIAÇÃO E ESTATISTICA
   ======================================== */

.Conteiner_avaliacao{
	width:100%;
	height:auto;
	background: #FFF;
	border-radius:10px;
	padding:20px;
	display: flex;
	gap:40px;
	}
	
.left_avalia{
	width:50%;
	}
.rigth_avalia{
	width:50%;
	}	
.agrupa_cv{
	display: flex;
    gap: 2px; /* Espaço de 2px entre os elementos */
    align-items: center; /* Alinha os elementos verticalmente ao centro */
	flex-wrap: wrap;
	}
.avalia-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
}

@media(max-width: 600px){
  .avalia-title {
    font-size: 1.2rem;
  }
 .Conteiner_avaliacao{
	flex-wrap: wrap;
	gap:20px;
	} 
  .left_avalia{
	width:100%;
	}
.rigth_avalia{
	width:100%;
	}
}
	
/* ========================================
   CURTIDA
   ======================================== */
.BT_curtida {
	width:100%;
    height: 50px;
    padding-left: 40px;
    padding-right: 10px;
    background: url(../../x-dados/icones/curtir.svg) no-repeat left center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    position: relative; /* Para poder posicionar o número */
}
.BT_curtida:hover {
    background: url(../../x-dados/icones/curtir_hover.svg) no-repeat left center;
}
.BT_curtida.active {
    background: #000 url(../../x-dados/icones/curtir_ok.svg) no-repeat center center;
}
/* Ajustando o número de curtidas */
#total_curtida {
    position: absolute;
    right: 10px; /* Ajuste a posição à direita */
    font-size: 18px;
    font-weight: bold;
    z-index: 2; /* Coloca o número acima do ícone */
}
/* Ocultando o número de curtidas quando o estado "active" for ativado */
.BT_curtida.active #total_curtida {
    display: none; /* Oculta o número quando o botão está ativo */
}	

/* ========================================
   VISUALIZAÇÃO
   ======================================== */
.BT_visualiza {
	width:100%;
    height: 50px;
    padding-left: 40px;
    padding-right: 10px;
    background: url(../../x-dados/icones/visualizacao.svg) no-repeat left center;
    cursor: pointer;
	display: flex;
    align-items: center;
  	 justify-content: center;
    transition: background 0.3s;
    position: relative;
	border-top:1px solid #CCC;
	border-bottom:1px solid #CCC;
}
#total_visualiza {
    position: absolute;
    right: 10px; /* Ajuste a posição à direita */
    font-size: 18px;
    font-weight: bold;
    z-index: 2; /* Coloca o número acima do ícone */
}	
/* ========================================
   AVALIAÇÃO
   ======================================== */
.BT_estrelas {
    height: 50px;
    cursor: pointer;
    padding-right: 10px;
	padding-left:5px;
	display: flex;
    gap: 1px;
    align-items: center;
    justify-content: flex-start;
    transition: background 0.3s;
    position: relative; 
}
.BT_estrelas.active {
    background: #000  url(../../x-dados/icones/curtir_ok.svg) no-repeat center center;
}
.estrela {
    width: 30px;
    height: 40px;
    background: url(../../x-dados/icones/estrela.svg) no-repeat center center;
    transition: background 0.3s, transform 0.2s;
}
.estrela:hover {
    background: url(../../x-dados/icones/estrela_hover.svg) no-repeat center center;
}
.estrela.selecionada {
    background: url(../../x-dados/icones/estrela_hover.svg) no-repeat center center;
}
/* Ajuste para o número total de estrelas */
#total_estrela {
    position: absolute;
    right: 10px;
    font-size: 18px;
    font-weight: bold;
    z-index: 2; /* Coloca o número acima dos ícones das estrelas */
}
/* Ocultar o número de estrelas quando o estado "active" for ativado */
.BT_estrelas.active #total_estrela {
    display: none; /* Oculta o número de estrelas quando o botão está ativo */
}

/* ========================================
   SIGA-NOS — BOTÕES DE AÇÃO
   ======================================== */
.bkRedes_mkt {
	width: 100%;
	margin-top: 7px;
	display: flex;
	justify-content: start;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

/*Botão assinar*/
a.btn-assinar,
a.btn-assinar:link,
a.btn-assinar:visited {
  display: inline-block;
  color: #FFF !important;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  border: 1px solid #000;
  background: #000 !important;
  margin-top: 10px;
}
a.btn-assinar:hover,
a.btn-assinar:focus {
  background: #111;
  color: #00DC00;
  transform: translateY(-2px);
}
a.btn-assinar:active {
  transform: translateY(-1px);
}

/* ========================================
   BOTÃO COMPARTILHAR
   ======================================== */
.BTCompartilhar {
	width: 50px;
	height: 50px;
	margin-top: 10px;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFF;
	border: 1px solid #000;
	color: #000;
	transition: all 0.3s ease;
	padding: 0;
	flex-shrink: 0;
}
.BTCompartilhar svg {
	width: 22px;
	height: 22px;
	transition: color 0.3s ease;
}
.BTCompartilhar:hover {
	background: #000;
	color: #FFF;
	transform: translateY(-2px);
}
.BTCompartilhar:active {
	transform: translateY(-1px);
}
/* Estado "link copiado" (fallback desktop) */
.BTCompartilhar.copiado {
	background: #00DC00;
	border-color: #00DC00;
	color: #000;
}

/* ========================================
   TEXTOS DO BLOCO DE AVALIAÇÃO
   ======================================== */
.Conteiner_avaliacao p {
  font-size: 0.85rem;
  line-height: 1.35;
  margin: 2px 0 6px;
  color: #555;
}
.Conteiner_avaliacao p:last-child {
  margin-bottom: 4px;
}
.Conteiner_avaliacao .avalia-title {
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0 0 4px;
  letter-spacing: -.01em;
}
.Conteiner_avaliacao .avalia-title + p {
  margin-top: 2px;
}

@media (max-width: 600px) {
  .Conteiner_avaliacao .avalia-title { font-size: 1.3rem; margin: 0 0 4px; }
  .Conteiner_avaliacao p { font-size: 0.875rem; line-height: 1.4; margin: 2px 0 6px; }
}
