* {
	font-family: 'Barlow', sans-serif;
	color: #ffffff;
}

html, body {
    background-color: #020002;
}

a, a:hover {
	text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
    padding: 0;
}

button.btn,
button.btn:active,
button.btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

button.btn:active {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.form-control:focus {
    box-shadow: none;
}

.main {
	overflow: hidden;
    padding-top: 90px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Asap', sans-serif;
	font-weight: 700;
	color: inherit;
}

.btn.btn-default {
    border: 2px solid #FFFFFF;
    border-radius: 0;
    padding: 5px 25px 8px;
    background-color: transparent;
    color: #FEFEFE;
    width: fit-content;
    font-size: 21px;
    font-weight: 500;
    transition: 0.5s;
}

.btn.btn-default:hover {
    border: 2px solid #FFFFFF;
    background-color: #FFFFFF;
    color: #06304B;
}

.btn.btn-gradient {
    display: block;
    color: #FFFFFF;
    font-size: 21px;
    border: 2px solid #ffffff !important;
    border-radius: 0;
    padding: 5px 25px 8px !important;
    background: transparent linear-gradient(285deg, #FE01F285 0%, #FE01F24D 50%, #9A329538 73%, #54545400 100%) 0% 0% no-repeat padding-box;
    transition: background-color 1s;
}

.btn.btn-gradient:hover {
    color: #FFFFFF;
    border: 2px solid #ffffff;
    background-color: #FE01F24D;
}

.desktop {
	display: block;
}

.desktop.tablet {
	display: block;
}

.tablet {
	display: none;
}

.mobile {
	display: none;
}

@media(max-width: 992px) {
	
	.desktop {
		display: none;
	}

	.tablet,
	.tablet.desktop, 
	.tablet.mobile {
		display: block;
	}

    .main {
        padding-top: 70px;
    }
	
}

@media(max-width: 576px) {

	.desktop {
		display: none;
	}

	.tablet {
		display: none;
	}

	.desktop.tablet {
		display: none;
	}

	.mobile {
		display: block;
	}

	.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		--bs-gutter-x: 2.5rem;
	}

}

/* --- ESTILOS DA TELA DE ESPERA --- */

/* Container principal que cobre toda a tela */
#loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #000000;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.5s ease; /* Efeito suave ao fechar */
}

/* Caixa do logo */
.logo-container {
	width: 300px;
	border: 3px solid #666; /* Borda cinza mais escura */
	padding-bottom: 10px; /* Espaço para a barra de progresso */
	position: relative; /* Necessário para posicionar a barra */
}

/* Texto do logo "M10" */
.logo-text {
	font-family: 'Arial Black', sans-serif;
	font-size: 100px;
	color: #dcdcdc; /* Cor do texto cinza claro */
	text-align: center;
	margin: 0;
	padding: 2rem;
	font-weight: 900;
	letter-spacing: -5px; /* Ajusta o espaçamento entre as letras */
}

/* Barra de progresso que anima */
.progress-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 5px; /* Altura da barra */
	background-color: #ffffff; /* Cor da barra (branca) */
	width: 0%; /* Inicia com largura 0 */
	animation: fillAnimation 2.5s linear infinite; /* Aplica a animação */
}

/* Botão de fechar */
#close-button {
	position: absolute;
	top: 20px;
	right: 30px;
	background: none;
	border: none;
	color: #ffffff;
	font-size: 14px;
	font-family: sans-serif;
	cursor: pointer;
	visibility: hidden; /* Começa escondido */
	opacity: 0;
	transition: opacity 0.3s ease;
}

#close-button.visible {
	visibility: visible;
	opacity: 1;
}

/* Animação de preenchimento (Keyframes) */
@keyframes fillAnimation {
	0% {
		width: 0%; /* Início ("início") */
	}
	100% {
		width: 100%; /* Fim ("chegando aqui") */
	}
	/* A animação volta ao 0% automaticamente por ser 'infinite' */
}

header {
	position: fixed;
	width: 100%;
    z-index: 999;
    background-color: transparent;
}

