@charset "utf-8";

/* MODULES */
@import "header.css";
@import "emphasis.css";
@import "professionals.css";
@import "exams.css";
@import "facilities.css";
@import "faq.css";
@import "testimonials.css";
@import "footer.css";

@import "whatsapp.css";
@import "cookies.css";
/* VLIBRAS */
/* @import "vlibras.css"; */

/* PAGES */
/* @import "articles.css";
@import "blog-featured.css";
@import "category-blog.css";
@import "tags-page.css";
@import "pagination.css";
@import "search.css"; */

/* RESET */
:root {
	--color1: #deae02ff;
	--gray-light: #dededeff;
	--gray: #666666ff;
	--white: #ffffff;
	--black: #000000;
}

* {
	border: 0;
	margin: 0;
	padding: 0;
	outline: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	text-decoration: none;
	background-repeat: no-repeat;
	scroll-behavior: smooth;
	scroll-margin-top: 50px;
	font-size: 16px;
}

/* Scrollbar Remove */
body *::-webkit-scrollbar {display: none;}
body * {-ms-overflow-style: none; scrollbar-width: none;}

body {
	background-color: #f3f3f3ff;
	display: flex;
	flex-direction: column;
}

.container {
	width: 100%;
	display: flex;
}

figure img {
	width: 100%;
	height: auto;
	display: block;
}

img {
	width: 100%;
	height: auto;
	display: block;
}

figcaption {
	color: var(--gray-light);
	font-size: 12px;
	text-transform: uppercase;
}

a,
button {
	transition: 0.3s;
	background-color: transparent;
}

a:hover,
button:hover {
	color: var(--pri-color);
	cursor: pointer;
}

input::placeholder,
select,
option {
	color: var(--gray-light);
	background-color: transparent;
}

input:focus::placeholder {
	color: transparent;
}

select:hover {
	cursor: pointer;
}

ol {
	padding-left: 40px;
}

ul {
	padding-left: 40px;
}

.btn {
	border: 1px solid transparent;
	color: var(--white);
	padding: 7px 20px;
	border-radius: 4px;
	transition: all 0.3s;
	display: inline-block;
}

.btn:hover {
	cursor: pointer;
	transition: all 0.3s;
}

.video-responsive{overflow:hidden;padding-bottom:56.25%;position:relative;height:0;margin:30px 0px;}
.video-responsive iframe,
.video-responsive video {left:0;top:0;height:100%;width:100%;position:absolute;}

/* MESSAGE */
#system-message-container {
	background: var(--sec-color);
	width: 100%;
	position: absolute;
	bottom: 0vh;
}

#system-message-container #system-message {
	width: 94%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 15px 0;
}

#system-message-container #system-message .alert-notice a,
#system-message-container #system-message .alert-notice h4,
#system-message-container #system-message .alert-notice .alert-message {
	color: var(--white);
	font-weight: 700;
}

#system-message-container #system-message .alert-notice .close {
    font-size: 60px;
    background-color: var(--white);
    color: red;
    border-radius: 80%;
    padding: 0px 20px;
}

/* RESPONSIVE */
@media only screen and (max-width: 1000px) {

}