@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;500;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap");

* {
	margin: 0;
	padding: 0;
	outline: none;
	box-sizing: border-box
}

ul {
	list-style: none
}

a,
button {
	cursor: pointer
}

.col-50 {
	width: 48%
}

.full-width {
	width: 100%
}

.full-height {
	height: 100%
}

.flex {
	justify-content: space-between;
	display: flex
}

.center {
	justify-content: center;
}

.align-center {
	align-items: center;
}

::-webkit-scrollbar {
	width: 20px
}

::-webkit-scrollbar-track {
	background: #d85c00;
	cursor: pointer
}

::-webkit-scrollbar-thumb {
	background: #3e1a00
}

.border {
	border: 2px solid #0f0
}

.promo-img {
	box-shadow: 15px 15px 0 #d85e0036;
	margin: 30px 0;
	border-radius: 10px;
	width: 70%;
	max-width: 1100px;
	min-width: 300px;
}

.center-container {
	width: 100%;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	height: calc(100% - 200px)
}

.logo {
	margin-top: 0
}

.btn-open-menu {
	border: none;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 15px;
	left: 15px;
	background: transparent;
	z-index: 2;
	padding: 10px;
}

.btn-open-menu span {
	width: 100%;
	height: 3px;
	border-radius: 100px;
	background: #d85c00;
	position: relative;
	margin-top: 3px;
	float: left
}

#menu {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	background: rgba(0, 0, 0, .4);
	border-top: 5px solid #3e1a00;
	border-bottom: 5px solid #3e1a00;
	bottom: 130px
}


#menu div {
	width: 100%;
	text-align: center;
	height: 100px;
	float: left
}

#menu div button {
	border: none;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 20px;
	right: 10px;
	background: transparent;
	display: flex;
	justify-content: space-between;
	align-content: space-between;
	flex-direction: column
}

#menu div button span {
	width: 100%;
	height: 3px;
	border-radius: 100px;
	background: #d85c00;
	position: absolute
}

#menu div button span:first-child {
	transform: rotate(45deg)
}

#menu div button span:last-child {
	transform: rotate(-45deg)
}

.logo-menu {
	width: 80%;
	margin: 120px 10% 30px;
	float: left
}

#menu div ul {
	list-style: none;
	display: inline-flex;
	justify-content: space-between
}


#menu div ul li {
	margin: 0 20px;
	padding: 8px 0;
	position: relative
}

#menu div ul li a {
	transition: all .2s ease;
	font-family: Barlow Semi Condensed, sans-serif;
	color: #d85c00;
	cursor: pointer;
	font-size: 20px;
	text-decoration: none;
}

#menu div ul li a:hover {
	text-shadow: 0 0 2px #fdffbb;
	color: #fdffbb
}

footer {
	position: relative;
	bottom: 0;
	height: 100px;
	width: 100%
}

footer .endereco {
	height: 80px;
	line-height: 80px;
	padding-left: 40px;
	float: left
}

footer .endereco .icon-tel {
	width: 15px;
	margin-right: 5px
}

footer .endereco .icon-tel path {
	fill: #d85c00
}

footer .endereco a,
footer .endereco span {
	font-family: Barlow Semi Condensed, sans-serif;
	color: #d85c00;
	font-size: 22px;
	text-decoration: none
}

footer .redes {
	height: 80px;
	line-height: 80px;
	padding-right: 40px;
	float: right
}

footer .redes ul {
	display: inline-block;
	list-style: none;
	padding-top: 20px
}

footer .redes ul li {
	width: 40px;
	height: 40px;
	float: left;
	margin-left: 10px;
	cursor: pointer;
	border-radius: 500px;
	transition: all .2s ease
}

footer .redes ul li:hover {
	box-shadow: 0 0 3px #d85c00;
	transform: scale(1.05)
}

footer .redes ul li img,
footer .redes ul li svg {
	width: 100%;
	float: left
}

footer .redes ul li svg path {
	fill: #d85c00
}

.modal-mask {
	display: none;
	position: absolute;
	width: 100%;
	bottom: 0;
	right: 0;
	background: rgba(0, 0, 0, .7);
	justify-content: center;
	align-items: center;
	z-index: 3
}

.opened {
	display: block!important;
}

.closed {
	display: none;
}

.modal-mask .modal-container-bg {
	width: 90vw;
	padding: 15px;
	background: #d85c00;
	border-radius: 10px;
	box-shadow: 0 0 15px #d85c00
}

.modal-mask .modal-container-bg .modal-container {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background: #fdffbb;
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
	padding: 20px;
	position: relative
}

.btn-close-menu {
	border: none;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 25px;
	right: 20px;
	background: transparent;
	display: flex;
	justify-content: space-between;
	align-content: space-between;
	flex-direction: column
}

