.rmsg { display: table; width: 360px; margin: 0 auto 20px auto; padding: 10px; background: #108c00; border-radius: 5px; text-align: center; color: #fff; font-size: 14px; }
.rmsg.error { background-color: #b30000 !important; }
.rmsg.warn { background-color: #fffca1 !important; color: #000 !important; }
#alerta { visibility: hidden; position: fixed; display: table; z-index: 1001; margin: 0 auto; padding: 25px 30px; color: #5a5a5a; font-size: 15px; background: #f7f7f7; border-radius: 6px; }
#alerta .ok { display: table; width: 100%; }
#alerta .ok > div { font-size: 12px; font-weight: bold; cursor: pointer; display: table; float: right; margin: 15px 0 0 0; padding: 5px 0; text-align: center; width: 60px; text-transform: uppercase; color: #fff; background: #ac0f0f; border: 1px solid #ac0f0f; box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset; border-radius: 4px; }
#alerta .ok > div:hover { background: #d21818; border-color: #d21818; }
#alerta .ok.sucesso > div { background: #0dbb00; border: 1px solid #0dbb00; }
#alerta .ok.sucesso > div:hover { background: #0a8c00; border: 1px solid #0a8c00; }
#backblack { height: 100%; width: 100%; position: fixed; top: 0; left: 0; background: #000; opacity: 0.8; z-index: 1000; }
input.default.sucesso { background: #0dbb00 !important; border-color: #0dbb00 !important; color: #fff !important; }

@font-face {
	src: url("../fonts/beaufortforlol-medium.otf");
	font-family: "Beaufort";
	font-weight: 500;
}

@font-face {
	src: url("../fonts/beaufortforlol-bold.otf");
	font-family: "Beaufort";
	font-weight: 700;
}

@font-face {
	src: url("../fonts/Roboto-Regular.ttf");
	font-family: "Roboto";
	font-weight: 300;
}

@font-face {
	src: url("../fonts/Roboto-Medium.ttf");
	font-family: "Roboto";
	font-weight: 500;
}


body {
	margin: 0;
	font-family: "Beaufort";
	font-weight: 500;
}

.background {
	background-image: url("../images/bg.jpg");
	background-position-x: 50%;
	background-repeat: no-repeat;
	background-color: #111;
	min-width: 1240px;
}

.container {
	width: 1240px;
	margin: 0 auto;
	padding-top: 28px;
}

.header {
	display: flex;
}

.logo {
	width: 130px;
	height: 85px;
	background-position: -28px -28px;
	background-image: url("../images/letter.png");
}

.nav {
	padding-top: 32px;
}

.nav__item {
	margin-right: 35px;
	font-size: 18px;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
}

.nav__item--active {
	color: #f7cf41;
	padding-bottom: 28px;
	border-bottom: 2px solid #f7cf41;
}
.login-form {
    max-width: 400px; 
    margin: 0 auto; 
    padding: 20px; 
}

.login-block-title {
    text-align: center; 
    margin-bottom: 1px; 
}

.login-in, .password-in {
    margin-bottom: 1px; 
}

input[type="text"], input[type="password"], input[type="text"] {
    width: 100%; 
    padding: 10px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    box-sizing: border-box; 
}

input[type="text"]::placeholder, 
input[type="password"]::placeholder {
    color: #aaa; 
}

.login-button {
    display: flex; 
    justify-content: center; 
}

.green-button {
    background-color: #28a745; 
    color: white; 
    border: none; 
    border-radius: 4px; 
    padding: 10px 20px; 
    cursor: pointer; 
    transition: background-color 0.3s; 
}

.green-button:hover {
    background-color: #218838; 
}

.login {
	background-image: url("../images/login-background.png");
	color: #54200e;
	font-size: 20px;
	text-transform: uppercase;
	margin-left: auto;
	padding: 30px 15px 30px 20px;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.06em;
	text-decoration: none;
	border-radius: 15px;
	overflow: hidden; 
}

.login-box {
    display: none;
	background-image: url("../images/discussion-background.png");
    position: absolute;
    width: 300px;
	margin-top: 10px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    animation: slide-down 0.3s ease-out;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-form {
    display: flex;
    flex-direction: column;
}

.login-form label {
    margin-bottom: 5px;
	color: white;
    font-weight: bold;
}

.login-form input {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-form button {
    background-image: url("../images/login-background.png");
    color: #54200e;
	font-size: 20px;
	text-transform: uppercase;
    border: none;
    cursor: pointer;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-form button:hover {
    transform: translateY(2px); 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.login-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
}

.login-form button:hover {
    background-color: #6e2d12;
}


.main {
	padding: 138px 134px 150px 134px;
}

.main__background {
    background-image: url("/images/wolf.png");
    background-size: contain; 
	justify-content: center;
    background-repeat: no-repeat; 
    height: 400px;
	width: 900px;
    max-width: 100%; 
    max-height: 100%;
	margin-top: 100px;
    z-index: -1; /* Coloca atrás de outros elementos */
}

.start {
	display: flex;
	
}

.start__button {
	background-image: url("../images/start-background.png");
	color: #54200e;
	padding: 55px 38px;
	text-align: center;
	text-decoration: none;
}

.start__button-caption {
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.start__button-desc {
	font-family: "Roboto";
	font-weight: 500;
	font-size: 18px;
	text-transform: uppercase;
	margin-top: 3px;
	margin-left: 8px;
	letter-spacing: 0.24em;
}

.info {
	display: flex;
	flex: 1;
	margin-left: 3px;
	background-image: url("../images/info-background.png");
}

.info__box {
	padding-right: 55px;
	border-right: 1px solid #616060;
    text-decoration: none;
}

.info__box:last-child {
	border-right: none;
}

.info__icon {
	width: 108px;
	height: 115px;
	display: inline-block;
	margin-top: 36px;
	margin-left: 10px;
}

.info__text {
	display: inline-block;
	vertical-align: top;
	padding: 60px 0px;
	color: #fff;
}

.info__caption {
	font-size: 24px;
	text-transform: uppercase;
}

.info__desc {
	font-family: "Roboto";
	font-size: 14px;
	margin-top: 4px;
	font-weight: 100;
	color: #f0eae7;
}

.status {
	width: 185px;
	padding-right: 0;
	position: relative;
}

.status__rate {
	font-size: 24px;
	color: #fff;
	text-align: center;
	margin-top: 62px;
}

.status__chronicle {
	font-family: "Roboto";
	color: #f0eae7;
	font-size: 14px;
	text-align: center;
}

.slider {
	background: gray;
	margin-top: 8px;
	padding: 50px 40px;
	overflow: hidden;
}

.slider__items {
	transition: all, .25s;
	display: flex;
	flex-wrap: wrap;
}

.slider__item {

}

.slider__caption {
	font-size: 38px;
	text-transform: uppercase;
	color: #fff;
}

.slider__caption span {
	color: #ffd200;
}

.slider__desc {
	font-family: "Roboto";
	font-size: 16px;
	font-weight: 100;
	color: #cecece;
	margin-top: 12px;
	line-height: 24px;
}

.slider__link {
	background-image: url("../images/button.png");
	background-repeat: no-repeat;
	display: inline-block;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 700;
	color: #54200e;
	margin-top: 22px;
	padding: 14px 24px;
	line-height: 20px;
	letter-spacing: 0.06em;
	text-align: center;
	text-decoration: none;
	vertical-align: top;
}

.slider__nav {
	display: inline-flex;
	margin-top: 35px;
	margin-left: 42px;
}

.slider__prev {
	background-image: url("../images/slider-prev.png");
	width: 14px;
	height: 25px;
	cursor: pointer;
}

.slider__next {
	background-image: url("../images/slider-next.png");
	width: 14px;
	height: 25px;
	cursor: pointer;
}

.slider__dots {
	display: flex;
	margin-left: 18px;
	margin-top: 7px;
}

.slider__dot {
	width: 10px;
	height: 10px;
	background: #383638;
	border-radius: 50%;
	margin-right: 18px;
	cursor: pointer;
}

.slider__dot--active {
	background: #fdc268;
}

.news {
	margin-top: 8px;
	padding-bottom: 55px;
	border-bottom: 1px solid #1e1e1e;
}

.news__posts {
	width: 930px;
	display: inline-flex;
	flex-wrap: wrap;
	vertical-align: top;
}

.news__post {
	padding-bottom: 35px;
	width: 308px;
	margin-right: 3px;
}

.news__post:last-of-type {
	margin-right: 0px;
}

.news__date {
	background-image: url("../images/news-date.png");
	width: 72px;
	height: 74px;
	margin-left: 25px;
	margin-top: 22px;
}

.news__date-day {
	color: #ffd200;
	padding-top: 16px;
	text-align: center;
	font-size: 20px;
}

.news__date-month {
	font-family: "Roboto";
	font-size: 10px;
	line-height: 5px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
}

.news__content {
	padding: 0px 40px;
	margin-top: 100px;
}

.news__caption {
	font-size: 26px;
	color: #fff;
}

.news__desc {
	font-family: "Roboto";
	color: #999999;
	margin-top: 10px;
	margin-bottom: 15px;
	line-height: 24px;
}

.news__link {
	font-family: "Roboto";
	font-size: 16px;
	color: #c0c0c0;
}

.news__all {
	background-image: url("../images/news-all-button-background.png");
	width: 100%;
	margin-top: 3px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 20px;
	padding: 15px 0px;
	letter-spacing: 0.1em;
	color: #8a8a8a;
}

.discussion {
	background-image: url("../images/discussion-background.png");
	display: inline-block;
	width: 306px;
	padding-bottom: 36px;
}

.discussion__header {
	width: 306px;
	border-bottom: 1px solid #302e2e;
}

.discussion__icon {
	background-image: url("../images/info-icon.png");
	width: 90px;
	height: 88px;
	background-size: 100%;
	margin-left: 15px;
	margin-top: 15px;
	margin-right: -12px;
	display: inline-block;
}

.discussion__text {
	display: inline-block;
	vertical-align: top;
}

.discussion__caption {
	font-size: 24px;
	text-transform: uppercase;
	color: #fff;
	margin-top: 30px;
}

.discussion__desc {
	font-family: "Roboto";
	font-size: 12px;
	margin-top: 4px;
	margin-left: 2px;
	color: #999999;
}

.discussion__container {
	font-family: "Roboto";
	padding: 0px 40px 4px 40px;
	margin-top: 30px;
	font-weight: 100;
}

.discussion__topic {
	font-size: 15px;
	color: #c2c2c2;
	display: block;
	text-decoration: none;
	line-height: 20px;
}

.discussion__date {
	font-size: 13px;
	color: #7c7c7c;
	margin-top: 8px;
	display: inline-block;
	vertical-align: top;
}

.discussion__author {
	display: inline-block;
	margin-top: 8px;
	vertical-align: top;
	font-size: 13px;
	color: #e8b422;
	text-decoration: none;
}

.footer-background {
	background-image: url("../images/footer-background.png");
	background-position-y: 110%;
	background-position-x: 50%;
	background-color: #111;
	border-top: 1px solid #1e1e1e;
	min-width: 1240px;
}

.footer {
	font-family: "Roboto";
	padding-top: 12px;
	padding-bottom: 26px;
}

.footer__info {
	width: 400px;
	display: inline-block;
	margin-right: 30px;
}

.footer__logo {
	background-image: url("../images/footer-logo.png");
	width: 155px;
	height: 45px;
}

.footer__copyright {
	font-size: 10px;
	color: #474646;
	margin-top: 10px;
	line-height: 16px;
}

.footer__section {
	display: inline-block;
	vertical-align: top;
	margin-left: 100px;
	margin-top: 6px;
}

.footer__link {
	display: block;
	color: #58534b;
	text-transform: uppercase;
	font-size: 14px;
	margin-bottom: 15px;
}

.footer__socials-items {
	display: inline-block;
	vertical-align: top;
	float: right;
	margin-top: 4px;
}

.footer__social-item {
	display: inline-block;
	font-size: 24px;
	margin-left: 5px;
	color: #443d37;
}

/**/

.progress {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: #29d;
	box-shadow: 0 0 3px #29d;
}

.text {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #000;
	border: none;
	width: 100px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	text-align: center;
	line-height: 100px;
	display: none;
}

.round-progress {
	fill: none;
	stroke: #ffb515;
	stroke-width: 4;
	stroke-dasharray: 1000;
}

.svg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	transform: rotate(-90deg);
}


.info-section h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
}

.info-section p {
    font-size: 18px;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}


.inauguration {
    font-family: 'Cinzel', serif; 
    font-size: 4em; 
    color: #ffffff; 
    margin-bottom: 10px; 
    padding-left: 20px; 
}

.counter {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    font-family: 'Arial', sans-serif;
    font-size: 3em;
    color: #ffffff;
    margin-top: 20px;
    padding-left: 20px; 
}

.countdown__item {
    margin: 0 15px;
}

.countdown__label {
    display: block;
    font-size: 0.5em;
    color: #ccc;
}

.input-icon {
    position: relative;
    display: flex;
    align-items: center;
    color: #000;
}

.input-icon img, .input-icon i {
    position: absolute;
    left: 10px; 
    top: 8px; 
    pointer-events: none; 
}

input[type="text"], input[type="password"] {
    padding-left: 35px; 
    height: 40px; 
}

.captcha {
    position: relative;
}

.captcha .desc {
    padding-left: 30px; 
}

.captcha-refresh {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1; 
}


.info-section {
    padding: 20px;
	margin-top: 10px;
    background-color: rgba(0, 0, 0, 0.6); 
    color: #fff; 
    border-radius: 10px; 
}

.commands {
    margin: 10px 0;
}

.note {
    color: #ccc;
    font-size: 14px;
}

.download-boxes {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.download-box {
    background-color: rgba(34, 34, 34, 0.7);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
	color: white;
    flex: 1;
    margin: 0 10px;
}

.download-box h3 {
    margin-bottom: 10px;
}

.download-button {
    display: inline-block;
    padding: 10px 20px;
	background-image: url("../images/login-background.png");
	color: #54200e;
    border-radius: 5px;
    text-decoration: none;
}


.download-header {
    text-align: center; 
    margin-bottom: 20px;
}

.download-title {
    font-size: 2rem; 
    font-weight: bold;
    color: #ffffff; 
}


.downloadline {
    background-color: rgba(0, 0, 0, 0.5);
	margin-top: 10px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
	color: white;
    flex: 1;
}


.register-box {
    display: none;
    background-image: url("../images/discussion-background.png");
    position: absolute;
    width: 400px;
    margin-top: 10px;
	color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    animation: slide-down 0.3s ease-out;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-submit .submit-button {
    padding: 12px 30px;
    background-image: url("../images/login-background.png");
    color: #54200e;
    font-size: 20px;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: auto; 
    display: block;
    margin: 20px auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
}

.form-submit .submit-button:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}



.register-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.register-box input, .register-box select {
    margin-bottom: 15px;
    padding: 10px;
    width: 100%; 
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}


.register-box .formpadrao.captcha .desc {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px; 
    padding: 0; 
    margin: 0;
}

.register-box .formpadrao.captcha img {
    margin-left: 0; 
}

.register-box .formpadrao.captcha a {
    margin-right: 0; 
}

.register-box .captchaImage {
    height: auto;
    display: inline-block;
    margin-left: 0; 
}

.icon-input {
    position: relative;
    height: 40px; 
    margin-bottom: 15px; 
}

.icon-input i {
    position: absolute;
    left: 10px; 
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px; 
    color: #333; 
}

.icon-input input {
    padding-left: 40px; 
    height: 100%; 
    width: 100%;
    box-sizing: border-box;
}

.register-box label {
    display: block;
    margin-bottom: 5px; 
}

.register-box input {
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 40px; 
}

.register-box .formpadrao {
    margin-bottom: 20px; 
}

input[type="text"], input[type="password"], input[type="email"], input[type="submit"] {
    padding-left: 35px; 
    height: 40px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    width: 100%;
    box-sizing: border-box; 
    margin-bottom: 10px; 
}