@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/avenir');
@font-face {
    font-family: Avenir;
    src: url("/assets/fonts/AvenirMedium.ttf") format("ttf")
  }

* {
    box-sizing: border-box;
}

body {
    background-color: #FAFAFA;
    font-family: 'Noto Serif', serif;
}

a, a:hover {
    text-decoration: none;
}

section.header {
    background-color: #fff;
    height: 113px;
    padding: 20px 0px;
}

h1 {
    font-family: "Avenir";
}

.init {
    padding: 100px 0px;
    }

    p.text {
        color: #474747;
    }


    button {
        background-color: #fff0;
        margin: 0;
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
        border: 0px solid #fff0;
    }

    button:disable {
        background-color: #fff;
        margin: 0;
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
        border: 0px solid #fff0;
    }
.card {
    cursor: pointer;
}
spam.resposta {
    font-size: 22px;
    color: #545454;
}
#ult {
  font-size: 22px;
    color: #545454;
}
.form-control {
    text-indent: 10px;
    margin: 10px 0px!important;
    display: block;
    width: 100%;
    height: 60px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff0;
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 40px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-primary {
    width: 100%;
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #C49A64;
    --bs-btn-border-color: #ffffff;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #ffffff;
    --bs-btn-hover-border-color: #ffffff;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #ffffff;
    --bs-btn-active-border-color: #ffffff;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #ffffff;
    --bs-btn-disabled-border-color: #ffffff;
    border-radius: 25px;
    height: 50px;
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #C49A64;
    border-color: #fff;
    color: #fff;
    height: 50px;
    border-radius: 25px;
}

input::placeholder {
    font-weight: 500;
    font-size: 20px;
    opacity: 0.5;
    color: #B1B1B1!important;
}

.form-inline .form-control {
    height: 43px;
    display: inline-block;
    width: auto;
    vertical-align: middle;
}

.form-control:focus {
    color: #000;
    background-color: #fff0;
    border-color: #000;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%);
}

  .centralize {
    display: flex;
    justify-content-center: center;
    align-items: center;
  }

  div#nomelocal {
    font-size: 22px;
    font-weight: 500;
    color: #353535;
    font-family: 'Avenir', sans-serif;
}

.btn-inicio:hover {
    opacity: 0.8;
    transition: all 0.5s ease-out;
}

.mouse:hover {
    opacity: 0.8;
    transition: all 0.5s ease-out;
}


label.text-dark.lbl-form {
  line-height: 30px;
}
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	animation: spinz 1.35s linear infinite;
	width: 100%;
	height: 100%;
	/* background-color: #ffffff; */
	background-color: #F6FBFD;       /* Change the background color here */
	z-index: 100;
  }
  
.loader {
	border: 16px solid #efeee8;
	border-top: 16px solid #C8A06E;  /* Change the preloader color here */
	border-radius: 50%;
	width: 120px;
	height: 120px;
	animation: spin 1.35s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -60px;
	margin-left: -60px;
  }

  @keyframes spin {
	0% {
	  transform: rotate(0deg);
	  opacity:1;
	}
	50% {
	  transform: rotate(360deg);
	  opacity:1;
	}
	75% {
	  opacity:1;
	  transform: rotate(180deg);
	}
	100% {
	  transform: rotate(0deg);
	  opacity:0;
	}
  }
  
  @keyframes spinz {
	0% {
	  opacity:1;
	}
	50% {
	  opacity:1;
	}
	75% {
	  opacity:1;
	}
	100% {
	  opacity:0;
	}
  }