:root {
	--bg-color-primary: #ffffff;
	--tx-color-primary: #777;
	--tx-color-secondary: #ddd;
	--font-family-primary: 'Poppins', sans-serif;
	--font-size-primary: 16px;
	
	--bg-color-nav-mobile: #444;
	--tx-color-nav-mobile: #fff;
	--border-color-nav-mobile: #777;
	--bg-color-nav-mobile-hover: #999;
	
	--max-width: 1000px;
}

* {
	margin: 0;
	padding: 0;
	text-decoration: none;
	list-style: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.clear {
	clear: both;
}

.max {
	width: 100%;
	max-width: var(--max-width);
	margin: auto;
}

html {
	width: 100%;
	min-width: 320px;
	max-width: 1600px;
	margin: auto;
	height: 100vh;
	scroll-behavior: smooth;
}

body {
	min-width: 100%;
	min-height: 100vh;
	background-color: var(--bg-color-primary);
	color: #003366;
	font-family: var(--font-family-primary);
	font-size: var(--font-size-primary);
}

/************ HEADER **************************************************************************************/

header{
	display: block;
	width: 100%;
	height: 60px;
	border-bottom: 2px solid #FFB6C1;
	background-color: #fff;
}

.header-bar {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	z-index:9;
}
	
.header-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 75%;
	height: 60px;
}

header .desktop {
	display: none;
}

.header-logo img {
	width: 110px;
	margin-left: 25%;
}

#hamburger {
	position: relative;
	display: none;
}
	
label.hamburger {
	width: 25%;
	height: 30px;
	position: relative;
}

label.hamburger span {
	position: absolute;
	right: 20px;
	display: block;
	width: 100%;
	max-width: 32px;
	height: 2px;
	background-color: #FF69B4;
	transition: 0.25s ease-in-out;
}

label.hamburger span:nth-child(1) {
	top:10px;
}

label.hamburger span:nth-child(2) {
	top:18px;
}

label.hamburger span:nth-child(3) {
	top:26px;
}

#hamburger:checked ~ label.hamburger span:nth-child(1) {
	transform: rotate(45deg);
	top: 18px;
}

#hamburger:checked ~ label.hamburger span:nth-child(2) {
	opacity: 0;
}

#hamburger:checked ~ label.hamburger span:nth-child(3) {
	transform: rotate(-45deg);
	top: 18px;
}

#hamburger:checked ~ nav.main {
	left: 0px;
}

/************ NAV **************************************************************************************/

