@font-face {
	font-family: 'Vivo Type';
	src: url('VivoTypeBold.woff2') format('woff2'),
		url('VivoTypeBold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Vivo Type';
	src: url('VivoTypeLight.woff2') format('woff2'),
		url('VivoTypeLight.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Vivo Type';
	src: url('VivoTypeRegular.woff2') format('woff2'),
		url('VivoTypeRegular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}




@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Space+Grotesk:wght@300..700&display=swap');



/*   Options    */


:root {
	--cor-1: #212d00;
	--cor-2: #333300;
	--cor-3: #3d4d2e;
	--cor-4: #212d00;

	--cor-txt-1: #212d00;
	--cor-txt-2: #ead4cc;


	--cor-bg-1: #ffffff;
	--cor-bg-2: #ead4cc;
	--cor-bg-3: #3d4d2e;


	--font: "Space Grotesk", sans-serif;

	--fs-h1: 52px;
	--fs-h2: 44px;
	--fs-h3: 32px;
	--fs-h4: 26px;
	--fs-h5: 22px;
	--fs-h6: 20px;
	--fs-p: 18px;
	--fs-p-s: 17px;
	--fs-p-ss: 10px;

	--lh-h1: 58px;
	--lh-h2: 50px;
	--lh-h3: 34px;
	--lh-h4: 28p;
	--lh-h5: 24px;
	--lh-h6: 22px;
	--lh-p: 22px;
	--lh-p-s: 22px;
	--lh-p-ss: 20px;


}

/*   General    */
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: var(--font);
}

img {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

.mobile-show {
	display: none;
}

[style*="--aspect-ratio"]> :first-child {
	width: 100%;
}

[style*="--aspect-ratio"]>img {
	height: auto;
}

@supports (--custom:property) {
	[style*="--aspect-ratio"] {
		position: relative;
	}

	[style*="--aspect-ratio"]::before {
		content: "";
		display: block;
		padding-bottom: calc(100% / (var(--aspect-ratio)));
	}

	[style*="--aspect-ratio"]> :first-child {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
	}
}


.video {
	width: 100%;
	border-radius: 0;
	overflow: hidden;
	-webkit-box-shadow: -10px 10px 30px 0px rgba(0, 0, 0, 0.6);
	-moz-box-shadow: -10px 10px 30px 0px rgba(0, 0, 0, 0.6);
	box-shadow: -10px 10px 30px 0px rgba(0, 0, 0, 0.6);
	border: var(--cor-1) solid 3px;
	border-radius: 3px;
}

/* Textos */
h1 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: var(--fs-h1);
	line-height: var(--lh-h1);
	font-family: var(--font);
	text-align: left;
	color: var(--cor-txt-1);

}

h2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: var(--fs-h2);
	line-height: var(--lh-h2);
	font-family: var(--font);
	text-align: left;
	color: var(--cor-txt-1);
	text-transform: uppercase;
}

h3 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: var(--fs-h3);
	line-height: var(--lh-h3);
	font-family: var(--font);
	text-align: left;
	color: var(--cor-txt-1);
}

h4 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: var(--fs-h4);
	line-height: var(--lh-h4);
	font-family: var(--font);
	text-align: left;
	color: var(--cor-txt-1);
}

h5 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: var(--fs-h5);
	line-height: var(--lh-h5);
	font-family: var(--font);
	text-align: left;
	color: var(--cor-txt-1);
}

h6 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: var(--fs-h6);
	line-height: var(--lh-h6);
	font-family: var(--font);
	text-align: left;
	color: var(--cor-txt-1);
}

p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: var(--fs-p);
	line-height: var(--lh-p);
	font-family: var(--font);
	text-align: left;
	color: var(--cor-txt-1);
}

/* Formulários */
textarea {
	width: 100%;
	height: 200px;
	margin: 0 0 16px;
	padding: 15px 20px;

	color: var(--cor-txt-1);

	font-family: var(--font);
	font-weight: 400;
	font-size: var(--fs-p);
	line-height: var(--lh-p);
	text-align: left;


	border: var(--cor-senaria) 1px solid;
	border-radius: 10px;
	background: var(--cor-bg-1);

}


textarea::-webkit-input-placeholder {
	/* Edge */
	color: var(--cor-txt-1);
}

textarea:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: var(--cor-txt-1);
}

textarea::placeholder {
	color: var(--cor-txt-1);
}



input {
	width: 100%;
	height: auto;
	margin: 0 0 15px;
	padding: 15px 20px;

	color: var(--cor-txt-1);

	font-family: var(--font);
	font-weight: 400;
	font-size: var(--fs-p);
	line-height: var(--lh-p);
	text-align: left;


	border: none;
	border-radius: 10px;
	background: var(--cor-bg-1);

}



