/*
Theme Name: Buddemeyer Hotsite
Author: candyshop.ag
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
body { line-height: normal;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}

blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none;}
table {border-collapse: collapse; border-spacing: 0;}
a {text-decoration:none;}
a img {-webkit-transform: rotate(0); -moz-transform: rotate(0); transform: rotate(0);}

a {transition: all 0.2s;
-moz-transition: all 0.2s;
/* Firefox 4 */	-webkit-transition: all 0.2s;
/* Safari and Chrome */ -o-transition: all 0.2s /* Opera */ }

* {box-sizing: border-box;}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Bold.woff2') format('woff2'),
        url('fonts/Gilroy-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Light.woff2') format('woff2'),
        url('fonts/Gilroy-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Heavy.woff2') format('woff2'),
        url('fonts/Gilroy-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Medium.woff2') format('woff2'),
        url('fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------- END RESET -------------------------- */

body {
	font-family: 'Gilroy', sans-serif;
	color: #6b564b;
	font-weight: 500;
	width: 100%;
	height: 100%;
	background: #ffffff;
}

html {
	width: 100%;
	scrollbar-color: #c1c1c1 #f1f1f1;
	scrollbar-width: thin !important;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: #888;
}

::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.content-wrap {
	width: 95%;
	margin: 0 auto;
	padding: 0;
	max-width: 1020px;
}

.content-wrap-g {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	max-width: 1440px;
}

.content-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.content-wrap-full {
	width: 95%;
	margin: 0 auto;
	padding: 0;
	max-width: 1920px;
}


/* --------------------------------------- HEADER -------------------------- */

header {
	width: 100%;
	height: auto;
	background: transparent;
	padding: 45px 0 15px 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	transition: all 0.2s linear;
}

header.sticky {
	padding: 15px 0 15px 0;
	background: #191919;
}

header .logo {
	display: block;
	width: 258px;
	margin: 0 0 0 15px;
}

header .logo a {
	display: block;
	width: 100%;
}

header .top-right {
	width: calc(100% - 258px - 45px);
	margin: 6px 15px 0 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

header .menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin: 0 0 0 10px;
}

header .nav {
	padding: 4px 0 0 0;
}

header .nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

header .nav ul li {
	margin: 0 20px;
}

header .nav ul li a {
	font-size: 18px;
	color: #ffffff;
	font-weight: 300;
	text-transform: uppercase;
}

header .nav ul li a:hover {
	text-decoration: underline;
}

header .nav ul li a.active {
	font-weight: 700;
}

.toggle-menu-button {
	display: none;
	margin: 20px 0 0 0;
	cursor: pointer;
	position: relative;
	z-index: 12;
}

.toggle-menu-button .line {
	position: relative;
	display: block;
	width: 23px;
	height: 2px;
	margin-bottom: 4px;
	margin-left: auto;
	margin-right: auto;
	clear: both;
	background: #ffffff;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 12px;
}

.toggle-menu-button.open {
	position: fixed;
	top: 45px;
	right: 15px;
}

.toggle-menu-button.open .line:nth-child(1) {
	-webkit-transform: translateY(6px) rotate(-135deg);
	transform: translateY(6px) rotate(-135deg);
}

.toggle-menu-button.open .line:nth-child(2) {
	-webkit-transform: scale(0);
	transform: scale(0);
}

.toggle-menu-button.open .line:nth-child(3) {
	-webkit-transform: translateY(-6px) rotate(-45deg);
	transform: translateY(-6px) rotate(-45deg);
}		

.headbump {
	width: 100%;
	height: 209px;
}

@media screen and (max-width: 4880px) {
	header .logo {
		width: 258px;
	}	
	
	header .logo a {
		width: 100%;
	}
	
	header .top-right {
		float: none;
		width: 80%;
		height: 100vh;
		max-width: 280px;
		margin: 0 0 0 0;
		position: fixed;
		top: 0;
		right: -100%;
		z-index: 9;
		background: #191919;
		transition: right 0.2s;
		align-content: flex-start;
	}

	header .top-right.menu-sliding {
		right: 0;
	}

	header .nav {
		padding: 120px 15px 0 15px;
		margin: 0 0 0 0;
	}

	header .nav ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
	}

	header .nav ul li {
		margin: 0 0 15px 0;
		width: 100%;
		text-align: right;
	}

	header .nav ul li a {
		display: block;
		padding: 5px 15px;
	}

	.toggle-menu-button {
		margin: 20px 15px 0 0;
		display: block;
	}
	
	.bump {
		width: 100%;
		height: 69px;
	}	


}

