/*******************
******************** 
SECTION FAQ
********************
********************/

.container_faq {
  margin: 0 auto;
  padding: 0rem 1.2rem 5rem;
  max-width: 1000px;
  min-height: 80vh;
}
.container_faq #form-title-faq {
  font-weight: 400;
  text-align: center;
  line-height: 1.1;
  color: var(--text-background);
  font-family: "Nunito", sans-serif;
  font-size: 30px;
}
.accordion .accordion-item {
  border-bottom: 1px solid #000;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #0000;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: var(--text-background);
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: var(--text-background);
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: var(--text-background);
  border: 1px solid #000;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: var(--text-background);
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: max-content;
  transition: all 1.8s linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 1.8s linear, max-height 1.8s linear;
  will-change: opacity, max-height;
  transition: 1.8s ease;
  -webkit-transition: 1.8s ease;
  -moz-transition: 1.8s ease;
  -o-transition: 1.8s ease;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 0 0 20px;
}
/*******************
******************** 
!END SECTION FAQ'
********************
********************/




/* Remove o destaque azul de toque para navegadores baseados em WebKit (Chrome, Safari, etc.) */
img, a, button, input {
    -webkit-tap-highlight-color: transparent;
    outline: 0 none;
}
/* Garante que nenhum contorno de foco (outline) padrão do navegador apareça */
img:focus, a:focus, button:focus, input:focus {
    outline: 0 none;
}
.main-first {
	display: flex;
	width: 100%;
	max-width: 1200px;
	height: 80vh;
	gap: 60px;
	align-items: center;
	justify-content: center;
        margin: 60px 0;
}
.carousel-section {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.controls-section {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding-left: 0px;
}

.carousel-container {
	width: 100%;
	max-width: 500px;
	height: 70vh;
	position: relative;
	perspective: 1000px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.carousel-container .nav-arrow {
	display: none;
}

.carousel-track {
	width: 450px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cardNews {
	position: absolute;
	width: 400px;
	height: 225px;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
}

.cardNews img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: 0 none;
        border-radius: 20px;
        -webkit-tap-highlight-color: transparent;
        outline: 0 none;
}

.cardNews.center {
	z-index: 10;
	transform: scale(1.1) translateZ(0);
}

.cardNews.center img {
	filter: none;
        -webkit-tap-highlight-color: transparent;
        outline: 0 none;
}

.cardNews.up-2 {
	z-index: 1;
	transform: translateY(-300px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.cardNews.up-2 img {
	filter: grayscale(100%);
        -webkit-tap-highlight-color: transparent;
        outline: 0 none;
}

.cardNews.up-1 {
	z-index: 5;
	transform: translateY(-150px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.cardNews.up-1 img {
	filter: grayscale(100%);
        -webkit-tap-highlight-color: transparent;
        outline: 0 none;
}

.cardNews.down-1 {
	z-index: 5;
	transform: translateY(150px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.cardNews.down-1 img {
	filter: grayscale(100%);
        -webkit-tap-highlight-color: transparent;
        outline: 0 none;
}

.cardNews.down-2 {
	z-index: 1;
	transform: translateY(300px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.cardNews.down-2 img {
	filter: grayscale(100%);
    -webkit-tap-highlight-color: transparent;
    outline: 0 none;
}

.cardNews.down-2 img {
	filter: grayscale(100%);
    -webkit-tap-highlight-color: transparent;
    outline: 0 none;
}

.cardNews.hidden {
	opacity: 0;
	pointer-events: none;
}

.member-info {
	text-align: center;
	margin-top: 0px;
	transition: all 0.5s ease-out;
}
.member-name {
  color: var(--text-background);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  line-height: 1.2;
  text-shadow: 0 4px 6px #000;
}
.member-role {
  color: #f0b950;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.8;
  padding: 5px 0;
  margin-top: -10px;
  position: relative;
}
.dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 0px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #83620733;
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: #836207;
	transform: scale(1.2);
}

.nav-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-align: center;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 20px 0;
}
.scroll-indicator {
    position: fixed;
    bottom: 5px;
    right: 60px;
    background: #fff;
    color: var(--text-background);
    padding: 6px 14px;
    font-size: 12px;
    text-align: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    border: 1px solid #54575c;
    font-weight: 500;
    line-height: 1;
    color: #000;
    animation: scrollFadeOut 5s ease-in-out forwards;
    border-top-right-radius: 0;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    font-weight: 500;
}

.scroll-indicator span {
	font-size: 0.75rem;
	opacity: 0.9;
	display: block;
	margin-top: 2px;
}

@keyframes scrollFadeOut {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}
	10% {
		opacity: 1;
		transform: scale(1);
	}
	90% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(0.8);
		visibility: hidden;
	}
}

@media (max-width: 768px) {
	body {
		padding: 10px 0;
	}

	.main-first {
		flex-direction: column;
		height: auto;
		gap: 20px;
		max-width: 100%;
	}

	.carousel-section {
		flex: none;
		width: 100%;
	}

	.controls-section {
		flex: none;
		width: 100%;
		padding-left: 0;
		gap: 20px;
	}

	.carousel-container {
		height: 60vh;
		max-width: 350px;
	}

	.carousel-container .nav-arrow {
		display: flex;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		width: 70px;
		height: 70px;
		margin: 0;
		background: transparent;
		border: none;
		box-shadow: none;
	}

	.carousel-container .nav-arrow:hover {
		transform: translateX(-50%) scale(1.2);
		background: transparent;
		box-shadow: none;
	}

	.carousel-container .nav-arrow.up:hover {
		transform: translateX(-50%) scale(1.2);
	}

	.carousel-container .nav-arrow.down:hover {
		transform: translateX(-50%) scale(1.2);
	}

	.carousel-container .nav-arrow.up {
		top: 20px;
		transform: translateX(-50%);
	}

	.carousel-container .nav-arrow.down {
		bottom: 20px;
		transform: translateX(-50%);
	}

	.carousel-container .nav-arrow.up img {
		transform: rotate(-90deg);
		width: 50px;
		height: 50px;
    -webkit-tap-highlight-color: transparent;
    outline: 0 none;
	}

	.carousel-container .nav-arrow.down img {
		transform: rotate(90deg);
		width: 50px;
		height: 50px;
    -webkit-tap-highlight-color: transparent;
    outline: 0 none;
	}

	.nav-controls {
                font-size: 20px;
                margin: 10px 20px 0;
        }
         label.btn_ref_account { 
                font-size: 16px;
        }
         label.btn_ref_account:hover {
                font-size: 18px;
        }
	.cardNews {
		width: 250px;
		height: 150px;
	}

	.carousel-track {
		width: 350px;
	}

	.cardNews.up-2 {
		transform: translateY(-180px) scale(0.8) translateZ(-300px);
	}

	.cardNews.up-1 {
		transform: translateY(-90px) scale(0.9) translateZ(-100px);
	}

	.cardNews.down-1 {
		transform: translateY(90px) scale(0.9) translateZ(-100px);
	}

	.cardNews.down-2 {
		transform: translateY(180px) scale(0.8) translateZ(-300px);
	}

	.member-name {
		font-size: 34px;
                line-height: 1.2;
	}

	.member-role {
		font-size: 14px;
	}

	.scroll-indicator span {
		font-size: 14px;
	}
}

/*******************
******************** 
TITLE SECTIONS
********************
********************/
.title-info {
	text-align: center;
	margin-top: 0px;
	transition: all 0.5s ease-out;
}

.title-name {
  color: var(--text-background);
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  line-height: 1;
  text-shadow: 0 4px 6px #000;
}

.title-name::before,
.title-name::after {
	content: "";
	position: absolute;
	top: 100%;
	width: 40px;
	height: 2px;
	background: #fff;
}

.title-name::before {
	left: -60px;
}

.title-name::after {
	right: -60px;
}
.title-role {
  color: #f0b950;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.8;
  padding: 5px 0;
  margin-top: -10px;
  position: relative;
}
@media (max-width: 768px) {
  .title-name {
    font-size: 34px;
    line-height: 1;
  }
  .title-role {
    font-size: 14px;
  }
  .title-name::after {
    right: -40px;
  }
  .title-name::before {
    left: -40px;
  }
  .title-name::before, .title-name::after {
    width: 25px;
  }
}

.subtitle-info {
	text-align: center;
	margin-top: 0px;
	transition: all 0.5s ease-out;
}

.subtitle-name {
  color: var(--text-background);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  line-height: 1;
}
.subtitle-role {
  color: var(--text-background);
  font-size: 20px;
  font-weight: 500;
  opacity: 0.8;
  padding: 5px 0;
  margin-top: -10px;
  position: relative;
}
@media (max-width: 768px) {
  .subtitle-name {
    font-size: 26px;
    line-height: 1;
  }
  .subtitle-role {
    font-size: 18px;
  }
}
/*********************************
*********** FOOTER TOP background: transparent none repeat scroll 0 0; ***********
*********************************/
footer {
}
footer {
  z-index: 1;
  --footer-background: #000;
  display: grid;
  position: relative;
  grid-area: footer;
  min-height: 12rem;
}
footer .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1rem;
  background: var(--footer-background);
  filter: url("#blob");
}
footer .bubbles .bubble {
  position: absolute;
  left: var(--position, 50%);
  background: var(--footer-background);
  border-radius: 100%;
  -webkit-animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s), bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
          animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s), bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
  transform: translate(-50%, 100%);
}
@-webkit-keyframes bubble-size {
  0%, 75% {
    width: var(--size, 4rem);
    height: var(--size, 4rem);
  }
  100% {
    width: 0rem;
    height: 0rem;
  }
}

@keyframes bubble-size {
  0%, 75% {
    width: var(--size, 4rem);
    height: var(--size, 4rem);
  }
  100% {
    width: 0rem;
    height: 0rem;
  }
}
@-webkit-keyframes bubble-move {
  0% {
    bottom: -4rem;
  }
  100% {
    bottom: var(--distance, 10rem);
  }
}
@keyframes bubble-move {
  0% {
    bottom: -4rem;
  }
  100% {
    bottom: var(--distance, 10rem);
  }
}

figure, footer, nav, section {
  display: block;
}
.footer-top {
  background: var(--footer-background);
  padding: 70px 0 30px;
}
.icon_back_to_top {
  float: right;
  position: absolute;
  right: 20px;
  cursor: pointer;
}
.copyright-content, .footer-top {
  border: 0 none;
}
.footer-top .widget .logo {
  margin: 0 0 -10px;
}
.footer-top .widget p {
  margin-bottom: 7px;
  color: #fff;
  line-height: 1.4;
}
.widget-newsletter .fieldset {
  text-align: left;
}
.widget-newsletter .fieldset form .form-element, .form-element {
    position: relative;
    overflow: visible;
    margin: 6px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
}
.widget-newsletter .fieldset form ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 0px;
}
.widget-newsletter .fieldset form ul li a {
  margin: 5px 4px 0;
  margin-right: 4px;
  margin-bottom: 0px;
  margin-right: 4px;
  margin-bottom: 4px;
  display: block;
  color: orange;
  text-decoration: none;
  line-height: 1;
}

.clearfix::after, .container::after, .container-fluid::after, .row::after {
  clear: both;
}
.clearfix::before, .clearfix::after, .container::before, .container::after, .container-fluid::before, .container-fluid::after, .row::before, .row::after {
  display: table;
  content: " ";
}
::before, ::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.col-xs-12 {
  width: 100%;
  float: left;
}
.col-md-2, .col-sm-3, .col-md-3, .col-lg-3, .col-md-4, .col-md-5, .col-sm-6, .col-md-6, .col-md-8, .col-md-10, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}
.footer-top .widget .footer-new-title {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  display: block;
  margin: 0 0 18px;
  font-family: "Baloo 2", cursive !important;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
    margin-left: 0px;
}
.footer-top .widget ul li {
  margin: 0 4px 4px 0;
    margin-right: 4px;
    margin-bottom: 4px;
  display: block;
}
.footer-top .widget.socail-icons ul li {
  display: inline-flex;
  margin-right: 3px;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.footer-top .widget.socail-icons ul li a.btn_channel_whats {
    background: #fff;
    width: fit-content;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 18px;
    color: #000;
    font-size: 22px;
    font-weight: 900;
    border: 1px solid orange;
}
.footer-top .widget.socail-icons ul li a:hover {
  color: #EFCE4A;
}
.footer-top .widget.socail-icons ul li a svg {
  width: 35px;
  height: 35px;
  background-color: transparent;
  border: 1px solid #d4d4d4;
  border-radius: 100%;
  margin: 0px 2px 0;
  position: relative;
  padding: 6px;
}
svg:not(:root) {
  overflow: hidden;
}
.footer-top .widget.socail-icons ul li a svg:hover {
  fill: #EFCE4A;
  stroke: #EFCE4A;
}
.footer-top .widget.socail-icons ul li span {
  color: #fff;
  margin: -8px 3px 0;
}
.footer-top .widget.my-quicklinks ul li a {
  color: #fff;
}
.selo_seg {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
img.selo_img {
  width: 100%;
  max-width: 180px;
    -webkit-tap-highlight-color: transparent;
    outline: 0 none;
}
.copyrights {
  background: var(--footer-background);
  overflow: hidden;
}
.copyright-content {
  padding: 25px 0;
}
.copyright-content {
  border-top: 1px solid #fff;
}
.copyrights .copyright-content p {
  color: #fff;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 768px) {
footer .container {
  width: 100% !important;
  padding: 0;
  margin: 0;
  }
.selo_seg {
  flex-direction: column;
  }
.footer-top, .copyrights {
  padding: 5%;
  }
}

.col-md-5 {
  width: 41.66666667%;
  }
.container {
  width: 1000px;
  }
.col-md-3:nth-child(4n+1), .col-md-6:nth-child(2n+1) {
  clear: left;
  }
.col-lg-3:nth-child(4n+1), .col-sm-3:nth-child(4n+1), .col-sm-6:nth-child(2n+1) {
  clear: none;
  }
.col-md-3 {
  width: 25%;
  }
.col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-8, .col-md-10, .col-md-12 {
  float: left;
  }
.col-md-2 {
  width: 15%;
  }

@media (max-width: 992px) {
.container {
  width: 850px;
  }
.col-sm-3:nth-child(4n+1), .col-sm-6:nth-child(2n+1) {
  clear: left;
  }
.col-lg-3:nth-child(4n+1), .col-md-3:nth-child(4n+1), .col-md-6:nth-child(2n+1) {
  clear: none;
  }
.col-sm-6 {
  width: 100%;
  }
.col-sm-3, .col-sm-6, .col-sm-12 {
  float: left;
  }
footer .widget.socail-icons, footer .widget.my-quicklinks {
  margin-top: 30px;
  }
.col-sm-12 {
  width: 100%;
  }
}
.container {
  padding-right: 5px;
  padding-left: 5px;
  margin-right: auto;
  margin-left: auto;
}
h3.title_main {
  font-size: 24px;
  font-weight: 100;
  margin: 0;
  text-align: center;
}
p.pr_main {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
}
/* form and form elements
-------------------------------------*/
form,
form .form-element,
.form-element {
  position: relative;
  overflow: visible;
  margin: 6px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

label,
input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  touch-action: manipulation;
}

/* turn off visibility of the placeholder values by default for sighted users */
input::placeholder {
  opacity: 0;
  transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1); /* easeOutQuart */
  color: var(--input-txt-placeholder);
}

/* text field input styling */
/* checkbox, radio, range, submit, reset not included here */
input[type="text"].form-control,
input[type="tel"].form-control,
input[type="email"].form-control,
input[type="password"].form-control,
input[type="number"].form-control,
input[type="url"].form-control,
input[type="date"].form-control,
input[type="datetime"].form-control,
input[type="datetime-local"].form-control,
input[type="datetime-time"].form-control,
input[type="datetime-week"].form-control,
input[type="datetime-month"].form-control {
  width: 100%;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 5px;
  display: block;
  margin: 0px;
  max-width: 240px;
  font-size: 16px;
  padding: 0 30px 0;
  background: transparent;
}
.widget-newsletter .fieldset form .submit-btn {
  border: medium none;
  display: block;
  height: 48px;
  padding: 0 18px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 0;
  cursor: pointer;
  border-radius: 0px 5px 5px 0px;
}

/* hover states for inputs and selects */
input.form-control:hover,
textarea.form-control:hover,
select.form-control:hover {
  background-color: var(--input-txt-bg-hover);
  box-shadow: 
    inset 0 0 0 1px var(--input-txt-border-hover) !important; /* border */
}

input[type="text"]+label,
input[type="tel"]+label,
input[type="email"]+label,
input[type="password"]+label,
input[type="number"]+label,
input[type="url"]+label,
input[type="date"]+label,
input[type="datetime"]+label,
input[type="datetime-local"]+label,
input[type="datetime-time"]+label,
input[type="datetime-week"]+label,
input[type="datetime-month"]+label,
select+label {
	position: relative;
	color: var(--input-txt-label);
}

input:placeholder-shown+label,
select+label {
	left: 20px;
	top: 12px;
	font-size: 16px;
	padding-left: 0;
	padding-right: 0;
	transition: all 200ms cubic-bezier(0.25, 1, 0.5, 1) 200ms; /* easeOutQuart */
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
}

input:not([type=checkbox]):not([type=radio]):focus+label, 
input:not([type=checkbox]):not([type=radio]):not(:placeholder-shown)+label,
select.not-empty+label,
textarea:not(:placeholder-shown)+label {
	left: 10px;
	top: -4px; /* 6px */
	font-size: 0.688em; /* 11px */
  font-size: 0.625em; /* 10px */
	cursor: default;
        position: absolute;
	background: #fff;
	padding: 2px 4px 0;
	transition: all 200ms cubic-bezier(0.25, 1, 0.5, 1); /* easeOutQuart */
}
input:not([type=checkbox]):not([type=radio]):focus+label.whats, 
input:not([type=checkbox]):not([type=radio]):not(:placeholder-shown)+label.whats,
select.not-empty+label.whats,
textarea:not(:placeholder-shown)+label.whats {
	left: 10px;
	top: -4px; /* 6px */
	font-size: 0.688em; /* 11px */
  font-size: 0.625em; /* 10px */
	cursor: default;
        position: absolute;
	background: #000;
	padding: 2px 4px 0;
	transition: all 200ms cubic-bezier(0.25, 1, 0.5, 1); /* easeOutQuart */
}

/* focus states for inputs and selects */
.form-element input:not([type=checkbox]):not([type=radio]):focus,
.form-element textarea:focus,
.form-element select:focus {
  outline: none;
	outline-color: var(--input-txt-border-focus);
	outline-width: 1px;
	outline-border-radius: 1px;
  
  box-shadow: 
    inset 0 0 0 1px var(--input-txt-border-focus) !important; /* border */
}

/* date input formatting */
input::-webkit-date-and-time-value{ 
  text-align:left; 
}

p.small-return {
  text-align: center;
  line-height: 1.2;
}
button#submitImage {
  padding: 6px 12px;
  background: #c112bf;
  border: 0 none;
  border-radius: 5px;
  width: 100px;
  height: 40px;
  color: #fff;
  font-size: 16px;
  justify-content: center;
  align-items: center;
}
button#submitImage:hover {
  background: #e127df;
}

.form-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px 0 10px;
  flex-direction: column;
  gap: 6px;
}
#profileDisplay {
  width: 80px;
  height: 80px;
  border: 2px solid #e1dddd;
  border-radius: 15px;
  box-shadow: 0px 2px 8px 1px #00000054;
}
span#tipo_file {
  line-height: 1.1;
}