/*
 * Copyright 2020, 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;
}

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;
}

a:hover {
	color: #999;
}

#geral {
	width: 100%;
	height: 100%;
	min-height: 540px;
	max-height: 100%;
	border: 30px solid #FFF;
	display: flex;
	align-items: center;
	background: url(background.jpg) no-repeat center center;
	background-size: cover;
}

#conteudo {
	width: 540px;
	min-width: 540px;
	max-width: 540px;
	height: 540px;
	background: #FFF;
	border-radius: 100%;
	margin: 0 auto;
	text-align: center;
}

#conteudo:after {
	height: 0;
	clear: both;
	content: ".";
	display: block;
	overflow: hidden;
	visibility: hidden;
}

#conteudo h1 {
	width: 300px;
	height: 200px;
	margin: 85px auto 0 auto;
	background: url(logo-empresa@2x.png?v=2) no-repeat;
	background-size: 300px 200px;
	text-indent: -30000px;
}

#conteudo p.mail {
	margin-top: 35px;
	font-size: 1.6rem;
}

#conteudo ul#telefones {
	width: 100%;
	list-style: none;
	text-align: center;
	padding: 0;
	margin: 14px 0 0;
}

#conteudo ul#telefones li {
	margin: 0 10px;
	font-size: 1.6rem;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	height: 22px;
	line-height: 22px;
	text-indent: 28px;
}

#conteudo ul#telefones li.fixo {
	background: url(icone-telefone@2x.png) no-repeat;
	background-size: 22px 22px;
}

#conteudo ul#telefones li.celular {
	background: url(icone-whatsapp@2x.png) no-repeat;
	background-size: 22px 22px;
}

#conteudo p.endereco {
	margin-top: 16px;
	font-size: 1.6rem;
}

#conteudo p.cidade {
	margin-top: 2px;
	font-size: 1.6rem;
}

#conteudo ul#social {
	width: 100%;
	list-style: none;
	text-align: center;
	padding: 0;
	margin: 30px 0 0;
}

#conteudo ul#social li {
	width: 33px;
	height: 33px;
	margin: 0 2px;
	font-size: 1.6rem;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	text-indent: -30000px;
}

#conteudo ul#social li a {
	width: 33px;
	height: 33px;
	display: block;
	font-size: auto;
}

#conteudo ul#social li.btFacebook a {
	background: url(icone-facebook@2x.png) no-repeat;
	background-size: 33px 33px;
}

#conteudo ul#social li.btInstagram a {
	background: url(icone-instagram@2x.png) no-repeat;
	background-size: 33px 33px;
}

#conteudo ul#social li.btTwitter a {
	background: url(icone-twitter@2x.png) no-repeat;
	background-size: 33px 33px;
}

#conteudo ul#social li.btFacebook a:hover,
#conteudo ul#social li.btInstagram a:hover,
#conteudo ul#social li.btTwitter a:hover {
	opacity: 0.8;
}

@media screen and (max-width: 700px) {
	#geral {
		border: 0 none;
		display: table;
		align-items: inherit;
		height: inherit;
		min-height: inherit;
		max-height: inherit;
		/* Para remover foto de fundo */
		/* background: none; */
	}

	#conteudo {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		height: 100vh;
		min-height: 100vh;
		max-height: 100vh;
		margin: 0;
		padding: 20px 30px 0 30px;
		border-radius: 0;
		background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1));
	}

	#conteudo h1 {
		margin: 0 auto;
	}

	#conteudo ul#social {
		padding-bottom: 40px;
	}
}

@media screen and (max-width: 420px) {
	#conteudo h1 {
		width: 190px;
		height: 126px;
		background-size: 190px 126px;
	}

	#conteudo ul#telefones li {
		margin: 4px 5px;
	}

	#conteudo p.endereco i {
		display: none;
		visibility: hidden;
	}

	#conteudo p.endereco span {
		display: block;
		line-height: 2rem;
	}
}

@media screen and (max-width: 300px) {
	body {
		width: 300px;
	}
}