@media screen and (max-width: 880px) {
	header .logo {
		width: 230px;
	}	
}


/* --------------------------------------- HOME -------------------------- */
.vitrine {
	background-color: #191919;
	width: 100%;
}

.vitrine ul {
	display: block;
	width: 100%;
	height: 619px;
	margin: 0 auto;
}

.vitrine ul li {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

.slide-01 {
	background-image: url('img/bg-01.jpg');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 90px 0 30px 0;
}

.flex-center {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.box-100 {
	width: calc(100% - 40px);
	margin: 0 20px 30px 20px;
}

.box-70 {
	width: calc(70% - 40px);
	margin: 0 20px 30px 20px;
}

.box-65 {
	width: calc(65% - 40px);
	margin: 0 20px 30px 20px;
}

.box-60 {
	width: calc(60% - 40px);
	margin: 0 20px 30px 20px;
}

.box-50 {
	width: calc(50% - 40px);
	margin: 0 20px 30px 20px;
}

.box-40 {
	width: calc(40% - 40px);
	margin: 0 20px 30px 20px;
}

.box-35 {
	width: calc(35% - 40px);
	margin: 0 20px 30px 20px;
}

.box-30 {
	width: calc(30% - 40px);
	margin: 0 20px 30px 20px;
}

.box-left {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	text-align: right;
	padding: 0 30px;
	box-sizing: border-box;
}

.txt-simples p {
	font-size: 20px;
	font-weight: 500;
	line-height: 25px;
	letter-spacing: -0.3px;
	margin: 0 0 15px 0;
}

.txt-simples p strong {
	font-weight: 700;
}

.txt-simples h3 {
	font-size: 26px;
	font-weight: 300;
	line-height: 28px;
	margin: 0 0 30px 0;
}

.txt-simples h3 strong {
	font-weight: 700;
}

.txt-simples h4 {
	font-size: 27px;
	font-weight: 300;
	line-height: 28px;
	margin: 0 0 15px 0;
}

.txt-simples h4 strong {
	font-weight: 700;
}

.txt-grad-01 {
  background-image: linear-gradient(-45deg, #a58877, #73594b, #917768);
  background: -webkit-linear-gradient(-45deg, #a58877, #73594b, #917768);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-text-fill-color: transparent;
}

h2.txt-grad-01, .tit-01 {
	font-size: 54px;
	font-weight: 300;
	line-height: 52px;
}

h2.txt-grad-01 strong {
	font-weight: 900;
}

.seta-down {
	display: flex;
	width: 28px;
	margin: 0 auto 5px auto;
}

.seta-down:hover {
	margin: 3px auto 2px auto;
}

.spacer-01 {
	width: 100%;
	height: 30px;
}

.spacer-02 {
	width: 100%;
	height: 15px;
}



.slide-02 {
	background-image: url('img/bg-02.jpg');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 90px 0 60px 0;
}

.tit-full {
	width: 100%;
	background-image: url('img/icon-line-02.png');
	background-repeat: repeat-x;
	background-position: bottom 25px left 0;
	text-align: center;
	margin: 0 auto 50px auto;
}

.tit-full h3 {
	font-size: 24px;
	font-weight: 700;
	line-height: 23px;
	text-transform: uppercase;
}

.tit-full h2 {
	font-size: 48px;
	font-weight: 300;
	line-height: 46px;
	padding: 0 15px;
	display: inline-block;
}

.slide-02 .tit-full h2 {
	background-color: #8d7668;
}

.box-50 .img {
	margin: 0 15px;
}

.slide-02 .box-50 .img img {
	display: block;
	box-shadow: -12px 12px 12px 0 rgba(27, 25, 24, 0.4);
}

.txt-border {
	border: 2px solid #bcaa9b;
	padding: 35px;
	max-width: 90%;
}

.img .legenda {
	font-size: 18px;
	font-weight: 700;
	font-style: italic;
	text-align: right;
	padding: 0 35px 0 0;
	margin: -15px 0 0 0;
}



.slide-03 {
	background: #7c5448;
	padding: 90px 0 60px 0;
}

.slide-03 .tit-full h2 {
	background-color: #7c5448;
}



.slide-04 {
	background-image: url('img/bg-03.jpg');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 30px 0 50px 0;
}

.iframe-full {
	width: 100%;
	text-align: center;
	margin: 0 0 45px 0;
}

.iframe-full iframe {
	width: 95% !important;
	height: 530px !important;
	max-width: 970px !important;
	max-height: 70vh !important;
	/*box-shadow: -12px 12px 12px 0 rgba(27, 25, 24, 0.4);*/
}



.slide-05 {
	background-image: url('img/bg-04.jpg');
	background-position: bottom center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 90px 0 60px 0;
}

.slide-05-01 {
	background-image: url('img/bg-04-vr2.jpg');
}

.slide-05-02 {
	background-image: url('img/bg-04-vr3.jpg');
}

.slide-05 .tit-full h2 {
	background-color: #6e7c63;
}

.divi-01 {
	width: calc(100% - 40px);
	height: 2px;
	margin: 0 20px 15px 20px;
	background: #b6b6a2;
}




.slide-06 {
	background-image: url('img/bg-05.jpg');
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 90px 0 60px 0;
}

.slide-06 .tit-full h2 {
	background-color: #8d7668;
}

.list-time {
	width: 95%;
	max-width: 1320px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.list-time li {
	width: 320px;
	margin: 0 60px 65px 60px;
}

.list-time li .thumb {
	width: 100%;
	height: 320px;
	max-width: 320px;
	margin: 0 auto 25px auto;
	box-shadow: -12px 12px 12px 0 rgba(27, 25, 24, 0.4);
}

.list-time li .thumb img {
	width: 100%;
	height: 100%;
	display: block;
}

.list-time li .txt {
	height: calc(100% - 320px - 25px);
	background: url('img/icon-line-01.png') bottom left no-repeat;
	padding: 0 0 20px 0;
}

.list-time li .txt p {
	font-size: 17px;
	color: #dad1c5;
	font-weight: 700;
	line-height: 16px;
}
 
.list-time li .txt p small {
	font-size: 14px;

}






.slide-07 {
	background: #7c5448;
	padding: 90px 0 40px 0;
}

.slide-07 .tit-full h2 {
	background-color: #7c5448;
}




.slide-08 {
	background-image: url('img/bg-06.jpg');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 25px 0 25px 0;
}

.slide-09 {
	background-image: url('img/bg-07.jpg');
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 90px 0 60px 0;
}

.slide-09 .tit-full {
    background-image: url('img/icon-line-03.png');
}

.slide-09 .tit-full h2 {
	background-image: url('img/bg-07.jpg');
	background-position: top center;
}

.slider-trio {
	width: 100%;
	position: relative;
	max-width: 1340px;
	margin: 0 auto 0 auto;
}

.slider-trio .slick-list, .slider-trio .slick-track {
	width: 100%;
	height: 100%;
	-webkit-transition: all 1s cubic-bezier(0.4, 0, 0.1, 1);
  	transition: all 1s cubic-bezier(0.4, 0, 0.1, 1);
}

.slider-trio .slick-list {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 !important;
}

.slider-trio .slick-track {
	display: flex;
	align-content: center;
	align-items: center;
}

.slider-trio .slick-slide {
	width: 315px !important;
	height: 530px;
	transition: all 0.2s;
	margin: 0 15px;
}

.slider-trio .slick-slide li {
	width: 100%;
	height: 530px;
	display: flex !important;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}

.slider-trio .slick-slide.slick-current {
	width: 390px !important;
}

.slider-trio .quem-wrap {
	position: relative;
}

.slider-trio .slick-arrow {
	width: 48px;
	height: 48px;
	display: block;
	position: absolute;
	top: calc(50% - 24px);
	right: 0;
	z-index: 3;
	border: none;
	background: url("img/icon-seta-02.png") no-repeat;
	background-size: contain;
	cursor: pointer;
}

.slider-trio .slick-arrow.slick-prev {
	left: 0;
	right: auto;
	transform: rotate(180deg);
}

.slider-trio .quem-thumb {
	width: 100%;
	max-height: 434px;
	position: relative;
	z-index: 1;
}

.slider-trio .quem-thumb img {
	width: 100%;
	height: auto;
}

.slider-trio .slick-slide.slick-current .quem-thumb {
	max-height: 530px;
}

.slider-trio .quem-txt {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	background: transparent;
	padding: 22px;
	text-align: center;
	transition: all 0.4s;
}

.slider-trio .slick-slide.slick-current .quem-txt {
	background: #d4cbbe;
}

.slider-trio .quem-txt p {
	font-size: 19px;
	color: #d4cbbe;
	font-weight: 500;
	line-height: 21px;
	letter-spacing: -0.3px;
	transition: all 0.4s;
}

.slider-trio .quem-txt p strong {
	font-weight: 700;
}

.slider-trio .slick-slide.slick-current .quem-txt p {
	font-size: 25px;
	color: #6b564b;
	line-height: 27px;
}

.slider-trio .quem-shadow {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 55%;
	background: linear-gradient(0deg, rgba(7,7,7,0.86) 0%, rgba(7,7,7,0) 100%);
}

.slide-10 {
	background-image: url('img/bg-09.jpg');
	background-position: bottom center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 90px 0 60px 0;
}

.slide-10 .tit-full {
    background-image: url('img/icon-line-03.png');
	background-position: bottom 45px left 0;
}

.slide-10 .tit-full h2 {
    background-color: #d8d0c5;
}


@media screen and (max-width: 1400px) {
	.list-time {
		max-width: 1090px;
	}

	.list-time li {
		margin-left: 20px;
		margin-right: 20px;
	}


}

@media screen and (max-width: 880px) {
	.box-100 {
		width: calc(100% - 40px);
		margin: 0 20px 30px 20px;
	}
	
	.box-70 {
		width: calc(100% - 40px);
		margin: 0 20px 30px 20px;
	}
	
	.box-60 {
		width: calc(100% - 40px);
		margin: 0 20px 30px 20px;
	}
	
	.box-50 {
		width: calc(100% - 40px);
		margin: 0 20px 30px 20px;
	}
	
	.box-40 {
		width: calc(100% - 40px);
		margin: 0 20px 30px 20px;
	}
	
	.box-30 {
		width: calc(100% - 40px);
		margin: 0 20px 30px 20px;
	}

	.box-35 {
		width: calc(100% - 40px);
		margin: 0 20px 30px 20px;
	}
	
	.box-65 {
		width: calc(100% - 40px);
		margin: 0 20px 30px 20px;
	}

	.slide-01, .slide-02, .slide-03, .slide-05, .slide-06, .slide-07, .slide-09 {
		padding-top: 60px;
	}

	.spacer-01 {
		height: 20px;
	}
	
	.box-left {
		justify-content: flex-start;
		text-align: left;
		padding: 0 0;
	}	

	h2.txt-grad-01, .tit-01 {
		font-size: 42px;
		line-height: 42px;
	}

	.tit-full h2 {
		font-size: 42px;
		line-height: 40px;
	}

	.tit-full h3 {
		margin-bottom: 5px;
	}

	.txt-simples p {
		font-size: 20px;
		line-height: 26px;
	}

	.txt-border {
		padding: 25px;
		max-width: 95%;
	}

	.iframe-full iframe {
		height: 350px !important;
	}

	.slide-06 {
		background-position: top center;
	}

	.list-time {
		justify-content: center;
	}	

	.list-time li {
		margin-left: 15px;
		margin-right: 15px;
	}		

	.slider-trio .slick-list {
		max-width: 325px;
	}	

	.slider-trio .slick-slide {
		width: 285px !important;
		height: auto;
	}	

	.slider-trio .slick-slide li {
		height: 412px;
	}

	.slider-trio .slick-slide.slick-current {
		width: 285px !important;
	}
	
	.slider-trio .quem-txt {
		padding: 15px;
	}	

	.slider-trio .quem-txt p {
		font-size: 17px
		line-height: 19px;
	}

	.slider-trio .slick-slide.slick-current .quem-txt p {
		font-size: 20px;
		line-height: 22px;
	}
}







/* -------------------------------------- RODAPÉ ------------------------------------- */

footer {
	width: 100%;
	background: url('img/bg-08.png') no-repeat transparent;
	background-size: cover;
	background-position: top center;
	padding: 0 0 0 0;
	margin: -45px 0 0 0;
	position: relative;
}

footer .content-flex {
	justify-content: space-between;
}

.logo-rdp {
	display: block;
	width: 309px;
	max-width: 70%;
	margin: 0 auto;
}

.logo-rdp img {
	display: block;
}


@media screen and (max-width: 880px) {
	footer .content-flex {
		justify-content: center;
	}


}


/* -------------------------------------- ÚTEIS ------------------------------------- */

.marrom-01 {
	color: #6b564b !important;
}

.cinza-01 {
	color: #dad1c5 !important;
}

.marrom-02 {
	color: #b09e85 !important;
}

.marrom-03 {
	color: #714d43 !important;
}

.img-100 {
	max-width: 100%;
	height: auto;
	width: auto;
}

.transition {
	transition: all 0.2s;
	-moz-transition: all 0.2s; /* Firefox 4 */	
	-webkit-transition: all 0.2s; /* Safari and Chrome */ 
	-o-transition: all 0.2s; /* Opera */
}

.opacity {
	opacity:0.9;
	filter:alpha(opacity=90); /* For IE8 and earlier */
}

.bold, strong {
	font-weight: 700;
}

em {
	font-style:italic;
}

.clear {
	clear:both !important;
}

.divi-flex {
	width: 100%;
	height: 0;
}

.slick-dots {
	text-align: left !important;
	padding: 0 15px 0 15px !important;
}

.slick-dots li {
	position: relative !important;
	display: inline-block !important;
	width: 15px !important;
	height: 15px !important;
	margin: 0 5px !important;
	padding: 0 !important;
	cursor: pointer !important;
}

.slick-dots li button {
	font-size: 0 !important;
	line-height: 0 !important;
	display: block !important;
	width: 13px !important;
	height: 13px !important;
	padding: 0 !important;
	cursor: pointer !important;
	color: transparent !important;
	border: 1px solid #C4161C !important;
	border-radius: 32px ! important;
	outline: none !important;
	opacity: .30 !important;
	background: #ffffff !important;
}

.slick-dots li button::before {
	font-family: 'Montserrat', sans-serif !important;
	font-size: 42px !important;
	line-height: 13px !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 13px !important;
	height: 13px !important;
	content: '' !important;
	display: block;
	text-align: center !important;
	opacity: .30 !important;
	color: #C4161C !important;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
}

.slick-dots li.slick-active button {
	background: #C4161C !important;
	opacity: 1 !important;
}

.wpcf7 form .wpcf7-response-output {
	border: 2px solid #ffffff !important;
	background-color: #ffffff !important;
	font-family: 'Raleway' !important;
	font-weight: 700 !important;
	color: #C4161C !important;
	text-align: center !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #fff !important;
}

.input-wrap .wpcf7-not-valid-tip {
	padding: 5px 20px 0 0 !important;
	font-size: 12px !important;
	text-align: right !important;
}



@keyframes menu-sliding {
	from {left: -90%;}
	to {left: 0;}
}	


@media screen and (max-width: 768px) {

}