.btn-close-menu span {
	width: 100%;
	height: 5px;
	border-radius: 100px;
	background: #d85c00;
	position: absolute
}

.btn-close-menu span:first-child {
	transform: rotate(45deg)
}

.btn-close-menu span:last-child {
	transform: rotate(-45deg)
}

.container-content {
	display: block;
	margin: 250px 5% 0;
	position: relative;
	width: 90%;
}

.flex {
	display: flex;
}

.just-spc-btw {
	justify-content: space-between;
}

.portrait {
	width: 40%;
}

.portrait img {
	width: 95%;
}

.text-container {
	width: 58%;
	margin-top: 10px;
	text-align: left;
	padding-right: 5%;
	overflow: auto;
	overflow-x: hidden;
}

h1 {
	font-family: Barlow Semi Condensed, sans-serif;
	font-size: 2.8vw;
	color: #d85c00;
	text-shadow: 0 0 3px #d85c00;
	width: 100%;
	margin-bottom: 30px
}

p {
	font-size: 1.1vw;
	color: #fdffbb;
	text-shadow: 2px 2px 2px #3e1a00;
	width: 100%;
	margin-bottom: 20px;
	font-family: Roboto Slab, serif
}

.sobre,
.portfolio,
.mapa,
.guests,
.promocoes,
.micropigmentacao,
.contato {
	display: none;
}

.modal-opened {
	display: flex;
}

.logo img {
	width: 70%;
	min-width: 300px
}

.maps {
	float: left;
	width: 100%;
	height: 500px;
	position: relative;
	border-top: 5px solid #d85c00;
	border-bottom: 5px solid #d85c00;
	margin: 0 0 30px 0;
}

.endereco-mapa {
	text-align: center;
	margin-bottom: 30px;
}

.contato-content span,
.endereco-mapa span {
	font-family: Barlow Semi Condensed, sans-serif;
	font-size: 35px;
	color: #d85c00;
	text-shadow: 0 0 3px #d85c00;
	width: 100%;
}

.contato-content .tel,
.endereco-mapa .tel {
	font-family: Barlow Semi Condensed, sans-serif;
	font-size: 45px;
	color: #fdffbb;
	text-shadow: 0 0 3px #d85c00;
	width: 100%;
	text-decoration: none;
	margin-top: 10px;
}

.contato-content .tel {
	font-size: 60px;
	float: left;
	width: 100%;
	margin-bottom: 15px;
}


.contato-content .redes {
	height: 120px;
	line-height: 120px;
	float: left;
	margin-top: 30px;
	width: 100%;
}

.contato-content .redes ul {
	display: inline-block;
	list-style: none;
	padding-top: 20px
}

.contato-content .redes ul li {
	width: 60px;
	height: 60px;
	float: left;
	margin-left: 15px;
	cursor: pointer;
	border-radius: 500px;
	transition: all .2s ease
}

.contato-content .redes ul li:hover {
	box-shadow: 0 0 3px #d85c00;
	transform: scale(1.05)
}

.contato-content .redes ul li img,
.contato-content .redes ul li svg {
	width: 100%;
	float: left
}

.contato-content .redes ul li svg path {
	fill: #d85c00
}

.endereco-mapa .icon-tel {
	width: 30px;
	margin-right: 15px
}
.contato-content .icon-tel {
	width: 40px;
	margin-right: 10px
}

.contato-content .icon-tel path,
.endereco-mapa .icon-tel path {
	fill: #fdffbb
}

.thumb {
	width: 80px;
	margin: 5px 5px 15px 5px;
	float: left;
	border-radius: 3px;
	transition: all .2s ease;
	cursor: pointer;
	box-shadow: 0 0 5px #210e00;
}

.thumb:hover {
	box-shadow: 0 0 5px #d85c00;
}

.thumbs-container {
	position: relative;
    float: left;
    overflow-x: scroll;
    width: 100%;
    display: flex;
    justify-content: flex-start;
	 margin-top: 80px;
}


.text-micropigmentacao {
	width: 50%;
	float: left;
	margin-top: -120px;
}

.display-img-micropigmentacao {
	width: 48%;
	float: right;
	position: relative;
}

.display-img {
	width: 60%;
	margin: 5% 20% 15px;
	border-radius: 3px;
}

.moldura {
	position: absolute;
	z-index: 999;
	width: 80%;
	margin: -5% 10% 0;
	box-shadow: 0 0 25px rgba(255, 68, 0, 0.329);
}

.fix-footer-home {
	position: fixed!important;
	bottom: 0;
}

/* Internas */
.internal-header { 
	width: 100%;
	display: flex;
	justify-content: space-between;
	height: 200px;
	position: absolute;
	top: 0;
	padding: 10px 3%;
	z-index: 99;
}

.internal-menu ul {
	list-style: none;
	margin-top: 65px;
}