header.background {
    background-color: #020002;
}

header img {
    max-height: 60px;
    transition: 0.5s;
}

header.background img {
    max-height: 40px;
}

header .navbar .menu {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

header .navbar .menu li {
	margin-left: 50px; 
}

header .navbar .menu li a {
    font-size: 18px;
	border: 3px solid transparent;
    padding: 2px 7px 5px;
    transition: 0.5s;
}

header .navbar .menu li a:hover {
	border: 3px solid #ffffff;
}

header ul.menu li.btn-gradient a {
    border: 2px solid #ffffff !important;
    padding: 7px 15px 10px !important;
    background: transparent linear-gradient(285deg, #FE01F285 0%, #FE01F24D 50%, #9A329538 73%, #54545400 100%) 0% 0% no-repeat padding-box;
    transition: background-color 1s;
}

header ul.menu li.btn-gradient a:hover {
    border: 2px solid #ffffff;
    background-color: #FE01F24D;
}

@media(max-width: 992px) {

    header .navbar .btn {
        padding: 0;
    }

    header .navbar .btn i {
        font-size: 28px;
    }

    header #offcanvasRight {
		max-width: 250px;
        background: #003B56 linear-gradient(338deg, #AB007D1A 0%, #810F7353 0%, #16345BCC 39%, #003B56E0 100%) 0% 0% no-repeat padding-box;
	}

    header #offcanvasRight .offcanvas-header,
    header #offcanvasRight .offcanvas-body {
        padding: 1rem 2.5rem;
    }

    header #offcanvasRight .offcanvas-header .btn i {
        font-size: 35px;
    }

    header #offcanvasRight ul.menu li {
        margin: 42px 0;
        font-size: 18px;
        font-weight: 500;
    }

}

@media(max-width: 576px) {

    header .navbar .btn {
        padding: 0;
    }

    header .navbar .btn i {
        font-size: 28px;
    }

}

footer {
    background: transparent linear-gradient(282deg, #AB007D1A 0%, #810F7353 0%, #16345BCC 39%, #003B56E0 100%) 0% 0% no-repeat padding-box;
    padding: 55px 0 15px;
}

footer .row.sitemap {
    align-items: center;
    margin-bottom: 90px;
}

footer .topic {
    font-size: 25px;
    font-weight: 500;
    color: #FF7EF9;
}

footer .menu {
    display: flex;
    justify-content: space-between;
    margin: 0;
}

footer .menu li a {
    font-size: 18px;
	border: 3px solid transparent;
    padding: 2px 7px 5px;
    transition: 0.5s;
}

footer .menu li a:hover {
    border: 3px solid #ffffff;
}

footer .socials {
    display: flex;
    justify-content: center;
    margin: 0;
}

footer .socials .social-item {
    margin-right: .75rem;
}

footer .socials .social-item i {
    font-size: 32px;
    color: #FF7EF9;
}

footer .row.contact {
    align-items: center;
}

footer .row.contact .phone {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

footer .row.contact .address {
    font-size: 18px;
    color: #57C2B9;
}

footer .row.contact .tuna {
    display: flex;
    justify-content: end;
}

footer .copy {
    display: flex;
    justify-content: center;
    color: #57C2B9;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid;
    text-align: center;
    opacity: 0.75;
}

@media(max-width: 992px) {

    footer .row.sitemap {
        margin-bottom: 0;
    }

    footer .menu {
        transform: translateX(-10px);
        margin: 30px 0;
    }

    footer .tel-address {
        margin-top: 30px;
    }

    footer .socials {
        justify-content: start;
        transform: translateX(-20px);
    }

}

@media(max-width: 576px), (max-height: 768px) {

    footer .row.sitemap {
        position: relative;
        margin-bottom: 0;
    }

    footer .menu {
        flex-direction: column;
        margin-bottom: 40px;
    }

    footer .menu li {
        margin-bottom: 20px;
    }

    footer .socials {
        justify-content: center;
        transform: none;
        margin: 50px 0;
    }

    footer .row.contact .tuna {
        justify-content: center;
    }

}