nav.main {
	width:80%;
	max-width: 200px;
	height: 100%;
	position: fixed;
	top: 0px; 
	left:-100%;
	overflow-y: auto;
	background-image: linear-gradient(#FF69B4, #FFB6C1);
	border-right: 1px solid #FFC0CB;
	box-shadow: 4px 0px 12px #999;
	z-index:99;
	transition: 0.5s ease-in-out;
}

nav.main ul li {
	display: block;
	border-bottom: 1px solid #FFC0CB;
}

nav.main ul li a {
	display: block;
	padding: 16px 12px 12px;
	color: #fff;
	font-size: 12px;
	letter-spacing: 1px;
}

nav.main ul li a:hover {
	background-color: #FF1493;
}

/************ MAIN **************************************************************************************/

main {
	width: 100%;
	height: auto;
	padding-bottom: 60px;
}

/************ CONTAINER **************************************************************************************/

.container {
	width: 100%;
	height: auto;
}

/************ BANNER **************************************************************************************/

.banners {
	width: 100%;
	height: auto;
	color: #fff;
	position: relative;
}

.banners .image {
	width: 100%;
	height: 800px;
	background-image: url('images/banner-mobile.jpg');
	background-repeat: no-repeat;
	background-size: 130%;
    background-position: bottom;
}

.banner-text {
	display: flex;
	flex-direction: column;
	height: auto;
	position: absolute;
	bottom: 0;
	padding: 24px;
	letter-spacing: 2px;
	background-color: rgba(0,0,0,.3);
}

.banner-text h1 {
	width: 100%;
	font-size: 2.2rem;
	line-height: 42px;
	font-family: 'Courgette', cursive;
	text-shadow: 1px 1px 2px #000;
}

.banner-text h2 {
	font-size: 1.2rem;
	margin-top: 12px;
	text-shadow: 1px 1px 2px #000;
	font-family: 'Courgette', cursive;
}

.banner-text a {
	display: block;
	width: 180px;
	margin-top: 24px;
	padding: 6px 6px 8px;
	background-image: linear-gradient(#FFB6C1, #FF69B4 );
	color: #fff;
	text-shadow: 1px 1px 2px #000;
	border-radius: 4px;
	box-shadow: 2px 2px 4px #333;
	font-weight: bolder;
	text-align: center;
	border: 1px solid #fff;
	font-family: 'Kanit', sans-serif;
}

/************ SECTION **************************************************************************************/

section {
	width: 100%;
	height: auto;
	padding: 12px;
}

section h1 {
	width: 100%;
	height: auto;
	padding: 48px 24px 12px 24px;
	color: dodgerblue;
	font-size: 1.8rem;
	font-family: 'Lumanosimo', cursive;
	text-align: left;
}

section p {
	font-size: 1.2rem;
	line-height: 25px;
	padding: 12px 24px 24px 24px;
	color: deeppink;
	text-align: justify;

}

section a {
	display: block;
	width: 160px;
	height: auto;
	margin: auto;
	margin-top: 12px;
	margin-bottom: 24px;
	padding: 6px;
	text-align: center;
	font-size: 1.2rem;
	background-image: linear-gradient(#FFB6C1, #FF69B4 );
	color: #fff;
	text-shadow: 2px 2px 4px #333;
	box-shadow: 2px 2px 4px #999;
	border-radius: 4px;
	border: 1px solid #fff;
}

.separator {
	width: 96%;
	margin: auto;
	border: 1px solid rgba(251, 231, 239);
}

#decor {
	width: 100%;
	height: auto;
	background-image: url('images/background-stars.jpg');
	background-repeat: no-repeat;
	background-position: center -20px;
	position: relative;
}

#decor img {
	display: block;
	width: 90%;
	margin: auto;
	margin-bottom: 24px;
}

#decor .personalized img {
	width: 100%;
}

.btn-home-tradicional-criativa {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.traditional {
	color: #777;
	position: relative;
}

.traditional img{
	border: 6px solid #fff;
	box-shadow: 2px 2px 6px #999;
	margin-bottom: 0px;
}

.traditional h1 {
	width: 75%;
}

.traditional h1 span {
	font-size: 1.2rem;
}

#decor .traditional img.balao {
	position: absolute;
	top: -10px;
	right: 20px;
	width: 60px;
	animation-name: float;
	animation-duration: 8s;
	animation-iteration-count: infinite;
	border: 0px solid #fff;
	box-shadow: 0px 0px 0px #999;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-80px);
	}
}

.traditional .form-busca {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.traditional button {
	display: block;
	width: 30%;
	height: auto;
	margin-top: 24px;
	margin-bottom: 12px;
	padding: 9px 8px 7px;
	text-align: center;
	border: 1px solid dodgerblue;
	border-radius: 0px 4px 4px 0px;
	background-image: linear-gradient(skyblue, dodgerblue);
	color: #fff;
	text-shadow: 2px 2px 2px #333;
	font-size: 1.2rem;
}
	
.traditional input {
	display: block;
	width: 70%;
	height: auto;
	margin-top: 24px;
	margin-bottom: 12px;
	padding: 8px;
	border: 1px solid dodgerblue;
	border-radius: 4px 0px 0px 4px;
	font-size: 1.2rem;
}

.carrossel {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 24px;
	border-top: 12px solid  pink;
	border-bottom: 12px solid  pink;
	overflow-y: scroll;
	overflow: hidden;
	margin-top: 40px;
	
}

#decor .carrossel img {
	width: 33%;
	border-right: 1px solid hotpink;
	margin-bottom: 0px;
}

