/*
 * Copyright 2022, Tag Web Design Ltda.
*/

* {
	margin: 0;
	padding: 0;
	color: #000;
	font-family: Arial, Helvetica, Verdana, Tahoma, sans-serif;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

html {
	height: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
}

body {
	height: 100%;
	display: flex;
	flex-direction: column;
	background: #8e2a35;
}

ul {
	list-style: none;
}

ul:after {
	height: 0;
	clear: both;
	content: '.';
	display: block;
	overflow: hidden;
	visibility: hidden;
}

a {
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	text-decoration: none;
}

#geral {
	width: 100%;
	height: 100%;
	max-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#conteudo {
	width: 540px;
	min-width: 350px;
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 20px 0 30px 0;
}

#conteudo h1 {
	width: 300px;
	height: 200px;
	margin: 0 auto;
	background: url(logo-empresa.png) no-repeat;
	background-size: 300px 200px;
	text-indent: -30000px;
}

#conteudo ul#botoes {
	display: block;
	width: 300px;
	max-width: 95%;
	margin: 0 auto;
	padding-top: 25px;
}

#conteudo ul#botoes li a {
	display: block;
	margin-top: 5px;
	padding: 15px;
	font-size: 1.7rem;
	text-transform: uppercase;
	color: #8e2a35;
	opacity: 1;
	border-radius: 6px;
}

#conteudo ul#botoes li a:hover {
	opacity: 0.9;
}

#conteudo ul#social {
	width: 100%;
	list-style: none;
	display: flex;
	flex-direction: row;
	justify-content: center;
	column-gap: 6px;
	padding-top: 30px;
}

#conteudo ul#social li {
	width: 33px;
	height: 33px;
	font-size: 1.6rem;
}

#conteudo ul#social li a {
	width: 33px;
	height: 33px;
	display: block;
	text-indent: -30000px;
}

#conteudo ul#social li.bt-facebook a {
	background: url(ico-facebook.png) no-repeat;
	background-size: 33px 33px;
}

#conteudo ul#social li.bt-instagram a {
	background: url(ico-instagram.png) no-repeat;
	background-size: 33px 33px;
}

#conteudo ul#social li.bt-outra-rede a {
	background: url(ico-outra-rede.png) no-repeat;
	background-size: 33px 33px;
}

#conteudo ul#social li.bt-facebook a:hover,
#conteudo ul#social li.bt-instagram a:hover,
#conteudo ul#social li.bt-outra-rede a:hover {
	opacity: 0.8;
}

@media screen and (max-width: 700px) {
	body,
	#geral {
		display: inherit;
	}
}

@media screen and (max-width: 300px) {
	body {
		width: 350px;
	}
}
