.btn-icon {
	font-size: 0.75rem; /* Tamanho reduzido em 25% */
	line-height: 1; /* Ajuste para centralizar o ícone */
	padding: 0.25rem 0.5rem; /* Ajuste no padding para melhorar o visual */
}

.glow {
  //font-size: 80px;
  color: #fff;
  text-align: center;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #2eca8b, 0 0 40px #2eca8b, 0 0 50px #2eca8b, 0 0 60px #2eca8b, 0 0 70px #2eca8b;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #72fed6, 0 0 40px #72fed6, 0 0 50px #72fed6, 0 0 60px #72fed6, 0 0 70px #72fed6, 0 0 80px #72fed6;
  }
}

.glow-imagem {
    filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #2eca8b);
    -webkit-animation: glow-imagem 1s ease-in-out infinite alternate;
    animation: glow-imagem 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow-imagem {
    from {
        filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #2eca8b);
    }
    to {
        filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 15px #72fed6);
    }
}


.linha-animada {
	width: 0; /* Começa com largura 0 */
	height: 2px;
	background-color: #000;
	margin-bottom: 10px;
	animation: slideIn 1s forwards; /* Animação configurada */
 }

/* Animação para a linha */
@keyframes slideIn {
	from {
		width: 0; /* Começa sem largura */
	}
	to {
		width: 150px; /* Largura final da linha */
	  }
}