.carrossel img.desktop {
	display: none;
}

.carrossel img:last-child {
	border-right: 0px solid #eee;
}

.you-decorate img {
	width: 94%;
	border: 6px solid #fff;
	box-shadow: 2px 2px 6px #999;
}

.you-decorate a {
	background-image: linear-gradient(skyblue, dodgerblue);
}

#about-us {
	background-image: url("images/background-about.jpg");
	padding-bottom: 36px;
}

#about-us h1, #about-us p {
	color: #fff;
	text-shadow: 1px 1px 2px #000;
}

#about-us img {
	display: block;
	width: 85%;
	margin: auto;
	margin-top: 24px;
	margin-bottom: 24px;
	border: 8px solid #fff;
	box-shadow: 2px 2px 4px #999;
}

#about-us p {
	text-shadow: 1px 1px 2px #000;
	border-radius: 10px;
}

#about-us div.max {
	background-color: rgba(255, 182, 193, .6);	
}

.logo-about-us {
	display: none;
}

/************ CONTACT **************************************************************************************/

#contact {
	padding-bottom: 80px;
}

#contact div.max {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#contact h1 {
	width: 100%;
}

#contact a {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	color: #fff;
	width: 90%;
	max-width: 360px;
	margin: 12px 2%;
	background-image: linear-gradient(#FFB6C1, #FF69B4 );
	font-size: .9rem;

}

#contact a img {
	width: 50px;
	margin-right: 6px;
}

#contact p {
	margin-bottom: 0;
	padding: 2px 0px;
	font-size: .9rem;
	text-align: left;
	color: #fff;
	line-height: 20px;
}


/************ FOOTER **************************************************************************************/

.footer {
	background-color: dodgerblue;
	/* background-image: url("images/cobertura-bolo.png");*/
	background-repeat: no-repeat;
	border-top: 1px solid #eee;
	padding-top: 20px;
	position: relative;
}

.box-footer {
	width: 100%;
}

.box-footer img.logo-footer {
	width: 180px;
	position: absolute;
	top: -110px;
	left: calc(50% - 90px);
}

.footer nav {
	width: 80%;
	margin: auto;
	padding: 42px 0px 12px;
}

.footer ul {
	display: flex;
	flex-wrap: wrap;
}

.footer li {
	width: 50%;
}

.footer nav li a {
	display: block;
	width: 100%;
	padding: 6px 0px;
	text-align: left;
} 

.footer nav a {
	color: #fff;
}

.box-footer h3 {
	width: 80%;
	margin-top: 48px;
	margin-bottom: 12px;
	margin-left: 10%;
	text-align: center;
	color: #fff;
	padding: 4px;
	border-bottom: 1px solid #FFC0CB;
}

.box-footer a {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 8px 36px;
	color: #fff;
}

.box-footer img {
	width: 40px;
	margin-right: 12px;
}

.box-footer a.face img, .box-footer a.insta img {
	width: 36px;
}

.assinatura {
	margin-top: 12px;
	background-color: #000;
	color: #fff;
	border-top: 1px solid #777;
	text-align: center;
	padding: 12px 12px;
	font-size: .8rem;
}

.assinatura a {
	color: #ccc;
	font-size: .6rem;
}

#whats {
	display: block;
	width: 100px;
	background-color: green;
	border-radius: 50px;
	position: fixed;
	bottom: 30px;
	right: 30px;
}

#whats img {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 100px;

}