.bt-cadastrar {
	width: auto !important;
	padding: 15px 40px !important;
	margin: 15px 0 60px;
}

.bt-entrar {
	width: auto;
	padding: 15px 40px;
	background: var(--cor-1);
	color: var(--cor-txt-2);
	font-weight: 700;
	text-align: center;
}


input::-webkit-input-placeholder {
	/* Edge */
	color: var(--cor-txt-1);
}

input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: var(--cor-txt-1);
}

input::placeholder {
	color: var(--cor-txt-1);
}




.box-envie-sua-foto {
	width: 200px;
	height: 200px;
	margin: 0 0 15px;
	padding: 0;
	display: flex;
	justify-content: center;

	color: var(--cor-txt-1);
	font-family: var(--font);
	font-size: var(--fs-p);
	line-height: var(--lh-p);

	background: var(--cor-bg-2);

	font-weight: 400;
	text-align: center;
	border-radius: 1000px;
}

.box-envie-sua-foto label {
	width: 80%;
	cursor: pointer;
	margin: 0;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
}

.box-envie-sua-foto label span {
	color: var(--cor-2);
	font-weight: 700;
}

.box-envie-sua-foto label img {
	width: 40%;
	height: auto;
	margin: 0 0 15px;
	padding: 0;
	cursor: pointer;
}

#mediaFile {
	position: absolute;
	top: -1000px;
}

#profile {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	position: relative;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	background: ;
	background-size: cover;
	background-position: center center;
	border: none;
	border-radius: 1000px;
	overflow: hidden;
}


.box-aceites {
	width: 100%;
	height: auto;
	margin: 0 0 2px 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.form-check-inline {
	width: 40px;
	height: 40px;
	-webkit-appearance: none;
	margin: 0 20px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
}

.form-check-inline:focus {
	outline: none;
}

.form-check-inline:checked:after {
	content: '✓';
	font-size: var(--fs-h3);
	line-height: var(--lh-h3);
	position: relative;

	color: var(--cor-1);
}

.box-aceites label {
	width: calc(100% - 60px);
	height: auto;
	font-family: var(--font);
	font-size: var(--fs-p);
	line-height: var(--lh-p);
	font-weight: 400;
	color: var(--cor-txt-1);
	padding: 0;
	margin: 0;
	display: inline-block;
	position: relative;

}

.box-aceites label a {
	color: var(--cor-1);
	cursor: pointer;
	text-decoration: none;
}

.box-aceites label a:hover {
	color: var(--cor-1);
	text-decoration: none;
}







/*the container must be positioned relative:*/

.inner {
	max-height: 280px !important;
	margin: 0 10px 0 0;
}

.bootstrap-select.open>.dropdown-menu {
	display: block;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);

}

.bootstrap-select>.dropdown-menu {
	display: none;
	opacity: 0;
	max-height: 330px !important;
	visibility: hidden;
	overflow: hidden;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(0.85) translateY(-5px);
	-ms-transform: scale(0.85) translateY(-5px);
	transform: scale(0.85) translateY(-5px);
	-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	top: 0;
	height: 30vh;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
	width: 100%;
}

.bootstrap-select>.dropdown-toggle {
	background: var(--cor-bg-1);
	border: 0;
	width: 100%;
	display: block;
	padding: 15px 20px;
	margin: 0 0 15px;
	color: var(--cor-txt-1);
	font-size: var(--fs-p);
	font-weight: 400;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	cursor: pointer;
	font-family: var(--font);
}

.bootstrap-select>.dropdown-toggle.bs-placeholder, .bootstrap-select>.dropdown-toggle.bs-placeholder:active, .bootstrap-select>.dropdown-toggle.bs-placeholder:focus, .bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
	color: var(--cor-txt-1);
}

.dropup .dropdown-toggle::after, .dropdown .dropdown-toggle::after {
	position: absolute;
	content: " ";
	right: 20px;
	width: var(--fs-p);
	height: var(--fs-p);
	background: url(../img/select-abrir.png) center center no-repeat;
	background-size: contain;
	transition: all 0.5s;
	border: none;
	margin: 5px 0 0 0;
}

.open .dropdown-toggle::after {
	position: absolute;
	content: " ";
	right: 20px;
	width: var(--fs-p);
	height: var(--fs-p);
	background: url(../img/select-abrir.png) center center no-repeat;
	background-size: contain;
	transform: rotate(180deg);
	transition: all 0.5s;
	border: none;
	margin: 5px 0 0 0;
}



