* {
	box-sizing: border-box;
}

html, body {
/*	min-height: 100vh; */
}

body {

background: url('/img/bg-brazink.jpg');
background-position-y: -250px;
background-repeat: repeat-x;

/*
	display: grid;
	grid-template:
		"search" minmax(300px, 50vh)
		"results" minmax(20%, auto)
		/ 1fr;
	margin: 0;
*/
	font-familye: system-ui, sans-serif;

}

#search:focus, input:focus{
    outline: none;
}



#search {
	display: grid;
	grid-area: search;
	grid-template:
		"search" 60px
		/ 320px;
	justify-content: center;
	align-content: center;
	justify-items: stretch;
	align-items: stretch;
	background: hsl(0, 0%, 99%);
}

#search input {
	display: block;
	grid-area: search;
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 100%;
	background: none;
	padding: 0 30px 0 60px;
	border: none;
	border-radius: 100px;
	font: 24px/1 system-ui, sans-serif;
	outline-offset: -8px;
}


#search svg {
	grid-area: search;
	overflow: visible;
	color: hsl(215, 100%, 50%);
	fill: none;
	stroke: currentColor;
}

.spark {
	fill: currentColor;
	stroke: none;
	r: 15;
}

.spark:nth-child(1) {
	animation:
		spark-radius 2.03s 1s both,
		spark-one-motion 2s 1s both;
}

@keyframes spark-radius {
	0% { r: 0; animation-timing-function: cubic-bezier(0, 0.3, 0, 1.57) }
	30% { r: 15; animation-timing-function: cubic-bezier(1, -0.39, 0.68, 1.04) }
	95% { r: 8 }
	99% { r: 10 }
	99.99% { r: 7 }
	100% { r: 0 }
}

@keyframes spark-one-motion {
	0% { transform: translate(-20%, 50%); animation-timing-function: cubic-bezier(0.63, 0.88, 0, 1.25) }
	20% { transform: rotate(-0deg) translate(0%, -50%); animation-timing-function: ease-in }
	80% { transform: rotate(-230deg) translateX(-20%) rotate(-100deg) translateX(15%); animation-timing-function: linear }
	100% { transform: rotate(-360deg) translate(30px, 100%); animation-timing-function: cubic-bezier(.64,.66,0,.51) }
}

.spark:nth-child(2) {
	animation:
		spark-radius 2.03s 1s both,
		spark-two-motion 2.03s 1s both;
}

@keyframes spark-two-motion {
	0% { transform: translate(120%, 50%) rotate(-70deg) translateY(0%); animation-timing-function: cubic-bezier(0.36, 0.18, 0.94, 0.55) }
	20% { transform: translate(90%, -80%) rotate(60deg) translateY(-80%); animation-timing-function: cubic-bezier(0.16, 0.77, 1, 0.4) }
	40% { transform: translate(110%, -50%) rotate(-30deg) translateY(-120%); animation-timing-function: linear }
	70% { transform: translate(100%, -50%) rotate(120deg) translateY(-100%); animation-timing-function: linear }
	80% { transform: translate(95%, 50%) rotate(80deg) translateY(-150%); animation-timing-function: cubic-bezier(.64,.66,0,.51) }
	100% { transform: translate(100%, 50%) rotate(120deg) translateY(0%) }
}

.spark:nth-child(3) {
	animation:
		spark-radius 2.05s 1s both,
		spark-three-motion 2.03s 1s both;
}

@keyframes spark-three-motion {
	0% { transform: translate(50%, 100%) rotate(-40deg) translateX(0%); animation-timing-function: cubic-bezier(0.62, 0.56, 1, 0.54) }
	30% { transform: translate(40%, 70%) rotate(20deg) translateX(20%); animation-timing-function: cubic-bezier(0, 0.21, 0.88, 0.46) }
	40% { transform: translate(65%, 20%) rotate(-50deg) translateX(15%); animation-timing-function: cubic-bezier(0, 0.24, 1, 0.62) }
	60% { transform: translate(60%, -40%) rotate(-50deg) translateX(20%); animation-timing-function: cubic-bezier(0, 0.24, 1, 0.62) }
	70% { transform: translate(70%, -0%) rotate(-180deg) translateX(20%); animation-timing-function: cubic-bezier(0.15, 0.48, 0.76, 0.26) }
	100% { transform: translate(70%, -0%) rotate(-360deg) translateX(0%) rotate(180deg) translateX(20%); }
}




.burst {
	stroke-width: 3;
}

