@font-face {
    font-family: DelaGothic;
    src: url(./fonts/DelaGothicOne-Regular.ttf);
}

@font-face {
    font-family: Monteserat;
    src: url(./fonts/MontserratAlternates-Light.ttf);
}

@font-face {
    font-family: MonteseratBold;
    src: url(./fonts/MontserratAlternates-ExtraBold.ttf);
}

@font-face {
    font-family: 'Rubik SemiBold';
    src: url('./fonts/Rubik/woff2/AnyConv.com__Rubik-SemiBold.woff2') format('woff2'),
         url('./fonts/Rubik/woff/AnyConv.com__Rubik-SemiBold.woff') format('woff'),
         url('./fonts/Rubik/ttf/Rubik-SemiBold.ttf') format('truetype');
    font-style: normal;
}

input[type=text]{outline:none}
input[type=email]{outline:none}

*{
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
	margin: 0 auto;
	overflow-x: hidden;
	background-image: url('imgs/fundo-links.png'); /* Substitua pelo caminho correto da sua imagem */
    background-position: center; /* Centraliza a imagem */
    background-size: cover; /* Garante que a imagem cubra toda a tela, mantendo suas proporções */
    background-repeat: no-repeat; /* Evita a repetição da imagem */
	font-family: 'Rubik SemiBold', sans-serif;
}

div {
	display: flex;
	flex-direction: column;
	align-items: center;
}

a {
	color: #f2f2f2;
}

h1 {
	font-size: 21px;
	margin-top: -6px;
	color: #f2f2f2;
	text-align: center;
	opacity: 0.98;
}

h4 {
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	margin-top: 3px;
	margin-bottom: 12px;
}

h5 {
	font-size: 13px;
	font-weight: 600;
	text-align: center;
}

.centro {
	padding-top: 48px;
	min-width: 440px;
	width: 40vw;
}

.header {
	gap: 16px;
}

.logo {
	width: 130px;
}

.botoes {
	gap: 15px;
	padding-top: 32px;
	padding-bottom: 48px;
	padding-left: 15px;
	padding-right: 48px;
	width: 100%;
}

.botao {
	background-color: rgba(0, 0, 0, 0.5);
	height: 56px;
	width: 100%;
	border-radius: 7px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	transition: transform 0.090s ease-in-out; /* Adicionando transição para o efeito suave */
}

.botao h5 {
	width: 100%;
	margin-right: 23px;
}

.botao:hover {
	transform: scale(1.02) scaleY(1.01); /* Aumenta 3% e diminui 1% verticalmente */
}

.img-btn {
	height: 91%;	
	border-radius: 5px;
	margin-left: 3px;
}

.footer {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 25px;
	padding-bottom: 24px;
}

.social-icon {
	width: 33px;
}

@media (max-width: 768px) {
	.centro{
	min-width: 90vw;
	}
	.botao h5 {
		margin-right: -12.5px;
	}
	.botoes {
		padding-right: 12.5px;
	}
}






