html,
body {
	height: 100%;
	/* Garante que o body ocupe 100% da altura */
	margin: 0;
	/* Remove margens padrão */
	overflow: hidden;
	/* Remove barras de rolagem */
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.content-site {
	display: flex;
	/* Ativa o Flexbox */
	justify-content: center;
	/* Centraliza horizontalmente */
	align-items: center;
	/* Centraliza verticalmente */
	height: 100vh;
	/* Ocupa 100% da altura da janela */
	text-align: center;
	/* Centraliza o texto */
}

.center-img {
	max-width: 60%;
	height: auto;
	/* Mantém a proporção da imagem */
	padding-bottom: 2%;
}

.footer-site {
	background-color: #67686A;
	color: #fff;
	text-decoration-color: #fff;
	padding: 20px 0;
	position: absolute;
	bottom: 0;
	width: 100%;
}

.text-custom {
	color: #67686A !important;
}
.text-test:hover {
	color: #57CACD !important;
}

.fa {
    font-size: 30px;
    color: #fff;
    padding-bottom: 50px;
}

.fa:hover {
    font-size: 30px;
    color: #57CACD;
    padding-bottom: 50px;
}
.link-custom {
    color: #fff; /* Define a cor do texto como branco */
    text-decoration: none; /* Remove o sublinhado padrão */
}

.link-custom:hover {
    color: #57CACD; /* Define a cor de hover como #57CACD */
    text-decoration: none; /* Remove o sublinhado ao passar o mouse */
}


.btn-primary-custom {
    background: #343a40;
    color: #FFF;
}

.btn-primary-custom:hover {
    background-color: #57CACD;
    color: #fff;
}

.btn-secondary-custom {
    background: #343a40;
    color: #FFF;
}

.btn-secondary-custom:hover {
    background-color: #343a40;
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #57CACD;
    text-decoration: none;
}


.fullscreen {
    width: 100dvw;
    height: 100dvh;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}