.burst :nth-child(2n) { color: #ff783e }
.burst :nth-child(3n) { color: #ffab00 }
.burst :nth-child(4n) { color: #55e214 }
.burst :nth-child(5n) { color: #82d9f5 }

.circle {
	r: 6;
}

.rect {
	width: 10px;
	height: 10px;
}

.triangle {
	d: path("M0,-6 L7,6 L-7,6 Z");
	stroke-linejoin: round;
}

.plus {
	d: path("M0,-5 L0,5 M-5,0L 5,0");
	stroke-linecap: round;
}




.burst:nth-child(4) {
	transform: translate(30px, 100%) rotate(150deg);
}

.burst:nth-child(5) {
	transform: translate(50%, 0%) rotate(-20deg);
}

.burst:nth-child(6) {
	transform: translate(100%, 50%) rotate(75deg);
}

.burst * {}

@keyframes particle-fade {
	0%, 100% { opacity: 0 }
	5%, 80% { opacity: 1 }
}

.burst :nth-child(1) { animation: particle-fade 600ms 2.95s both, particle-one-move 600ms 2.95s both; }
.burst :nth-child(2) { animation: particle-fade 600ms 2.95s both, particle-two-move 600ms 2.95s both; }
.burst :nth-child(3) { animation: particle-fade 600ms 2.95s both, particle-three-move 600ms 2.95s both; }
.burst :nth-child(4) { animation: particle-fade 600ms 2.95s both, particle-four-move 600ms 2.95s both; }
.burst :nth-child(5) { animation: particle-fade 600ms 2.95s both, particle-five-move 600ms 2.95s both; }
.burst :nth-child(6) { animation: particle-fade 600ms 2.95s both, particle-six-move 600ms 2.95s both; }

@keyframes particle-one-move { 0% { transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001) } 100% { transform: rotate(-20deg) translateX(8%) scale(0.5, 0.5) } }
@keyframes particle-two-move { 0% { transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001) } 100% { transform: rotate(0deg) translateX(8%) scale(0.5, 0.5) } }
@keyframes particle-three-move { 0% { transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001) } 100% { transform: rotate(20deg) translateX(8%) scale(0.5, 0.5) } }
@keyframes particle-four-move { 0% { transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001) } 100% { transform: rotate(-35deg) translateX(12%) } }
@keyframes particle-five-move { 0% { transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001) } 100% { transform: rotate(0deg) translateX(12%) } }
@keyframes particle-six-move { 0% { transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001) } 100% { transform: rotate(35deg) translateX(12%) } }



.bar {
	width: 100%;
	height: 100%;
	ry: 50%;
	stroke-width: 10;
	animation: bar-in 900ms 3s both;
}

@keyframes bar-in {
	0% { stroke-dasharray: 0 180 0 226 0 405 0 0 }
	100% { stroke-dasharray: 0 0 181 0 227 0 405 0 }
}

.magnifier {
	animation: magnifier-in 600ms 3.6s both;
	transform-box: fill-box;
}

@keyframes magnifier-in {
	0% { transform: translate(20px, 8px) rotate(-45deg) scale(0.01, 0.01); }
	50% { transform: translate(-4px, 8px) rotate(-45deg); }
	100% { transform: translate(0px, 0px) rotate(0deg); }
}

.magnifier .glass {
	cx: 27;
	cy: 27;
	r: 8;
	stroke-width: 3;
}
.magnifier .handle {
	x1: 32;
	y1: 32;
	x2: 44;
	y2: 44;
	stroke-width: 3;
}



#results {
	grid-area: results;
	background: hsl(0, 0%, 95%);
}