@media screen and (min-width:750px){
	
	/************ MAIN 750 **************************************************************************************/

	main {
		padding-bottom: 140px;
		background-image: url('images/velas3.jpg');
		background-position: bottom center;
		background-repeat: repeat-x;
		background-size: 150px;

	}

	/************ BANNER 750 **************************************************************************************/

	.banners .image {
		height: 500px;
		background-image: url('images/banner-desktop.jpg');
		background-size: 220%;
		background-position:center;
	}

	.banner-text {
		width: auto;
		background-color: rgba(0,0,0,0);
		left: 10%;
		bottom: 12px;
		letter-spacing: 1px;

	}
	
	.banner-text a {
		margin-top: 12px;
		font-weight: 400;
	}

	.banner-text h1 {
		padding: 12px 18px;
		text-shadow: 2px 2px 4px #000;
		letter-spacing: 1px;
		line-height: 35px;
		font-size: 2.2rem;
		background-color:rgba(0,0,0,.6);
		border-radius: 5px 5px 0px 0px;		
		font-weight: 400;
	}
	
	
	.banner-text h2 {
		padding: 0px 18px 12px;
		text-shadow: 1px 1px 3px #000;
		background-color: rgba(0,0,0,.6);
		border-radius: 0px 0px 5px 5px;
		margin-top: 0px;
		letter-spacing: 1px;		
		font-weight: 400;
	}
	
	/************ SECTION 750 **************************************************************************************/
	
	section {
		padding: 12px 0px;
	}
	
	section p {
		line-height: 35px;
		padding: 40px 60px 12px;
		text-align: justify;
	}
	
	section h1 {
		padding: 40px 24px 25px;
		font-size: 2.0rem;
		letter-spacing: 2px;
	}
	
	section a {
		font-size: 1rem;
	}
	
	.personalized {
		background-image: url("images/baloes2.png");
		background-repeat: no-repeat;
		background-position: -70px 107%;
		background-size: 200px;
		padding: 12px 40px 120px;
	}
	
	.personalized h1 {
		background-color:rgba(255,255,255,.5);
		border-radius: 10px;
	}
	
	.traditional {
		background-image: url("images/baloes2.png");
		background-repeat: no-repeat;
		background-position: 110% 100%;
		background-size: 200px;
		padding: 12px 40px 40px;

	}
	
	.traditional h1 {
		width: 100%;
	}
	
	.traditional .form-busca {
		width: 87%;
		margin-left: 60px;
	}
	
	.traditional-image {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		margin: 6px 0px;   
		padding: 12px 12px;
	}
	
	#decor .traditional img {
		width: 32%;
	}
	
	.you-decorate div {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
	}
	
	#decor .you-decorate img {
		width: 40%;
		margin: 44px 24px;
	}
	
	.you-decorate .text {
		width: 50%;
	}
	
	.you-decorate .text p { 
		padding: 46px 6px 12px;
	}
	
	.you-decorate .text a { 
		margin-right: calc(100% - 150px);
	}
	
	.carrossel {
		margin: 60px 0px 20px;
		overflow-y: scroll;
	}
	
	#decor .carrossel img {
		width: 20%;
		max-width: 180px
	}
	
	.carrossel img.desktop {
		display: block;
	}

	.logo-about-us {
		display: block;
		width: 200px;
		margin: auto;
	}
	
	#about-us {
		margin-top: -80px;
		padding: 0px;
	}
	
	#about-us .text {
		display: flex;
		flex-direction: row-reverse;
		align-items: flex-start;
		padding: 0px 0px 40px
	}
	
	#about-us h1 {
		width: 50%;
		text-align: left;
		font-size: 1.6rem;
		text-shadow: 1px 1px 2px #000;
		padding: 60px 24px 0px;
	}

	#about-us img {
		width: 40%;
		margin-top: 12px;
		margin-right: 24px;
	}

	
	#about-us .text p {
		width: 55%;
		margin-right: 2%;
		padding: 12px 24px;
		text-shadow: 1px 1px 2px #000;
		line-height: 25px;
	}
	
	/************ FOOTER 750 **************************************************************************************/
	
	#contact a {
		width: 43%;
		padding: 12px;
		font-size: 1.0rem;
		margin: 12px 5%;
		text-shadow: 0px 0px 0px #fff;
	}

	#contact a img{
		width: 54px;
	}	

	/************ FOOTER 750 **************************************************************************************/

		
	.footer .max {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		position: relative;
	}

	.box-footer:first-child {
		width: 100%;
	}

	.box-footer {
		width: 50%;
	}

	.box-footer:first-child {
		text-align: left;
	}

	.box-footer:last-child {
		text-align: right;
	}
	
	.box-footer:last-child a {
		flex-direction: row-reverse;
	}

	.box-footer:last-child a img{
		margin-left: 12px;
		width: 40px;
	}
	
	.box-footer img.logo-footer {
		Top: -90px;
	}
		
}

