/* DOCUMENT CSS */

/* CSS's */
@import url('carouseis.css');
@import url('instagram.css');
@import url('whats.css');

/* Variastrap */
@import url('variaveis.css');

/* Fontes Externas */

/*  font-family: "Montserrat", sans-serif;  */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Syne:wght@400..800&display=swap');

/* CORPO */

html,
body {
	margin-left: 0px;
	margin-right: 0px;
	padding: 0px !important;
	overflow-x: hidden !important;
	overflow-y: auto !important;
	backface-visibility: hidden !important;
	font-family: "Montserrat", sans-serif !important;
}

a[href^=tel],
a,
a:hover {
	color: inherit !important;
	text-decoration: none !important;
}

.fadeIn {
	-webkit-animation: fadeIn 0.7s ease-in-out;
	-moz-animation: fadeIn 0.7s ease-in-out;
	-o-animation: fadeIn 0.7s ease-in-out;
	animation: fadeIn 0.7s ease-in-out;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-o-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* GERAL */

input:focus,
button:focus {
	outline: none !important;
	box-shadow: none !important;
}

.body_ajax {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	background: #fff;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 9999;
}

.spinner {
	border: 10px solid #00cfed;
	border-left-color: #008fcc;
	border-radius: 100%;
	height: 80px;
	width: 80px;
	margin: auto;
}

@keyframes loading {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}

.spinner.is-animating {
	animation: loading 2s linear infinite;
}

/* Popup */

.modal-open .modal {
	overflow-y: hidden !important;
}

.compensate-for-scrollbar {
	margin-right: 0px !important;
	padding-right: 0px !important;
}

.btn.show {
	border: none !important;
}

.owl-carousel .owl-item img {
	display: inherit !important;
	width: auto !important;
}

.form-check-input:checked {
	background-color: #6b6a6a !important;
	border-color: #6b6a6a !important;
}

.form-check-input:focus {
	border-color: #6b6a6a !important;
}

::selection {
	background-color: #008fcc !important;
	color: #ffffff !important;
}

.ancora {
	padding-top: 90px !important;
	margin-top: -90px !important;
}

/* OUTROS */
#contatos p,
#produto p,
#ver-produto h3 p {
	margin-bottom: 0px !important;
}

#quem-somos p strong {
	font-weight: 500 !important;
}

/* MENU */
.nav-link:hover {
	color: #4fe2f8 !important;
}

.menu {
	opacity: 0;
	height: 0px ;
	padding-right: 0px !important;
	transition: opacity 0.4s ease-in-out;
	pointer-events: none;
}

.menu.visible {
	opacity: 1;
	height: auto;
	pointer-events: auto;
}