.nick { color: #2f889a }

.usuarios_canal { color: #2f889a; border-bottom: 0 }

.sala { color: #2f889a; border-bottom: 0 }

.country { width: 128px; text-align: center }
.p { padding:3px; width: 128px; border-radius: 6px; border:3px solid #CCC }

.offline1 { height: 24px; float: left }
.offline { font-weight: bold; color: #D73636; float: left }

.online1 { height: 24px; float: left; }
.online { font-weight: bold; color: #218B11; float: left }

.gr1 { margin-top: 20px; line-height: 20px; display: grid; grid-template-columns: repeat( auto-fit, minmax(128px, 128px) ); grid-gap: 10px; grid-row-gap:20px; min-width:280px; font-size: 17px; }
.gr2 { line-height: 20px; display: grid; grid-template-columns: repeat( auto-fit, minmax(128px, 128px) ); grid-gap: 10px; grid-row-gap: 20px; min-width: 280px; font-size: 17px }

.rd { font-weight: bold; word-break: break-all }
.b { font-weight: bold }
.rdo { font-weight:bold; color: #e75480 }

#perfis a { border-bottom: 0; }
#perfis h3 { margin-top:10px }
#perfis h2 { margin-top: 30px }
#perfis s { line-height:25px }
.pais { height: 32px; }

.canal { line-height: 25px }
.canal h3 { margin: 0; margin-bottom: 10px }

.fv { padding-left: 5px; font-weight: bold; color: #000 }
.fv h3, .fv h4 { margin-bottom: 10px }

.perfil { line-height: 25px; }
.perfil img { padding:3px; border-radius: 6px; border:3px solid #CCC; }

.bottom { line-height: 20px !important }

.black { color: #000; }

.report { color: #DC143C; }

.nounderline { border-bottom: 0 }

.purple { color: #800080 }

.green { color: green }

.top a { color: #DC143C; }

.up {
		font-weight: 900;
		line-height: 1.5;
		margin: 0 0 2em 0;
		text-transform: uppercase;
		letter-spacing: 0.35em;
}

.fv a { border-bottom: 0 }

.sec { text-align: justify; }

.sec a { border-bottom: 0 }

.descricao { margin-top: 30px !important }

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); /* Fundo claro e sutil */
  backdrop-filter: blur(10px); /* Efeito de vidro fosco */
  -webkit-backdrop-filter: blur(10px);
  color: #ff4757; /* Cor de destaque (ajuste para a cor do Brazink) */
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  
  /* Escondido inicialmente */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 999;

  /* ... resto do código ... */
  background: #007bff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #fff; 
  /* ... resto do código ... */
}

#backToTop {
    /* Transforma o botão em um container flexível */
    display: flex !important;
    align-items: center !important;    /* Centraliza verticalmente */
    justify-content: center !important; /* Centraliza horizontalmente */
    
    /* Garante que o padding não empurre a seta para o lado */
    padding: 0 !important; 
    line-height: 0 !important;
}

#backToTop svg {
    /* Define o tamanho fixo da seta */
    width: 24px !important;
    height: 24px !important;
    
    /* Remove margens automáticas que podem vir de outros estilos */
    margin: 0 !important;
    display: block !important;
    
    /* Garante a cor */
    stroke: #ffffff !important;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #ff4757; /* Inverte a cor no hover */
  color: white;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 71, 87, 0.3);
}


article h2, article h3, article div { text-shadow: 2px 2px 5px #000; font-weight: bold }



.ball {
  position: absolute;
  border-radius: 100%;
  opacity: 0.7;
  z-index: -1;
}

body { overflow-x: hidden; }

#share { margin-right: 15px !important }

#menu {
background: #136a8a;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #267871, #136a8a);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #267871, #136a8a); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}


a.link {
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  border-bottom: none !important; 
}

/* Cores individuais */
.link-perfis { color: #e74c3c; }     /* vermelho */
.link-temas { color: #3498db; }      /* azul */
.link-paises { color: #2ecc71; }     /* verde */
.link-regioes { color: #9b59b6; }    /* roxo */
.link-estados { color: #f39c12; }    /* laranja */
.link-cidades { color: #1abc9c; }    /* verde água */
.link-idades { color: #e67e22; }     /* laranja escuro */
.link-idiomas { color: #34495e; }    /* azul escuro */
.link-religioes { color: #8e44ad; }  /* roxo escuro */
.link-sexo { color: #ff2d55; }       /* rosa vibrante */
.link-culinaria { color: #d35400; }  /* marrom/laranja */
.link-jogos { color: #16a085; }      /* verde gamer */
.link-radios { color: #2980b9; }     /* azul rádio */

/* Hover (efeito profissional) */
a.link:hover {
  opacity: 0.7;
}




/* EspaÃ§o entre todos os botÃµes, qualquer combinaÃ§Ã£o */
a.btn-warning,
a.btn-success,
a.btn-danger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 17px;
  font-weight: 600;
  color: white !important;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  cursor: pointer;
  margin-top: 16px; /* garante espaÃ§o entre todos */
}

/* Remove margin-top do primeiro botÃ£o se quiser */
a.btn-warning:first-child,
a.btn-success:first-child,
a.btn-danger:first-child {
  margin-top: 0;
}

/* Hover animado */
a.btn-warning:hover,
a.btn-success:hover,
a.btn-danger:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Ã�cones ajustados */
a.btn-warning i,
a.btn-success i,
a.btn-danger i {
  font-size: 18px;
}

/* Cores especÃ­ficas */
.btn-warning { background: linear-gradient(135deg, #f6d365, #fda085); }
.btn-success { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.btn-danger { background: linear-gradient(135deg, #ff6a6a, #ff3b3b); }

