/* Fontes */

@font-face {
	font-family: 'Ubuntu Light';
	src: url('fonts/Ubuntu-L.ttf');
}

@font-face {
	font-family: 'Rajdhani';
	src: url('fonts/Rajdhani.ttf');
}

/* Body */

* {
	font-family: 'Ubuntu Light';
	font-size: 17px;
}

body {
	background: rgba(140, 140, 140, 0.1);
}

/* Header (completo) */

#theme {
	text-align: center;
	font-family: 'Rajdhani';
	font-size: 108px;
	font-weight: 400;
	margin-top: 1.25%;
	margin-bottom: 1.25%;
	border-bottom: 1px solid rgba(20, 20, 20, 0.2);
	padding-bottom: 1.25%;
}

#nav {
	width: 80%;
	text-align: right;
	position: absolute;
	top: 2%;
	right: 1%;
}

#nav span:not(.acessos span) {
	margin-left: 2%;
	transition: 0.5s;
}
#nav span:not(.nav-acesso, .acessos span):hover {
	color: rgba(231, 33, 33, 1.0);
	cursor: pointer;
}

.nav-acesso {
	color: rgba(240, 240, 240, 1.0);
	background: rgba(60, 60, 60, 1.0);
	border: 1px solid rgba(20, 20, 20, 0.2);
	border-radius: 4px;
	padding: 0.5%;
	transition: 0.5s;
	cursor: pointer; /* :p */
}

.acessos {
	width: 200px;
	text-align: center;
	color: rgba(240, 240, 240, 1.0);
	background: rgba(60, 60, 60, 1.0);
	margin-top: 1%;
	border: 1px solid rgba(20, 20, 20, 0.2);
	border-radius: 4px;
	position: absolute;
	right: 0%;
	transition: 0.5s;
}

.acessos span {
	display: block;
	padding: 5%;
	cursor: pointer;
}
.acessos span:hover {
	background: rgba(140, 140, 140, 0.5);
}

/* Já pensou? ;) */

.ja_pensou {
    text-align: center;
    font-size: 22px;
    font-style: italic;
    color: rgba(240, 240, 240, 1.0);
    background: linear-gradient(45deg, rgba(140, 140, 140, 0.8), rgba(180, 180, 180, 0.8));
    margin: 0 auto;
    border: 1px solid rgba(20, 20, 20, 0.2);
    border-radius: 4px;
    padding: 1%;
    transition: all 1s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 1128px;
}

.ja_pensou:hover {
    background: linear-gradient(45deg, rgba(180, 180, 180, 0.8), rgba(140, 140, 140, 0.8));
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Fórum */

.forum {
	width: 98%;
	height: 40%;
	margin-top: 2%;
	margin-left: 1%;
	border: 1px solid rgba(20, 20, 20, 0.2);
	border-radius: 4px;
}

/* Vem para o Advocator! */

.vem {
    width: 326px; /* :p */
    text-align: center;
    font-size: 20px;
    font-style: italic;
    color: rgba(240, 240, 240, 1.0);
    background: linear-gradient(45deg, rgba(140, 140, 140, 0.8), rgba(180, 180, 180, 0.8));
    margin: 2% auto;
    border: 1px solid rgba(20, 20, 20, 0.2);
    border-radius: 4px;
    padding: 1%;
    transition: all 1s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.vem:hover {
    cursor: pointer;
    background: linear-gradient(45deg, rgba(180, 180, 180, 0.8), rgba(140, 140, 140, 0.8));
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Dialog */

.fundo-dialog {
	width: 100%;
	height: 100%;
	background: rgba(140, 140, 140, 0.3);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 2;
}

dialog {
	width: 25%;
	position: relative;
	margin-top: 12%;
	background: rgba(240, 240, 240, 1.0);
	border: 1px solid rgba(20, 20, 20, 0.2);
	border-radius: 4px;
	z-index: 3;
}

dialog h1 {
	text-align: center;
	font-size: 24px;
	margin-top: 0%;
}

dialog p {
	display: block;
	margin-top: 2%;
	margin-bottom: 4%;
	padding: 2%;
}

dialog button {
	width: 30%;
	background: rgba(140, 140, 140, 0.1);
	border: 1px solid rgba(20, 20, 20, 0.2);
	border-radius: 4px;
	padding: 1.5%;
	position: relative;
	left: 19%;
	transition: 0.5s;
}
dialog button:last-child {
	left: 21%;
}
dialog button:hover {
	background: rgba(140, 140, 140, 0.2);
	cursor: pointer;
}

/* Footer */

footer {
	width: 100%;
	height: 10%;
	color: rgba(240, 240, 240, 1.0);
	background: rgba(60, 60, 60, 1.0);
	text-align: center;
	font-size: 24px;
	line-height: 90px;
	position: absolute;
	left: 0;
	bottom: 0;
}
