@import url("https://fonts.googleapis.com/css?family=Lora:400,400i,700");
 body {
	 background-color: rgb(255, 214, 197);
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 min-height: 100vh;
	 margin: 0;
	 font-family: Lora, sans-serif;
}


 p {
	 margin: 0;
}
 #burger-toggle {
	 position: absolute;
	 appearance: none;
	 opacity: 0;
}
 #burger-toggle:checked ~ .menu {
	 opacity: 1;
	 visibility: visible;
}
 #burger-toggle:checked ~ .menu .menu-nav-link span div, #burger-toggle:checked ~ .menu img, #burger-toggle:checked ~ .menu .title p {
	 transform: translateY(0);
	 transition: 1.2s 0.1s cubic-bezier(0.35, 0, 0.07, 1);
}
 #burger-toggle:checked ~ .menu .image-link:nth-child(1) img {
	 transition-delay: 0.18s;
}
 #burger-toggle:checked ~ .menu .image-link:nth-child(2) img {
	 transition-delay: 0.26s;
}
 #burger-toggle:checked ~ .menu .image-link:nth-child(3) img {
	 transition-delay: 0.34s;
}
 #burger-toggle:checked ~ .menu .image-link:nth-child(4) img {
	 transition-delay: 0.42s;
}
 #burger-toggle:checked ~ .burger-menu .line::after {
	 transform: translateX(0);
}
 #burger-toggle:checked ~ .burger-menu .line:nth-child(1) {
	 transform: translateY(calc(var(--burger-menu-radius) / 5)) rotate(45deg);
}
 #burger-toggle:checked ~ .burger-menu .line:nth-child(2) {
	 transform: scaleX(0);
}
 #burger-toggle:checked ~ .burger-menu .line:nth-child(3) {
	 transform: translateY(calc(var(--burger-menu-radius) / -5)) rotate(-45deg);
}
 .burger-menu {
	 --burger-menu-radius: 4em;
	 position: fixed;
	 top: 5vh;
	 left: 5vw;
	 z-index: 100;
	 display: block;
	 width: var(--burger-menu-radius);
	 height: var(--burger-menu-radius);
	 outline: none;
	 cursor: pointer;
}
 .burger-menu .line {
	 position: absolute;
	 left: 25%;
	 width: 50%;
	 height: 3px;
	 background: rgba(43, 61, 79, 0.3);
	 border-radius: 10px;
	 overflow: hidden;
	 transition: 0.5s;
}
 .burger-menu .line:nth-child(1) {
	 top: 30%;
}
 .burger-menu .line:nth-child(2) {
	 top: 50%;
}
 .burger-menu .line:nth-child(3) {
	 top: 70%;
}
 .burger-menu .line::after {
	 position: absolute;
	 content: "";
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background: var(--primary-color-darker);
	 transform: translateX(-100%);
	 transition: 0.25s;
}
 .burger-menu .line:nth-child(2)::after {
	 transition-delay: 0.1s;
}
 .burger-menu .line:nth-child(3)::after {
	 transition-delay: 0.2s;
}
 .burger-menu:hover .line::after {
	 transform: translateX(0);
}
 .menu {
	 position: fixed;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 background: #1a1e23;
	 opacity: 0;
	 overflow-x: hidden;
	 visibility: hidden;
	 transition: 0.3s;
}
 @media screen and (max-width: 750px) {
	 .menu {
		 display: block;
	}
}
 .menu-nav {
	 display: flex;
	 flex-wrap: wrap;
	 margin: 0;
	 padding: 0;
	 text-align: center;
	 list-style-type: none;
}
 @media screen and (max-width: 750px) {
	 .menu-nav {
		 flex-direction: column;
	}
}
 .menu-nav-item {
	 flex: 1;
}
 .menu-nav-link {
	 position: relative;
	 display: inline-flex;
	 font-size: 2rem;
	 color: white;
	 text-decoration: none;
}
 .menu-nav-link span {
	 overflow: hidden;
}
 .menu-nav-link span div {
	 transform: translateY(102%);
}
 .menu-nav-link::after {
	 position: absolute;
	 content: "";
	 top: 100%;
	 left: 0;
	 width: 100%;
	 height: 3px;
	 background: var(--primary-color);
	 transform: scaleX(0);
	 transform-origin: right;
	 transition: transform 0.5s;
}
 .menu-nav-link:hover::after {
	 transform: scaleX(1);
	 transform-origin: left;
}
 .menu .gallery {
	 margin-top: 60px;
	 text-align: center;
}
 .menu .title {
	 font-size: 24px;
	 color: white;
	 overflow: hidden;
}
 .menu .title p {
	 font-size: 12px;
	 letter-spacing: 2px;
	 text-transform: uppercase;
	 transform: translateY(102%);
}
 .menu .images {
	 margin-top: 36px;
	 display: flex;
	 flex-wrap: wrap;
}
 @media screen and (max-width: 750px) {
	 .menu .images {
		 justify-content: center;
	}
}
 .menu .images .image-link {
	 width: 15vw;
	 margin: 0 12px;
	 overflow: hidden;
}
 @media screen and (max-width: 750px) {
	 .menu .images .image-link {
		 width: 40vw;
		 margin: 0 12px 12px 0;
	}
}
 .menu .images .image-link .image {
	 position: relative;
	 transition: 0.6s;
}
 .menu .images .image-link .image::before {
	 position: absolute;
	 content: attr(data-label);
	 top: 0;
	 left: 0;
	 z-index: 1;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 width: 100%;
	 height: 100%;
	 color: white;
	 background: rgba(0, 0, 0, 0.6);
	 opacity: 0;
	 transition: 0.4s;
}
 .menu .images .image-link:hover .image {
	 transform: scale(1.2);
}
 .menu .images .image-link:hover .image::before {
	 opacity: 1;
}
 .menu .images img {
	 height: 250px;
	 transform: translateY(102%);
}

