@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 */
}

/* ========================================
   SIGANOS BOTÃO REDE SOCIAL
   ======================================== */
.bkRedes_mkt{
	width:100%;
	margin-top:7px;
	display:flex;
	justify-content: start;
	flex-wrap: wrap;
	gap:10px;
	}
.BTRedes_mkt{
	width:50px;
	height:50px;
	border-radius:5px;
	cursor:pointer;
	position:relative;
	transition:0.3s ease-in-out;
	border:1px solid #000;
	}	
.BTRedes_mkt:hover{
	background: #000;
	transform: translateY(-2px);
	}	
.BTRedes_mkt.instagram::before{
	content:''; width:50px; height:50px;
	position:absolute; top:0; left:0; background: url(../../x-dados/icones/ico_instagram.svg) no-repeat center center;
	}	
.BTRedes_mkt.whatsapp::before{
	content:''; width:50px; height:50px;
	position:absolute; top:0; left:0; background: url(../../x-dados/icones/ico_whatsapp.svg) no-repeat center center;
	}	
.BTRedes_mkt.youtube::before{
	content:''; width:50px; height:50px;
	position:absolute; top:0; left:0; background: url(../../x-dados/icones/ico_youtube.svg) no-repeat center center;
	}	
.BTRedes_mkt.google::before{
	content:''; width:50px; height:50px;
	position:absolute; top:0; left:0; background: url(../../x-dados/icones/ico_google.svg) no-repeat center center;
	}
.BTRedes_mkt.facebook::before{
	content:''; width:50px; height:50px;
	position:absolute; top:0; left:0; background: url(../../x-dados/icones/ico_facebook.svg) no-repeat center center;
	}	
	
.BTRedes_mkt.instagram:hover::before {filter: brightness(0) invert(1);}	
.BTRedes_mkt.whatsapp:hover::before {filter: brightness(0) invert(1);}	
.BTRedes_mkt.youtube:hover::before {filter: brightness(0) invert(1);}
.BTRedes_mkt.google:hover::before {filter: brightness(0) invert(1);}		
.BTRedes_mkt.facebook:hover::before {filter: brightness(0) invert(1);}	

/*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);
}

/* Parágrafo do bloco de avaliação: menor e com menos espaçamento */
.Conteiner_avaliacao p{
  font-size: 0.9rem;   /* antes ~0.9rem */
  line-height: 1.35;    /* mais “apertado” */
  margin: 2px 0 6px;    /* quase sem espaço extra */
  color: #555;
}

/* Evita “respiro” desnecessário no último parágrafo antes do botão/itens */
.Conteiner_avaliacao p:last-child{
  margin-bottom: 4px;
}

/* Opcional: no mobile, ligeiramente maior para legibilidade */
@media (max-width: 600px){
  .Conteiner_avaliacao p{
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 2px 0 6px;
  }
}

/* Títulos menores e com pouco espaço */
.Conteiner_avaliacao .avalia-title{
  font-size: 1.25rem;   /* antes ~1.25rem */
  line-height: 1.2;
  margin: 0 0 4px;     /* quase sem respiro abaixo */
  letter-spacing: -.01em;
}
.Conteiner_avaliacao .avalia-title + p{
  margin-top: 2px;     /* encosta o parágrafo no título */
}
.Conteiner_avaliacao p{
  font-size: 0.85rem;
  line-height: 1.35;
  margin: 2px 0 6px;
}

/* Mobile: ainda mais equilibrado */
@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; }
}

	