.internal-menu ul li {
	display: inline-block;
	margin: 0 10px;
	position: relative
}

.internal-menu ul li a {
	font-family: Barlow Semi Condensed, sans-serif;
	color: #d85c00;
	text-shadow: 0 0 2px #d85c00;
	cursor: pointer;
	font-size: 17px;
	text-decoration: none;
	transition: all .2s ease;
	border-bottom: 2px solid transparent;
}

.menu-active {
	border-bottom: 2px solid #fdffbb!important;
	text-shadow: 0 0 2px #fdffbb!important;
	color: #fdffbb!important;
}

.internal-menu ul li a:hover {
	border-bottom: 2px solid #fdffbb;
	text-shadow: 0 0 2px #fdffbb;
	color: #fdffbb;
}


.logo-internal {
	width: 400px;
}

.logo-internal img {
	width: 100%;
}

.menu-mobile-internal {
	display: none;
}


/* Internas */

@media screen and (max-width:1024px) {
	.contato-content .tel {
		font-size: 45px;
	}

	.contato-content span, 
	.endereco-mapa span {
		font-size: 30px;
	}

	.text-micropigmentacao {
		width: 92%;
		float: left;
		margin: 15px 4% 30px;
	}

	.text-micropigmentacao h1 {
		font-size: 30px;
	}

	.text-micropigmentacao p {
		font-size: 15px;
	}

	.display-img-micropigmentacao {
		width: 100%;
		margin: 20px 0 30px;
	}

	.container-content {
		margin-top: 320px;
	}

    .mobile {
		display: block!important
    }

	 .internal-menu,
    .desktop {
		display: none!important
	}
    
    .col-50 {
		width: 100%
    }
    
    .flex {
		flex-wrap: wrap
    }
    
    body {
		background: url('./img/bg.png') no-repeat fixed;
		background-size: cover
    }
    
	 #menu {
		display: none;
	}
    
    .logo {
		margin-top: 40px
    }

    .logo img {
		width: 95%;
		min-width: unset
    }
    
	.menu-mobile-internal {
		position: fixed;
		padding-bottom: 30px;
		bottom: 0;
		top: 0;
		right: 0;
		left: 0;
		border: 10px solid #210e00;
		background: linear-gradient(142deg, #210e00, #3e1a00 48%, #210e00);
		z-index: 2
	}
	
	.menu-mobile-internal,
	.menu-mobile-internal div {
		height: 100%
	}

	.menu-mobile-internal ul {
		width: 100%;
		float: left;
		list-style: none;
	}

	.menu-mobile-internal ul li {
		width: 100%;
		padding: 10px 0;
		text-align: center;
	}
	

	.menu-mobile-internal ul li a {
		font-family: Barlow Semi Condensed, sans-serif;
		font-size: 20px;
		color: #d85c00;
		text-shadow: 0 0 2px #d85c00;
		text-decoration: none;
	}
	

    footer {
		height: unset
    }
    
	footer .endereco {
		padding-left: 15px;
		padding-right: 15px
    }
    
	footer .endereco,
	.contato-content .redes,
	footer .redes {
		line-height: normal;
		text-align: center;
		height: unset
    }
    
	.contato-content .redes {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		margin-top: 10px;
		margin-bottom: 30px
	}

	footer .redes {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		margin-top: 10px;
		margin-bottom: 30px
    }
    
    .portrait {
		width: 100%;
	}
	.portrait img {
		height: unset;
		width: 100%;
		margin-top: 0
    }
    
	.text-container {
		width: 92%;
		margin: 10px 4%;
		float: left;
	}

	.text-container h1 {
		font-size: 25px!important
	}

	.text-container p {
		font-size: 15px!important
	}

	.internal-header {
		float: left;
		width: 100%;
		z-index: 99;
		margin-top: 60px;
	}
}

@media screen and (min-width:1025px) {
    body {
		background: url('./img/bg.png') no-repeat top;
		background-size: cover;
    }
    
    .btn-open-menu {
		display: none
    }

    
	#menu div ul {
		margin-top: 27px
    }
    
    .desktop {
		display: block!important
    }
    
    .mobile {
		display: none!important
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.contato-content .redes {
		border: 1px solid red;
	}
	
	#menu div ul li {
		font-size: 19px
	}

	#menu div ul li:hover {
		border-top: none;
		border-bottom: none
	}
	
	#menu {
		bottom: 100px;
	}
    
    .logo img {
		width: 47%;
		min-width: 280px;
		max-width: 600px
    }
    
    .text-container {
		width: 70%
    }
    
    .portrait {
		width: 35%
	}

	footer .endereco {
		height: 100px;
		line-height: 100px;
	}

	footer .redes {
		height: unset;
		padding-top: 10px;
		line-height: unset;
	}
}


@media screen and (min-width:1367px) {
	.logo img {
		max-width: 1000px
	}
}