.descricao{
	margin-top: 6%;
	font-size: 20px;
	text-align: center;
	margin: 0.3em auto;
	width: 43%;
	height: 40%;
	display:block;
	border-radius:.25em;
	box-shadow:0 0 .25em rgba(0,0,0,.25);
	box-sizing:border-box;
	padding: 3px;
	transition: all 0.5s;
	cursor: pointer;}

	
.descricao:hover{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);}
	
	 /***********************************************Botões************************************************/

	 .box-total {
        margin-top: 60px;
		justify-content: center;
		
	  }
	  
	  .box-button1 {
		margin-top: 156px;
		margin-left: 1%;
		width: 25%;
		height: 43vh;
	  }
	  
	  .bteesquerdo {
		margin-left: -300px;
		height: 30%;
		display: flex;
	  }
	  
	  .bte {
		cursor: pointer;
		font-size: 14px;
		line-height: 1;
		border-radius: 500px;
		transition-property: background-color, border-color, color, box-shadow, filter;
		transition-duration: 0.3s;
		border: 1px solid transparent;
		letter-spacing: 2px;
		min-width: 160px;
		text-transform: uppercase;
		white-space: normal;
		font-weight: 700;
		text-align: center;
		padding: 16px 14px 18px;
		color: #616467;
		box-shadow: inset 0 0 0 2px #616467;
		background-color: transparent;
		height: 48px;
	  }
	  
	  .bte:hover {
		color: #fff;
		background-color: #f56653;
	  }
	  
	  .box-button2 {
		margin-top: -375px;
		width: 25%;
		height: 43vh;
		margin-left: 70%;
	  }
	  .btdireito {
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	  }
	  
	  .btd {
		cursor: pointer;
		font-size: 14px;
		line-height: 1;
		border-radius: 500px;
		transition-property: background-color, border-color, color, box-shadow, filter;
		transition-duration: 0.3s;
		border: 1px solid transparent;
		letter-spacing: 2px;
		min-width: 160px;
		text-transform: uppercase;
		white-space: normal;
		font-weight: 700;
		text-align: center;
		padding: 16px 14px 18px;
		color: #616467;
		box-shadow: inset 0 0 0 2px #616467;
		background-color: transparent;
		height: 48px;
	  }
	  
	  .btd:hover {
		color: #fff;
		background-color: #d1e706;
	  }
	
	  /********************************************Media Query Tablet**************************************************************/

@media screen and (min-width: 600px){

	/*caixa dos botões*/
	.box-total {
		
		height: 50px;
		margin-top: 90px;}
	
	  /*caixa botão esquerdo*/
	  .box-button1 {
		margin-top: -6%;
		margin-left: 2px;
		width: 15%;
		height: 25%;}
	
	  /*caixa botão direito*/
	  .box-button2 {
		margin-top: 5px;
		margin-left: 84%;
		width: 15%;
		height: 25%;}

}