/* CSS Reset */
@import url('https://fonts.googleapis.com/css2?family=Varela+Round:wght@400;700&amp;display=swap');
.preload * {
  -webkit-animation: none !important;
  -moz-animation: none !important;
  -ms-animation: none !important;
  -o-animation: none !important;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: var(--fonteprimaria), sans-serif;
	font-size: 13px;
	vertical-align: baseline;
	text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
	font-smooth: antialiased;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
#modal-root {
	display: none;
}
input[type=email]:not(:placeholder-shown):invalid {
  color: red;
  outline-color: red;
}
body {
	height: 100%;
	background-color: rgba(var(--corsecundaria),1);
	background-image: var(--background2);
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End of Reset */

/* Fontes */
A:link {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s;
}
A:active {
	color: inherit;
	text-decoration: none;
}
A:visited {
	color: inherit;
	text-decoration: none;
}
A:hover {
	color: inherit;
	text-shadow: 0 0 3px rgba(var(--corluzes),0.5);
	text-decoration: none;
}
p + p {margin-top: 5px;}
.deletesvg {
	width: 20px;
	fill: rgba(194, 57, 57, 1);
	vertical-align: -4px;
}
.checksvg {
	width: 18px;
	margin-right: 4px;
	fill: rgba(66, 133, 21, 1);
	vertical-align: middle;
}
.visualizarsvg {
	width: 30px;
}
.photosvg {
	width: 30px;
}

/* Classes gerais de efeitos */
.hoversombra1 {
	transition: box-shadow 0.2s;
	-webkit-transition: box-shadow 0.2s;
}
	.hoversombra1:hover {
		-webkit-box-shadow: 2px 2px 12px 0px rgba(0,0,0,1);
		-moz-box-shadow: 2px 2px 12px 0px rgba(0,0,0,1);
		box-shadow: 2px 2px 12px 0px rgba(0,0,0,1);
	}

.hoversombra2 {
	transition: box-shadow 0.2s;
	-webkit-transition: box-shadow 0.2s;
}
	.hoversombra2:hover {
		-webkit-box-shadow: 1px 1px 7px 0px rgba(0,0,0,1);
		-moz-box-shadow: 1px 1px 7px 0px rgba(0,0,0,1);
		box-shadow: 1px 1px 7px 0px rgba(0,0,0,1);
	}

.hoverborda {
	border: 2px solid transparent;
	transition: border 0.5s;
	-webkit-transition: border 0.5s;
}
	.hoverborda:hover {
		border: 2px solid rgba(var(--corluzes),1);
	}

.fadein1 {
	opacity: 0;
	opacity: 1 \9; /*just in case ie*/
	-webkit-animation-name: fadein1;
    -webkit-animation-duration: 0.5s;
	-webkit-animation-fill-mode:forwards;
	-ms-animation-name: fadein1;
    -ms-animation-duration: 0.5s;
	-ms-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
}
@-webkit-keyframes fadein1 {
    from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes fadein1 {
    from {opacity: 0;}
    to {opacity: 1;}
}
.fadein2 {
	opacity: 0;
	opacity: 1 \9; /*just in case ie*/
	animation-delay: 0.5s;
	-webkit-animation-name: fadein1;
    -webkit-animation-duration: 2s;
	-webkit-animation-fill-mode:forwards;
	-ms-animation-name: fadein1;
    -ms-animation-duration: 2s;
	-ms-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
}
@-webkit-keyframes fadein2 {
    from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes fadein2 {
    from {opacity: 0;}
    to {opacity: 1;}
}
.fadefromright {
	opacity: 0;
	opacity: 1 \9; /*just in case ie*/
	-webkit-animation-name: fadefromright;
    -webkit-animation-duration: 0.5s;
	-webkit-animation-fill-mode:forwards;
	-ms-animation-name: fadefromright;
    -ms-animation-duration: 0.5s;
	-ms-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
}
@-webkit-keyframes fadefromright {
	from {transform: translate(-40px, 0); opacity: 0.5;}
	to {transform: translate(0, 0); opacity: 1}
}
@keyframes fadefromright {
    from {transform: translate(-40px, 0); opacity: 0.5;}
	to {transform: translate(0, 0); opacity: 1}
}

.fadefromleft {
	opacity: 0;
	opacity: 1 \9; /*just in case ie*/
	-webkit-animation-name: fadefromleft;
    -webkit-animation-duration: 0.5s;
	-webkit-animation-fill-mode:forwards;
	-ms-animation-name: fadefromleft;
    -ms-animation-duration: 0.5s;
	-ms-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
}
@-webkit-keyframes fadefromleft {
	from {transform: translate(40px, 0); opacity: 0.5;}
	to {transform: translate(0, 0); opacity: 1}
}
@keyframes fadefromleft {
    from {transform: translate(40px, 0); opacity: 0.5;}
	to {transform: translate(0, 0); opacity: 1}
}

.delay1 {animation-delay: 0.00s;}.delay2 {animation-delay: 0.50s;}.delay3 {animation-delay: 1.00s;}.delay4 {animation-delay: 1.50s;}.delay5 {animation-delay: 2.00s;}.delay6 {animation-delay: 2.50s;}.delay7 {animation-delay: 3.00s;}.delay8 {animation-delay: 3.50s;}.delay9 {animation-delay: 4.00s;}.delay10 {animation-delay: 4.50s;}.flexcenter {
	display: -webkit-flex;
	display: flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-orient: horizontal;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.translatecenter {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
.borda {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-o-radius: 4px;
	-ms-radius: 4px;
	transition: border 0.3s;
	-webkit-transition: border 0.3s ease-in;
}

.borda8 {
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	-o-radius: 8px;
	-ms-radius: 8px;
	transition: border 0.3s;
	-webkit-transition: border 0.3s ease-in;
}
.borda8lponly {
	border-radius: none;
}
.borda2px {
	border: 2px solid rgba(0,0,0,0.85);
}
.backgradual {
	background-image: linear-gradient(to bottom, transparent, transparent, rgba(0,0,0,0.15));
	background: -webkit-linear-gradient(top, transparent, transparent, rgba(0,0,0,0.15));
	background-repeat: repeat-x;
	background-position: bottom;
}
.backgradualpreto {
	background-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,1), rgba(0,0,0,0.85));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.75), rgba(0,0,0,0.9));
	background-repeat: repeat-x;
	background-position: bottom;
	color: rgba(var(--amarelo),1);
}
red {
	color: red;
}
green {
	color: green;
}
blue {
	color: blue;
}
gray {
	color: rgba(0,0,0,0.5);
}
gray75 {
	color: rgba(0,0,0,0.75);
}
purple {
	color: rgba(128,0,128,1)
}
negrito, .negrito {
	font-weight: 700; !important
}
italico {
	font-style: italic;
}
sublinhado {
	text-decoration: underline;
}
::i-block-chrome, .safarinone {
	display: none;
}
.jump {
	animation: jump 1.2s infinite;
}
@keyframes jump {
	0% { transform: translate(0, 3px) scale(1.15, 0.85); }
	50% { transform: translate(0, -80%) scale(1, 1); }
	55% { transform: translate(0%, -80%) rotate(15deg); }
	60% { transform: translate(0, -80%) rotate(-15deg); }
	65% { transform: translate(0, -80%) rotate(15deg); }
	70% { transform: translate(0, -80%) rotate(-15deg); }
	100% { transform: translate(0, 3px) scale(1.15, 0.85); }
}

.dance {
	animation: dance 1.2s infinite;
}
@keyframes dance {
	0% { transform: translate(0, 0) rotate(-25deg); }
	50% { transform: translate(0, 0) rotate(25deg); }
	100% { transform: translate(0, 0) rotate(-25deg); }
}
.littledance {
	animation: littledance 0.7s infinite;
}
@keyframes littledance {
	0% { transform: translate(0, 0) rotate(-10deg); }
	50% { transform: translate(0, 0) rotate(10deg); }
	100% { transform: translate(0, 0) rotate(-10deg); }
}
.sombra1 {
	-webkit-box-shadow: 2px 2px 12px 0px rgba(0,0,0,1);
	-moz-box-shadow: 2px 2px 12px 0px rgba(0,0,0,1);
	box-shadow: 2px 2px 12px 0px rgba(0,0,0,1);
}
.sombra2 {
	-webkit-box-shadow: 1px 1px 7px 0px rgba(0,0,0,1);
	-moz-box-shadow: 1px 1px 7px 0px rgba(0,0,0,1);
	box-shadow: 1px 1px 7px 0px rgba(0,0,0,1);
}
.marginbottom {
	margin-bottom: 20px;
}
.margintop {
	margin-top: 20px;
}
.clippath_hexagono {
	-webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.slidefromleft {
	-webkit-animation-name: slidefromleft;
	-webkit-animation-fill-mode:forwards;
	-webkit-animation-duration: 0.5s;
	-ms-animation-name: slidefromleft;
	-ms-animation-duration: 0.5s;
	-ms-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
	animation-direction: forwards;
	animation-iteration-count: 1;
}
@-webkit-keyframes slidefromleft {
	from {transform: translateX(-100%);}
	to {transform: translateX(0);}
}
@keyframes slidefromleft {
	from {transform: translateX(-100%);}
	to {transform: translateX(0);}
}
.slidefromright {
	-webkit-animation-name: slidefromright;
	-webkit-animation-fill-mode:forwards;
	-webkit-animation-duration: 0.5s;
	-ms-animation-name: slidefromright;
	-ms-animation-duration: 0.5s;
	-ms-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
	animation-direction: forwards;
	animation-iteration-count: 1;
}
@-webkit-keyframes slidefromright {
	from {transform: translateX(100%);}
	to {transform: translateX(0);}
}
@keyframes slidefromright {
	from {transform: translateX(100%);}
	to {transform: translateX(0);}
}
.cursor {
	cursor: pointer;
	user-select: none;
}
.displaynone {
	display: none;
}
.forminputloginemail {
	display: none;
}
.boxshadow_corluzes {
	box-shadow: 0 0 10px rgba(var(--corluzes),0.75);
}
.configsvg {
	-webkit-animation-name: configsvganimation;
	-webkit-animation-fill-mode: forwards;
	-webkit-animation-duration: 10s;
	-ms-animation-name: configsvganimation;
	-ms-animation-duration: 10s;
	-ms-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	animation-direction: reverse;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
@-webkit-keyframes configsvganimation {
	from {transform: rotate(0);}
	to {transform: rotate(-360deg);}
}
@keyframes configsvganimation {
	from {transform: rotate(0);}
	to {transform: rotate(-360deg);}
}
.assinaturasvg_seta {
	-webkit-animation-name: assinaturasvg_seta;
	-webkit-animation-fill-mode: forwards;
	-webkit-animation-duration: 7s;
	-ms-animation-name: assinaturasvg_seta;
	-ms-animation-duration: 7s;
	-ms-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	animation-direction: forwards;
	animation-iteration-count: infinite;
	animation-timing-function: cubic-bezier(0.6,0,0,1));
	transform-origin: 50% 50%;

}
@-webkit-keyframes assinaturasvg_seta {
	0% {transform: rotate(0);}
	60% {transform: rotate(-720deg);}
	100% {transform: rotate(-720deg);}
}
@keyframes assinaturasvg_seta {
	0% {transform: rotate(0);}
	60% {transform: rotate(-720deg);}
	100% {transform: rotate(-720deg);}
}
@media only screen {
.printfooter {
	display: none;
}}
.hide10animation {
  animation: hide10animation 0.5s ease-in 10s;
  animation-fill-mode: forwards;
}
@keyframes hide10animation {
  to {
	opacity: 0;
    visibility: hidden;
    height: 0;
	margin: 0;
  }
}
.notranslate {
		transform: translate(0px, 0px);
	}
.setaexplicacao {
    fill: black;
    width: 19px;
    height: 19px;
    float: initial;
    transform: rotate(180deg) translate(-3px,-4px);
    transition: transform 0.3s;
}
.setaexplicacaoativa {
    transform: rotate(0deg) translate(3px,3px);
}
.heartpulse {
	animation: heartpulse 1s infinite;
}
@keyframes heartpulse {
	10% {transform: scale(1.1)}
}
.notificacaosvg_svg {
	float: left;
	height: 20px;
    margin-right: 4px;
    vertical-align: middle;
	fill: rgba(var(--corluzes),1);
}