.dropdown-menu {
	box-shadow: 0px 0px 15px rgba(60, 76, 150, 0.1);
	-webkit-box-shadow: 0px 0px 15px rgba(60, 76, 150, 0.1);
	-moz-box-shadow: 0px 0px 15px rgba(60, 76, 150, 0.1);
	position: absolute;
	left: 0;
	background: var(--cor-bg-1);
	min-width: 100% !important;
	width: 100% !important;
	display: block;
}

.bootstrap-select .dropdown-menu a {
	display: block;
	padding: 8px 15px;
	margin: 0 10px;
	font-size: var(--fs-p);
	font-weight: 400;
	color: var(--cor-txt-1);

}

.bootstrap-select .dropdown-menu a:hover {
	background: var(--cor-bg-3);
	color: var(--cor-txt-2);
	border-radius: 10px;
}

.bootstrap-select .dropdown-menu a span:hover {}


/* Scroll Bar */
/* width */
.inner::-webkit-scrollbar {
	width: 8px;

}

/* Track */
.inner::-webkit-scrollbar-track {
	background: transparent;
	margin: 10px 10px 10px 0;
}

/* Handle */
.inner::-webkit-scrollbar-thumb {
	background: var(--cor-1);
	border-radius: 100px;
}

/* Handle on hover */
.inner::-webkit-scrollbar-thumb:hover {
	background: var(--cor-1);
	border-radius: 100px;
}























/*   Popup    */


.fundo-popup {
	width: 100%;
	height: 100%;
	position: fixed;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 20;
	display: none;
}

.fundo-popup:after {
	content: " ";
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	z-index: 18;
	background: var(--cor-3);
	opacity: 0.8;
	position: absolute;
}

.popup {
	width: 30%;
	height: auto;
	margin: 0;
	padding: 40px;
	background: var(--cor-bg-2);
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: absolute;
	z-index: 21;
}


.popup .bt-entrar:hover {
	color: var(--cor-txt-1);
	cursor: pointer;
}

.fechar-popup {
	width: 100%;
	height: 100%;
	position: absolute;
	margin: 0;
	padding: 0;
	z-index: 19;
	cursor: pointer;
}

.fundo-popup p {
	text-align: center;
}

.fundo-popup h3 {
	text-align: center;
	width: 100%;
	height: auto;
	margin: 0 0 10px;
	padding: 0;

	font-size: var(--fs-h4);
	text-align: center;
	color: var(--cor-1);
	font-weight: 600;
}


.popup .bt-entrar {
	background: var(--cor-1);
	margin: 20px 0 0 0;
}

.popup .bt-entrar:hover {
	color: var(--cor-txt-2);
}

.popup input {
	background: var(--cor-bg-3);
}
















/* Index */



.body-index {
	/*background: url(../img/bg_header.jpg) top left no-repeat;*/
	background-color: var(--cor-bg-2);
	background-size: cover;
}

.selo-futuro-vivo {
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 0;
	overflow: hidden;
	text-indent: -9999px;
	background: url(../img/banner.png) center center no-repeat;
	background-size: contain;
}

.container-login {
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
}


.body-index h4 {
	color: var(--cor-txt-2);
	margin: 0 0 20px;
}


















/* Home */



.bt-confirme-presenca {
	width: auto;
	height: auto;
	margin: 0;
	padding: 20px 50px;
	background: var(--cor-1);
	font-size: var(--fs-p-s);
	line-height: var(--lh-p-ss);
	font-weight: bold;
	color: var(--cor-txt-2);
	border-radius: 200px;
	position: fixed;
	bottom: 100px;
	right: 10px;
	text-align: center;
	cursor: pointer;
	z-index: 999;
}

.bt-confirme-presenca:hover {
	color: var(--cor-txt-2);
	text-decoration: none;
}


.body-home {
	background: var(--cor-bg-2);
}


.pre-header {
	background: var(--cor-1);
}







.menu-mobile {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;

	position: fixed;
	z-index: 10;

	display: none;
	top: 0;
}

.menu-mobile ul {
	right: -100%;
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
	list-style: none;
	align-items: center;
	justify-content: center;
	background: var(--cor-1);
	width: 100%;
	height: 100%;
	position: absolute;
}

.menu-mobile ul li {
	margin: 2vh 0;
}


.menu-mobile ul li a {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: var(--cor-txt-2);
	font-size: var(--fs-h6);
}

.menu-mobile ul li a.selecionado, .menu-mobile ul li a:hover {
	border-bottom: 3px solid var(--cor-4);
	text-decoration: none;
}


.menu-mobile img {
	height: var(--fs-h6);
}