@media screen and (min-width:980px){

	html {
		background-color: #FFE4E1;
	}
	
	/************ HEADER 980 **************************************************************************************/
	header {
		height: auto;
		background-image:linear-gradient(#FFE4E1, #FFB6C1, #FF69B4);
		border: 0px solid #fff;
	}
	
	.header-bar {
		position: relative;
	}
	
	.header-logo {
		display: none;
	}
	
	label.hamburger {
		display: none;
	}
	
	header .desktop {
		display: block;
		width: 260px;
		position: absolute;
		top: -40px;
		left: 0;
	}

	/************ NAV 980 **************************************************************************************/

	nav.main {
		max-width: 100%;
		margin: auto;
		height: auto;
		position: static;
		margin-right: 12px;		
		background-image: none;
		border: 0px solid var(--border-color-nav-mobile);
		box-shadow: 0px 0px 0px #fff;
		opacity: 1;
	}

	nav.main ul {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-end;
		padding-bottom: 4px;
	}

	nav.main ul li {
		padding-top: 14px;
		border-bottom: 0px solid #fff;
	}

	nav.main ul li a {
		padding: 8px 12px;
		font-weight: bolder;
		text-shadow: 1px 1px 2px #333;
	}

	nav.main ul li a:hover {
		background-color: rgba(0, 0, 0, .0);
		color: hotpink;
		
	}


	/************ BANNER 980 **************************************************************************************/
	
	.banners .image {
		background-size: 165%;
	}
	
	section h1 {
		padding: 40px 8px 24px;
		font-size: 1.8rem;
	}
	
	section  p {
		padding: 36px;
	}
	
	#decor {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
	}
	
	.fifth {
		width: 50%;
	}
	.fifth:first-child {
		background-image: url("images/baloes2.png");
		background-repeat: no-repeat;
		background-position: -70px 107%;
		background-size: 200px;
	}
	
	.personalized {
		width: 100%;
		max-width: 700px;
		margin: auto;
		padding: 12px 12px 48px;
		background-image: none;
	}
	
	.traditional {
		width: 100%;
		max-width: 700px;
		margin: auto;
		padding: 12px 12px 48px;
		background-image: none;
	}
	
	.traditional h1, .personalized h1  {
		text-align: center;
	}
	
	.traditional .form-busca {
		margin-left: 6%;
	}
	
	#decor img {
		margin-bottom: 0px;
	}
	
	#decor .you-decorate img {
		margin-top: 0px;
	}
	
	#you-decorate {
		display: block;
		width: 100%;
		background-color: #fff;
		background-image: url("images/baloes2.png");
		background-repeat: no-repeat;
		background-position: 105% 30%;
		background-size: 200px;
	}
	
	.you-decorate .text p {
		margin-top: 0px;
		padding-top: 0px;
	}
	
	/************ FOOTER 980 **************************************************************************************/
	
	.box-footer {
		padding: 90px 0px 30px;
	}
	
	.footer nav {
		width: 96%;
		padding: 0px;
	}
	
	.footer ul {
		flex-direction: column;
		padding-top: 24px;
	}
	
	.footer li {
		width: 100%;
	}
	
	.footer nav li a {
		padding: 3px 0px;
	}
	
	.box-footer img.logo-footer {
		left: 0px;
	}
	
	.box-footer {
		width: 37%;
	}

	.box-footer:first-child {
		width:25%;
	}
	
	.box-footer h3 {
		margin-top: 0px;
		border: 0px solid #fff;
		text-align: left;
		font-size: 1.0rem;
	}
	
	.box-footer:last-child a img, .box-footer a img {
		width: 30px;
	}
	
	.box-footer a {
		font-size: .8rem
	}



}
