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;
}

@import url("https://fonts.googleapis.com/css?family=Arvo");
/* body,
html {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  background: #f5f4f4;
  font-size: 13px;
  font-family: "Arvo", monospace;
}
@supports (display: grid) {
  body,
html {
    display: block;
  }
} */

.message {
  border: 1px solid #d2d0d0;
  padding: 2em;
  font-size: 1.7vw;
  box-shadow: -2px 2px 10px 0px rgba(68, 68, 68, 0.4);
}
@supports (display: grid) {
  .message {
    display: none;
  }
}

.section {
  display: none;
  padding-top: 4rem !important;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .section {
    padding-top: 6rem !important;
    padding: 4rem;
  }
}
@supports (display: grid) {
  .section {
    display: block;
  }
}

h1 {
  font-size: 2rem;
  margin: 0 0 1.5em;
}

.grid {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 150px;
  grid-auto-flow: row dense;
}

.item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  background: #0c9a9a;
  color: #fff;
  grid-column-start: auto;
  grid-row-start: auto;
  color: #fff;
  background: url("https://images.unsplash.com/photo-1470124182917-cc6e71b22ecc?dpr=2&auto=format&fit=crop&w=1500&h=1000&q=80&cs=tinysrgb&crop=");
  background-size: cover;
  background-position: center;
  box-shadow: -2px 2px 10px 0px rgba(68, 68, 68, 0.4);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  counter-increment: item-counter;
}
/* .item:nth-of-type(3n) {
  background-image: url("https://images.unsplash.com/photo-1422255198496-21531f12a6e8?dpr=2&auto=format&fit=crop&w=1500&h=996&q=80&cs=tinysrgb&crop=");
}
.item:nth-of-type(4n) {
  background-image: url("https://images.unsplash.com/photo-1490914327627-9fe8d52f4d90?dpr=2&auto=format&fit=crop&w=1500&h=2250&q=80&cs=tinysrgb&crop=");
}
.item:nth-of-type(5n) {
  background-image: url("https://images.unsplash.com/photo-1476097297040-79e9e1603142?dpr=2&auto=format&fit=crop&w=1500&h=1000&q=80&cs=tinysrgb&crop=");
}
.item:nth-of-type(6n) {
  background-image: url("https://images.unsplash.com/photo-1464652149449-f3b8538144aa?dpr=2&auto=format&fit=crop&w=1500&h=1000&q=80&cs=tinysrgb&crop=");
} */

.photo1 { background-image: url(../images/5220b738-53ae-468c-915b-c2d8432740d5.jfif);}
.photo2 { background-image: url(../images/56303bee-cd4f-4438-8dd1-e45095e324d3.jfif);}
.photo3 { background-image: url(../images/91f0310d-2b83-4952-8cc1-83603d3af968.jfif);}
.photo4 { background-image: url(../images/9378c968-fbb6-4057-b5b5-315b6cafea6f.jfif);}
.photo5 { background-image: url(../images/a2c229af-4203-497f-842c-a626a95c6b0a.jfif);}
.photo6 { background-image: url(../images/e3c895cc-3ca9-46db-a508-61ccdae2e113.jfif);}
.photo7 { background-image: url(../images/ecbb8cef-3918-45ad-b48b-7caed87541bc.jfif);}

.item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.3;
  transition: opacity 0.3s ease-in-out;
}
.item:hover {
  transform: scale(1.05);
}
.item:hover:after {
  opacity: 0;
}
.item--medium {
  grid-row-end: span 2;
}
.item--large {
  grid-row-end: span 3;
}
.item--full {
  grid-column-end: auto;
}
@media screen and (min-width: 768px) {
  .item--full {
    grid-column: 1/-1;
    grid-row-end: span 2;
  }
}
.item__details {
  position: relative;
  z-index: 1;
  padding: 15px;
  color: #444;
  background: #fff;
  text-transform: lowercase;
  letter-spacing: 1px;
  color: #828282;
}
.item__details:before {
  content: counter(item-counter);
  font-weight: bold;
  font-size: 1.1rem;
  padding-right: 0.5em;
  color: #444;
}
