body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nanum Gothic', sans-serif;
    background: #ffe8e8;
    
}

html{
    scroll-behavior: smooth;
}

.container{
    width: 100%;
    background: #f5d7e2;
}

.nav{
    
    display: flex;
    height: fit-content;
    justify-content: space-between;
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
    
}

.nav > section {
    text-align: center;    
    margin: 0;
    font-family: 'Lobster', cursive;
    
}

nav > section > h2 {
    color: #cf698d;
}

.ul-nav {
    
    list-style: none;
    display: flex;
    align-items: center;
    margin-left: 2em;
    padding: 0;

}

.ul-nav > li >a {
    text-decoration: none;
    margin-left: 2em;
    font-size: 1.3rem;
    padding: 5px 20px 5px 20px;
    cursor: pointer;
    border-radius: 10px;
    transition: 250ms ease-in;
    color: black;
}

.ul-nav > li > a:hover{
  
    background: #cf698d;   
    color: white;
    transform: translateY(-1);
    
}

@media (max-width: 1080px){
    .nav{
        flex-direction: column;
      
    }
    .ul-nav{
        flex-direction: column;
        margin: 0;
    }
    .ul-nav > li{
        padding-bottom: 20px;
    }
    .ul-nav > li >a{
        font-size: 1.5rem;
        margin: 0;
    }
}

.container-conteudo{
    margin-top: 4.5rem;
    
}

.article-home{
    
    padding-top: 2.5rem;
    display: flex;
    justify-content: center;
    height: fit-content;
    max-width: 1080px;
    margin: 0 auto;   

}

.card{
    margin-top: 70px;
    position: relative;
    width: 700px;
    height: 350px;
 
    border-radius: 20px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    transition: .5s;
}

.card .circle{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.card .circle::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d83133;
    clip-path: circle(120px at center);
    transition: .5s;
}

.card:hover .circle:before{
    background: #0065c3;
    clip-path: circle(400px at center);
}

.card img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 450px;
    pointer-events: none;
    transition: .5s;
}

.card:hover img{
    left: 72%;
    height: 650px;
}


.card .content{
    position: relative;
    width: 46%;
    left: 20%;
    padding: 20px 20px 20px 30px;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    
}

.card:hover .content{
    left: 0;
    opacity: 1;
    visibility: visible;
}

.card .content h2{
    color: white;
    text-transform: uppercase;
    font-size: 2em;
    line-height: 1em;
    margin-bottom: 5px;
}

.card .content p {
    color: white;
}

.card .content a {
    position: relative;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    background: white;
    color: black;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
}

.article-home > p {
    width: 35%;
    margin-left: 5rem;
    margin-right: 5rem;
}

.article-contato{
    max-width: 1080px;
    margin: 0 auto;
    margin-top: 80px;
    height: fit-content;
    margin: 0 auto;
}

.container-contato{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 20px;
    padding-top: 50px;
}

.card-contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 18px;
    max-width: 100%;
    height: 350px;
    background-color: rgba(194, 128, 162, 0.85);    
    margin: 20px;
    border-radius: 10px;
    height: 380px;
    position: relative;
    transition: 350ms ease;
}

.card-contato:hover{
    transform: translateY(-2px);
    box-shadow: 10px 10px 5px #aaaaaa;
}

.card-contato > p {
    font-weight: 600;
    font-size: 1.15rem;
    color: white;
    text-align: center;
}

.card-contato > img{
    max-width: 50%;

}

.card-contato > a {
    padding: 9px 40px 9px 40px;
    position: absolute;
    bottom: 10%;
    background: white;
    border-radius: 10px;
    transition: transform 250ms;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 10px;
    color: black;
}

.card-contato > a:hover{
    transform: translateY(-2px);
    box-shadow: 3px 3px 10px black;
    background: #cf698d;
    color: white;
    transition: 250ms;
}

@media(max-width:1080px){
    .card-contato > img{
       max-width: 35%;
    }
}

