html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
}

em {
	font-style: italic;
}

strong {
	font-weight: bold;
}

html,
body {
    --nav-height: 52px;
    scroll-behavior: smooth;
	margin:0;
	padding:0;
	height:100%;
}

/* .loading {
    transition: 2s;
}

.conteudo {
    transition: 2s;
} */

.Btn {
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: .4s;
    cursor: pointer;
    position: relative;
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
    overflow: hidden;
  }

  .Btn-face {
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: .4s;
    cursor: pointer;
    position: relative;
    background: #3356f0;
    background: -moz-linear-gradient(45deg, #3385f0 0%, #3c47e6 25%, #2a27dc 50%, #4223cc 75%, #1828bc 100%);
    background: -webkit-linear-gradient(45deg, #3385f0 0%,3c47e6 25%,#2a27dc 50%,#4223cc 75%,#1828bc 100%);
    background: linear-gradient(45deg, #3385f0 0%,#3c47e6 25%,#2a27dc 50%,#4223cc 75%,#1828bc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3385f0', endColorstr='#1828bc',GradientType=1 );
    overflow: hidden;
  }
  
  .svgIcon {
    transition-duration: .3s;
  }
  
  .svgIcon path {
    fill: white;
  }
  
  .text {
    position: absolute;
    color: rgb(255, 255, 255);
    width: 120px;
    font-weight: 600;
    opacity: 0;
    transition-duration: .4s;
  }
  
  .Btn:hover, .Btn-face:hover {
    width: 110px;
    transition-duration: .4s;
    border-radius: 30px;
  }
  
  .Btn:hover .text, .Btn-face:hover .text {
    opacity: 1;
    transition-duration: .4s;
  }
  
  .Btn:hover .svgIcon, .Btn-face:hover .svgIcon {
    opacity: 0;
    transition-duration: .3s;
  }

.navbar {
    display: flex;
    overflow: hidden;
    background-color: #362E26;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
    padding: 10px 0 10px 0;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    z-index: 10;
    transition: transform 0.2s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

.navbar a {
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: 300;
    border-radius: 10px;
    transition: 0.2s;
}
  
.navbar a:hover {
    background: #ddd;
    color: black;
    transition: 0.5s;

}

.nav--hidden {
    transform: translateY(calc(-1 * var(--nav-height)));
    box-shadow: none;
}

.form-container {
    display: flex; 
    flex-direction: column; 
    direction: ltr;
    width: 100%; 
    gap: 10px;
}

.form-container .input-form input, .form-container .input-form textarea{
    background-color: #51402F;
    color: white;
    outline: none;
    transition: 0.2s;
    border-radius: 10px;
    padding: 15px 0 15px 15px;
    font-size: 16px;
}

.form-container .input-form input:focus, .form-container .input-form textarea:focus{
    background-color: #775e45;
    transition: 0.5s;
}

.form-container .input-form input::-webkit-input-placeholder, .form-container .input-form textarea::-webkit-input-placeholder {
    color: #AFAFAF;
 }
 
 .form-container .input-form input:-moz-placeholder, .form-container .input-form textarea:-moz-placeholder { /* Firefox 18- */
    color: #AFAFAF;  
 }
 
 .form-container .input-form input::-moz-placeholder, .form-container .input-form textarea::-moz-placeholder {  /* Firefox 19+ */
    color: #AFAFAF;  
 }
 
 .form-container .input-form input:-ms-input-placeholder, .form-container .input-form textarea:-ms-input-placeholder {  
    color: #AFAFAF;  
 }

.form-container .input-form input{
    display: block;
    width: 100%;
    border: none;
}

.form-container .input-form textarea{
    display: flex;
    border: none;
    width: 100% !important;
    height: 150px;
    resize: none;
}

.botao-form {
    background-color: #7B6146;
    font-size: 16px;
    font-weight: 500;
    color: white;
    border: none;
    width: 200px;
    height: 50px;
    border-radius: 10px;
}