.fechar-menu {
	position: fixed;
	top: 20px;
	right: 20px;
	color: var(--cor-txt-2);
	font-size: var(--fs-h3);
	z-index: 20;
	display: none;
	cursor: pointer;
}






.container-nav {
	width: 100%;
	height: auto;
	margin: 20px 0;
	padding: 0;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.container-nav .logo {
	width: 100px;
	height: 50px;
	margin: 0 30px 0 0;
	padding: 0;
	background: url(../img/logo_vivo.png) center center no-repeat;
	background-size: contain;
	overflow: hidden;
	text-indent: -9999px;
}

.container-nav .logo a {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	display: block;
}

.container-nav img {
	height: var(--fs-h6);
}

.container-nav .bt-mobile-menu {
	position: absolute;
	right: 20px;
	color: var(--cor-txt-2);
	font-size: var(--fs-h5);
	display: none;
	cursor: pointer;
}


.container-nav ul.nav {
	width: calc(100% - 130px);
	height: auto;
	margin: 10px 0 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.container-nav ul.nav li a {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: var(--cor-txt-2);
	font-size: var(--fs-h6);
	text-transform: uppercase;
}

.container-nav ul.nav li a.selecionado, .container-nav ul.nav li a:hover {
	border-bottom: 3px solid var(--cor-4);
	text-decoration: none;
}

.section {
	padding: 80px 0;
}


.banner {
	/*background: url(../img/bg_home.jpg) center center no-repeat; center no-repeat;*/

	background-size: cover;
	margin-top: 60px;
}


.banner .container-banner {
	width: 100%;

	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;

}

.banner .container-banner .grafismo {
	width: 50%;
	height: 70%;
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: -100px;
	right: 2%;
	z-index: 1;
	background: url(../img/grafismo.png) center center no-repeat;
	background-size: contain;
}


.banner h2.selo {
	width: 100%;
	height: 200px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	text-indent: -9999px;
	background: url(../img/selo_vivo-futuro.png) left center no-repeat;
	background-size: contain;
	flex-direction: column;
}


.banner .container-banner h3 {
	width: 40%;
	height: auto;
	margin: 30px 0 0 0;
	padding: 0;
	font-size: var(--fs-h3);
	line-height: var(--lh-h3);
	font-weight: 400;
	color: var(--cor-txt-2);
}




.section h2 {
	padding: 0 0 20px;
	color: var(--cor-2);
}

.section h3 {
	padding: 0 0 20px;
	color: var(--cor-2);

}



.palestrantes {
	margin-top: 60px;
}

.palestrantes .perfil {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.palestrantes .perfil h3 {
	text-align: center;
	color: var(--cor-2);
	margin: 20px 0 0 0;
	padding: 0;
	font-weight: 800;
	text-transform: uppercase;
}

.palestrantes .perfil p {
	text-align: center;
	color: var(--cor-2);
}


.agenda {
	/*background: url(../img/bg_agenda.jpg) center center no-repeat;*/
	background-size: cover;
	padding-top: 80px;
	padding-bottom: 80px;
}


.conteudo-int {
	/*background: url(../img/bg_agenda.jpg) center center no-repeat;*/
	background-size: cover;
	padding-top: 80px;
	padding-bottom: 80px;
	min-height: calc(100vh - 180px);
}


.conteudo-int p {
	font-weight: 400;
	margin: 0 0 20px;
}

.conteudo-int h1, .conteudo-int h2, .conteudo-int h3, .conteudo-int h4, .conteudo-int h5, .conteudo-int h6 {

	margin: 0 0 20px;
}

.agenda h3.tit-agenda {
	background: url(../img/bg_tit.png) center center no-repeat;
	background-size: contain;
	color: var(--cor-bg-2);
	font-size: var(--fs-h2);
	width: auto;
	padding: 50px;
	text-align: center;

}

.container-agenda {
	width: 100%;
	height: auto;
	margin: 60px 0 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.container-agenda .box-agenda {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	display: flex;
	margin: 0 0 10px;
}

.container-agenda .box-agenda .data-agenda {
	width: 25%;
	background: var(--cor-4);
	display: flex;
	/*flex-direction: column;*/
	align-items: center;
	margin: 0 15px 0 0;
	padding: 15px;
}

.container-agenda .box-agenda .data-agenda h3 {
	text-align: center;
	font-size: var(--fs-h2);
}

.container-agenda .box-agenda .data-agenda h6 {
	text-align: center;
	color: var(--cor-bg-2);
}


.container-agenda .box-agenda .desc-agenda {
	width: calc(75% - 15px);
	display: flex;
	flex-direction: column;
	justify-content: center;

}


.container-agenda .box-agenda .desc-agenda h5 {
	margin: 0 0 5px;
}



.container-agenda .box-agenda .desc-agenda p, .container-agenda .box-agenda .desc-agenda div {
	font-weight: 300;
	font-size: var(--fs-p-s);
	line-height: var(--lh-p-s);

}

.container-agenda .box-agenda .desc-agenda p a, .container-agenda .box-agenda .desc-agenda div a, .container-agenda .box-agenda .desc-agenda h5 a {
	cursor: pointer;
	text-decoration: underline;
	color: var(--cor-txt-1);
}


.container-agenda .box-agenda .fundo-popup {
	position: fixed;
	top: 0;
	left: 0;
}









/* popup palestrantes */


.perfil {
	cursor: pointer;
}


.section .fundo-popup {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	pointer-events: all;
}

.section .fundo-popup:after {
	background: var(--cor-2);
	opacity: 0.9;
}

.section .popup {
	background: transparent;
	width: 100%;
	height: 100%;
}

.section .popup h3 {

	color: var(--cor-txt-2);
	margin: 10px 0 0 0;
	padding: 0;
	text-transform: uppercase;
}

.section .popup p {

	color: var(--cor-txt-2);

}

.section .popup .desc-palestrante p {
	text-align: left;
}

.section .fundo-popup .fechar-popup {
	position: absolute;
	top: 10%;
	right: 5%;
	z-index: 50;
	color: var(--cor-txt-2);
	width: auto;
	height: auto;
	font-size: var(--fs-h2);
}






.footer {
	background: var(--cor-1);
}



.footer .container-nav ul.nav {
	justify-content: flex-end;
}






/* Carousel */




.popup .wrapper {
	width: 100%;
}

.popup .wrapper img {
	object-fit: cover;
	object-position: center;
}















/*   Responsive    */



@media (max-width: 620px) {

	.vire-de-lado {
		display: flex;
	}


}


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

	.md-hide {
		display: none;
	}

	.lg-hide {
		display: none;
	}

	.xl-hide {
		display: none;
	}


	.mobile-show {
		display: flex !important;
	}

	.mobile-hide {
		display: none !important;
	}

	.vh-100-desktop {
		height: auto;
	}



	/*Index */

	.selo-futuro-vivo {
		height: 400px;
	}

	.container-login {
		height: auto;
	}



	/* Home */
	.container-nav ul.nav {
		display: none;
	}

	.container-nav .bt-mobile-menu {
		display: block;
	}

	.container-agenda {
		margin: 0;
	}

	.agenda h2 {
		margin-bottom: 30px;
	}

	.palestrantes .perfil p {
		margin: 0 0 60px 0;
	}

	.banner .container-banner h3 {
		width: 100%
	}

	.banner .container-banner .grafismo {
		width: 80%;
		bottom: -20%;
	}


	.pre-header {
		position: fixed;
		z-index: 9;
		top: 0
	}

	.banner {
		margin-top: 120px
	}


	.popup {
		width: 80%
	}



	/*   Options    */






}



@media (min-width: 768px) and (max-width: 992px) {
	.lg-hide {
		display: none;
	}

	.xl-hide {
		display: none;
	}

	.container-index {
		height: 100%;
	}


}


@media (min-width: 992px) and (max-width: 1200px) {

	.xl-hide {
		display: none;
	}




	:root {


		--fs-h1: 48px;
		--fs-h2: 40px;
		--fs-h3: 34px;
		--fs-h4: 24px;
		--fs-h5: 20px;
		--fs-h6: 18px;
		--fs-p: 14px;
		--fs-p-s: 10px;
		--fs-p-ss: 8px;

		--lh-h1: 56px;
		--lh-h2: 48px;
		--lh-h3: 40px;
		--lh-h4: 24p;
		--lh-h5: 22px;
		--lh-h6: 20px;
		--lh-p: 20px;
		--lh-p-s: 16px;
		--lh-p-ss: 12px;


	}







}

@media (min-width: 1201px) and (max-width: 1440px) {


	.container-index h1 {
		height: 50px;
		margin: 20px 0
	}

	.container-index h3 {
		height: 70px;
		margin: 20px 0
	}

	.container-index {
		width: 30%;
		margin: 0 35%
	}

	.container-index h2 {
		height: 60px;
		margin: 0
	}

	input {
		margin: 0 0 5px
	}

	.footer {
		margin: 20px 0 0 0;
	}
}

@media (min-width: 1441px) and (max-width: 1920px) {}


@media (min-width: 1921px) {}