.footer{
    width: 100%;
    height: fit-content;
    background: #f5d7e2;
    margin-top: 50px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

@media(max-width: 1080px){
    .footer-images{
        max-width: 90%;
    }
}

.article-sobre{
    max-width: 1080px;
    margin: 0 auto;
    height: 380px;
    background: rgba(194, 128, 162, 0.85);
    margin-top: 100px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    
}

.imagem-sobre{
   
    max-width: fit-content;
}

.imagem-sobre > img{
    max-width: 180px;
    margin-left: 60px;
    margin-right: 60px;
    transition: 350ms ease;
}

.imagem-sobre > img:hover{
    transform: scale(1.12);
}

.sobre-texto{

    height: 90%;
    padding: 10px;   
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.items-sobre{
    font-size: 1.5rem;
    padding-left: 60px;
    background: #f5d7e2;
    height: 220px;
    width: 90%;
    border-radius: 6px;
    display: flex;
    flex-direction: column;    
    justify-content: center;
}

.items-sobre > li{
    padding-top: 10px;
    transition: 350ms ease;
    cursor: pointer;
    font-weight: 700;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    height: 40px;
    max-width: 95%;
    padding-left: 8px;
}

.items-sobre > li:hover{
    transform: scale(1.02);
    background: rgba(194, 128, 162, 0.85);
    color: white;
}

@media(max-width:1080px){
    .article-sobre{
        flex-direction: column;
        height: auto;
    }
    .sobre-texto {
        height: fit-content;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .items-sobre{
        padding-top: 15px;
        padding-bottom: 22px;
    }
    .items-sobre > li{
        height: fit-content;

    }
}

.produtos{
    max-width: 1080px;
    height: 300px;  
    margin: 0 auto;
    
    margin-top: 115px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-produtos{
    background: white;
    border-radius: 6px;
    width: 70%;
    height: fit-content;
    margin: 0 auto;
    background: rgba(194, 128, 162, 0.85);
    font-weight: 700;
    color: white;
    padding: 15px;
}

.card-produtos > h3 {
    margin: 12px;
}

.card-produtos > h3 > a{
    padding: 5px;
}


.article-portfolio{
    
    max-width: 1080px;
    margin: 0 auto;
    height: fit-content; 
    margin-top: 150px;   

}

#load-more{
	
	width:fit-content;
    margin: 15px auto;
	padding: 10px 30px;
	border: 1px solid #334;
	font-size: 16px;
	background: #fff;
	cursor: pointer;
    transition: 350ms ease;
    border-radius: 6px;
    font-weight: 600;
}

#load-more:hover{
	background: #cf698d;
	border-color: #cf698d;
	color: #fff;
}



@media (max-width: 1080px){
    #load-more{ 
        font-size: 1.5rem;
        width: 300px;
        text-align: center;   
    }
}

@media (max-width: 1080px){
    .article-portfolio{ 
        padding: 0;       
    }
}

@media (max-width: 1080px){
    .card{
        width: auto;
        max-width: 550px;
        align-items: flex-start;
        margin: 10px;
    }
    .card:hover{
        height: 600px;
    }
    .card .content{
        width: 100%;
        left: 0;
        padding: 30px;
    }
    .card:hover img{
        top: 75%;
        left: 50%;
        height: 300px;
    }
}

@media (max-width: 420px){
    .card .content{
     
        padding: 20px;
    }
}

.text-portfolio{
    display: flex;
    justify-content: center;
    background: rgba(207, 105, 141, 0.8);
    border-radius: 10px;
    color: #fff;
    width: 100%;
    min-width: 450px;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-bottom: 50px;
}

.text-contato{
    display: flex;
    justify-content: center;
    background: rgba(207, 105, 141, 0.8);
    border-radius: 10px;
    color: #fff;
    width: 100%;
    margin: 10px;
    margin: 0 auto;
    margin-top: 55px;
    margin-bottom: 20px;
}

.wrapper{
    max-width: 1100px;
	
}
.wrapper .gallery{
	display: flex;
	flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.gallery span{
	display: flex;
	width: 100%;
	overflow: hidden;
}
.gallery .image{
	width: calc(97% /3);
	padding: 5px;
    display: none;
}

.gallery .image img{
	width: 100%;
	vertical-align: middle;
	transition: all 0.3s ease;
	cursor: pointer;
    border-radius: 5px;
    
}

.gallery .image:nth-child(1),
.gallery .image:nth-child(2),
.gallery .image:nth-child(3){
	display: inline-block;
}

.img-box .slide{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 30px;
	cursor: pointer;
	color: #fff;
	width: 60px;
	height: 50px;
	line-height: 50px;
	text-align: center;
}

.img-box .slide.prev{
	left: 0;

}

.img-box .slide.next{
	right: 0;
	
}

.img-box .slide.prev > span{
	background: rgba(0,0,0,0.0);
	border-radius: 8px;
	padding: 5px;
	transition: 0.35s ease;

}

.img-box .slide.next > span{
	background: rgba(0,0,0,0.0);
	border-radius: 8px;
	padding: 5px;
	transition: 0.35s ease;
}

.img-box .slide.next > span:hover{
	background: rgba(0,0,0,0.5);
}

.img-box .slide.prev > span:hover{
	background: rgba(0,0,0,0.5);
}

.gallery .image:hover img{
	transform: scale(1.1);
}

.preview-box{
	z-index: 999;
	position: fixed;
	max-width: 700px;
    max-height: 100vh;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	background: #fff;
	padding: 0 5px 5px 5px;
	opacity: 0;
	pointer-events: none;
	border-radius: 3px;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.2)
}

.preview-box.show{
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
	transition: all 0.3s ease;
}

.preview-box .details{
	display: flex;
	align-items: center;
	padding: 12px 15px 12px 10px;
	justify-content: space-between;
}

.preview-box .details .icon{
	color: #007bff;
	cursor: pointer;
	font-size: 20px;
	transition: 0.35s ease;
	border-radius: 6px;
}

.preview-box .details .icon:hover{
	color: white;
	background: rgba(0,0,0,0.4);
}

.preview-box .img-box{
	display: flex;
	width: 100%;
}

.preview-box .img-box img{
	width: 100%;
	border-radius: 0 0 3px 3px;
}

.details .title{
	display: flex;
	font-size: 18px;
	font-weight: 400;
}

.details .title p.current-img{
	font-weight: 600;
}

.details .title p {
	margin: 0 5px;
}

@media(max-width: 1080px){
	.gallery .image{
		width: calc(95% /2);
	}
    body{
        font-size: 1.5rem;
    }
}

@media(max-width: 600px){
	.gallery .image{
		padding: 4px;
		width: 100%;
	}
}

.shadow{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: none;
	background: rgba(0,0,0,0.4);
}