/* Reset do CSS de async desenvolvimentos*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
a{
    text-decoration:none;
    color:#363636;
}
ol, ul{
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*Fontes*/
@font-face {
	font-family:Montserrat-Regular;
	src: url('../fontes/Montserrat-Regular.ttf');
}
@font-face {
	font-family:Montserrat-Light;
	src: url('../fontes/Montserrat-Light.ttf');
}
@font-face {
	font-family:Montserrat-SemiBold;
	src: url('../fontes/Montserrat-SemiBold.ttf');
}
@font-face {
	font-family:Montserrat-ExtraBold;
	src: url('../fontes/Montserrat-ExtraBold.ttf');
}
@font-face {
	font-family:async;
	src: url('../fontes/A101HLVB.TTF');
}
@font-face {
	font-family:Barlow-SemiBold;
	src: url('../fontes/BarlowCondensed-SemiBold.ttf');
}
@font-face {
	font-family:Dancing;
	src: url('../fontes/DancingScript-Regular.ttf');
}

/* Main*/
#main{
    width:100%;
    height:100vh;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	background-color:FFFAFA;
}
.header{
	width:100%;
	height:20.13 vh;
	padding-left:4vw;
}
.header img{
	width:30%;
	height:auto;
	opacity:.9;
}
.header img:hover{
	opacity:1;
	cursor:pointer;
}
.abertura{
	width:100%;
	height:72vh;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}

.titulo{
	width:80%;
	height:12vh;	
}
.titulo-sites{
	width:80%;
	height:12vh;
	
}
.titulo h1{
	font-family:Montserrat-ExtraBold;
	font-size:4rem;
	color:#A9A9A9;
	text-align:center;
	text-shadow:1px 1px 1px #000;
	text-transform:uppercase;
}
.titulo-sites h1{
	font-family:Montserrat-ExtraBold;
	font-size:4rem;
	color:#A9A9A9;
	text-align:center;
	text-shadow:1px 1px 1px #000;
	text-transform:uppercase;
}
.titulo-sites h1:hover{
	cursor:pointer;
	color:#FF4500;
}
.corpo{
	width:86%;
	height:45vh;
	background-color:#eeeeee;
	margin-top:6vh;
	padding-top:5vh;
}
.corpo-sites{
	width:86%;
	height:17rem;
	background-color:#eeeeee;
	margin-top:2vh;
	
}
.corpo-identidade{
	width:90%;
	height:17rem;
	background-color:#eeeeee;
	margin-top:2vh;
	
}
.corpo h2{
	font-family:Montserrat-Regular;
	font-size:2.6rem;
	color:#A9A9A9;
	text-align:left;	
	padding-left:17vw;
	text-shadow:1px 1px 1px #000;
}
.corpo h2:hover{
	cursor:pointer;
	color:#FF4500;
	text-transform:uppercase;
}
.corpo-sites p{
	font-family:Montserrat-Regular;
	font-size:1.4rem;
	color:#363636;	
	padding:2.6rem;
	text-align:justify;	
	text-indent:4rem;
	line-height:1.6rem;
}
.corpo-sites p > img{
	width:2%;
	height:auto;
}
.corpo-sites p > span{
	font-weight:bolder;	
}
.corpo-identidade p{
	font-family:Montserrat-Regular;
	font-size:1.3rem;
	color:#363636;	
	padding:2.6rem;
	text-align:justify;	
	text-indent:4rem;
	line-height:1.4rem;
}
.corpo-identidade p > img{
	width:2%;
	height:auto;
}
.corpo-identidade p > span{
	font-weight:bolder;	
}
.footer{	
	width:100%;
	height:10vh;
	margin-top:1vh;
	margin-bottom:2vh;
	display:flex;
	flex-direction:column;
	justify-content:flex-end;
	align-items:center;	
}
.footer p{
	font-family:Montserrat-Light;
	font-size:1rem;
	color:#939393;
	
}
.footer p > span:hover{	
	color:#FF4500;
}
/*Mensagem em JS*/
/* Estilização para o elemento principal (onde você passa o mouse) */
#elemento-principal {
  position: relative; /* Importante: define este elemento como o ponto de referência para o balão */
  width: 100%;
  padding: 10px;
  background-color: #eeeeee;
  border: none;
  text-align: center;
}

/* Estilização e controle de visibilidade para o balão */
#balao-mensagem {
  /* Posição do balão: absoluta ao #elemento-principal */
  position: absolute;
  bottom: 100%; /* Coloca o balão acima do elemento principal */
  left: 50%;
  transform: translateX(-50%); /* Centraliza o balão horizontalmente */
  
  /* Estilos do balão */
  font-family:Barlow-SemiBold;
  background-color:transparent;
  color: #FF4500;
  font-size:2rem; 
  white-space: nowrap; /* Impede a quebra de linha */
  z-index: 10;
  
  /* Esconde o balão por padrão. O JS mudará isso. */
  display: none;
  
  /* Estilo opcional para um pequeno "triângulo" na parte de baixo do balão */
  /* Utilize um pseudo-elemento como o ::after para criar a seta */
}
