html, body {
      height: 100%;
      margin: 0;
	overflow: hidden !important;
}

.floating {
	animation: float 3s ease-in-out infinite;
}

#divColunas {
  width: 100%;
}

@media (min-width: 768px) {
  #divColunas {
    width: 80%; 
  }
}

@keyframes float {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(0);
	}
}

.btn-pill {
	border-radius: 50px;
	padding: 12px 30px;
	font-size: 1.2rem;
}

.logo-img {
	max-width: 70%;
	height: auto;
}

.full-height {
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.footer {
	text-align: center;
	padding: 10px;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
}

@media (max-width: 767px) {
	.footer {
		position: relative;
	}

	.logo-footer {
		flex: 0 0 100%;
		text-align: center;
	}

	.logo-img {
		margin-top: 100px;
	}

	.pt-mobile {
		padding-top: 0px !important;
	}
}

.logo-footer img {
	max-width: 100px;
	height: auto;
	margin: 10px 0;
}