:root {
	--preto: #433F3F;
	--branco: #FFFFFF;
	--branco-quente: #FAF8F4;
	--vinho-profundo: #4C0E10;
	--areia-quente: #D8C9A3;
	--dourado-fosco: #9E7B4F;
	--dourado: #BFA26B;
	--verde-oliva: #7A8755;
	--cinza: #707070;
	
	--padding-x-global: 8.75rem;
	--padding-x-global-mobile: 2rem;
	--section-y-global: 4rem;
	--section-y-global-mobile: 2rem;
	
	--Lato: "Lato", sans-serif;
	--Playfair-Display: "Playfair Display", serif;

	--h1-fs: 2.65rem;
	--h1-lh: 1.2em;
	--h2-fs: 2rem;
	--h2-lh: 1.2em;
	--h3-fs: 1.5rem;
	--h3-lh: 1.2em;
	--h4-fs: 1.375rem;
	--h4-lh: 1.2em;
	--h5-fs: 1rem;
	--h5-lh: 1.2em;
	--h6-fs: .825rem;
	--h6-lh: 1.2em;
	
	--h1-fs-mobile: 2.45rem;
	--h1-lh-mobile: 1.2em;
	--h2-fs-mobile: 2rem;
	--h2-lh-mobile: 1.2em;
	--h3-fs-mobile: 1.5rem;
	--h3-lh-mobile: 1.2em;
	--h4-fs-mobile: 1.25rem;
	--h4-lh-mobile: 1.2em;
	--h5-fs-mobile: 1.125em;
	--h5-lh-mobile: 1.2em;
	--h6-fs-mobile: .825rem;
	--h6-lh-mobile: 1.2em; 
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--Lato);
/* 	font-size: calc(12px + 0.390625vw); */
}

body, html {
	color: var(--preto);
}

a, a:hover {
	text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
    padding: 0;
	margin-bottom: 0;
}

button.btn,
button.btn:active,
button.btn:focus,
input:active,
input:focus,
textarea:active,
textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}

button.btn:active,
button.btn-close:active {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.wrapper {
	padding: var(--section-y-global) 0;
/* 	overflow: hidden; */
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	padding: 0 var(--padding-x-global);
	max-width: 90rem;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--Playfair-Display);
	color: var(--vinho-profundo);
}

.h1, h1 {
	font-size: var(--h1-fs);
	line-height: var(--h1-lh);
}

.h2, h2 {
	font-size: var(--h2-fs);
	line-height: var(--h2-lh);
}

.h3, h3 {
	font-size: var(--h3-fs);
	line-height: var(--h3-lh);
}

.h4, h4 {
	font-size: var(--h4-fs);
	line-height: var(--h4-lh);
}

.h5, h5 {
	font-size: var(--h5-fs);
	line-height: var(--h5-lh);
}

.h6, h6 {
	font-size: var(--h6-fs);
	line-height: var(--h6-lh);
}

header {
	position: fixed;
	display: block;
	width: 100%;
	background: var(--branco);
	z-index: 9999;
}

header .navbar {
	border-bottom: 1px solid rgba(112, 112, 112, 0.1);
	padding: 1.5rem 0;
}

header .navbar .logo-header {
	height: 30px;
}

header .navbar .menu {
	display: flex;
	font-size: 1rem;
	font-weight: 700;
	color: var(--vinho-profundo);
}

header .navbar .menu .menu-item {
	position: relative;
}

header .navbar .menu-item a:before {
	content: "";
	position: absolute;
	display: block;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 2px;
	background: linear-gradient(to right, #BFA26B, transparent);
	border-radius: 4px;
	opacity: 0;
	transition: .5s;
}

header .navbar .menu-item a:hover:before {
	opacity: 1;
}

header .navbar .lado-direito {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .navbar #menu-lado-esquerdo .menu-item {
	margin-right: 4.5rem;
}

header .navbar #menu-lado-direito .menu-item {
	margin-left: 4.5rem;
}

header .navbar .btn.search-header {
	margin-left: 2.5rem;
	padding: 0;
	outline: none;
	border: none;
}

header .navbar .btn.search-header img {
	height: 18px;
}

header .navbar .dropdown-toggle::after {
	display: none !important;
}

header .navbar .dropdown-menu {
	padding: 0;
    border: none;
    margin-top: 3rem;
    width: 300px;
}

header .menu-btn {
	display: none;
}

header .navbar input#menu-button,
header .navbar .icon {
	display: none;
}

.search-form {
	position: relative;
}

.search-form .form-control {
	padding-right: 2.25rem;
	border-color: var(--vinho-profundo);
	background-color: var(--branco-quente);
}

.search-form .btn {
	position: absolute;
	right: 0;
	top: 0;
}

.search-form .btn img {
	height: 15px;
    margin-bottom: 4px;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
	display: none;
	width: 0;
	height: 0;
}

.wrapper-ad {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: var(--branco);
/* 	background: #433F3F; */
/* 	border: 1px solid #707070; */
	border-radius: 6px;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.wrapper-ad .ad-img {
	position: relative;
	width: 100%;
	object-fit: contain;
}

.wrapper-ad .ad-img.mobile {
	display: none;
}

.wrapper-ad h3 {
	color: var(--branco);
}

.wrapper-ad#above-header {
/* 	height: 170px; */
	max-width: 1000px;
	width: 100%;
	margin: 2rem auto;
}

.wrapper-ad#before-banner {
/* 	height: 200px; */
	margin-bottom: 4rem;
}

/* .wrapper-ad#before-footer {
	height: 475px;
} */

.main {
	padding-top: 79px;
}

.main .swiper {
	width: 100%;
	height: 100%;
}

.main .mostViewedSwiper {
	height: auto;
}

.main .swiper-slide {
	height: auto;
}

.main .card {
	height: 100%;
	border: none;
	background: transparent;
}

.main .card.most-viewed {
	border-radius: 6px;
	overflow: hidden;
}

.main .card.most-viewed .card-img-overlay {
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: 1.5rem 2rem 1.5rem;
	background: transparent linear-gradient(180deg, #FFFFFF00 0%, #36333342 40%, #000000 100%) 0% 0% no-repeat padding-box;
}

.main .card .badge {
	position: absolute;
	left: 1rem;
	top: 1rem;
	border-radius: 5px;
	font-size: 1rem;
	padding: 0.5rem 1rem;
	z-index: 1;
}

.main .card.most-viewed .badge {
	left: 2rem;
}

.main .card.most-viewed .card-img {
	height: 250px;
	object-fit: cover;
}

.main .card.post .card-img-top {
	height: 340px;
	border-radius: 6px;
	object-fit: cover;
}

.main .card.post .card-body {
	padding: 3.5rem 0;
}

.main .card.post .card-title {
	font-family: var(--Lato);
	font-weight: 700;
	color: var(--vinho-profundo);
	min-height: 70px;
}

.main .card.most-viewed .card-title {
	font-family: var(--Lato);
	font-weight: 700;
	color: var(--branco);
}

.main .card.post .card-text {
	font-size: 1rem;
	color: var(--preto);
}

.btn.btn-back {
	display: flex;
	align-items: center;
	font-family: var(--Playfair-Display);
	font-size: 1.125rem;
	font-weight: 700;
	padding: 0 .5rem;
	border-radius: 3px;
	color: var(--vinho-profundo);
	background: transparent;
	transition: .3s;
}

.btn.btn-back:before {
	content: "\f104";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-right: .5rem;
    font-size: 1.75rem;
}

.btn.btn-back:hover {
	background: var(--vinho-profundo);
	color: var(--branco);
}

.head-section {
	font-weight: 700;
	border-bottom: 1px solid var(--vinho-profundo);
	padding-bottom: .5rem;
	margin-bottom: 2.75rem;
	white-space: nowrap;
}

.main .pagination {
	padding-top: 2rem;
	align-items: center;
}

.main .pagination .page-numbers {
	font-family: var(--Playfair-Display);
	font-size: 1.75rem;
	margin: 0 .65rem;
	color: var(--vinho-profundo);
	padding: 0 .35rem .5rem;
    line-height: 1;
	transition: .3s;
}

.main .pagination .page-numbers:not(.current):hover {
	background: var(--vinho-profundo);
	color: var(--branco);
}

.main .page-numbers.current {
	color: var(--areia-quente);
}

.main .pagination .page-numbers.next,
.main .pagination .page-numbers.prev {
	font-size: 2rem;
	padding-top: .45rem;
}

footer ul.socials {
	display: flex;
}

footer ul.socials li.socials-item {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: .5rem;
	font-size: 1.125rem;
	color: var(--branco-quente);
	background: var(--vinho-profundo);
	width: 1.85rem;
	height: 1.85rem;
	border-radius: 100%;
}

footer .row {
	align-items: end;
	color: var(--vinho-profundo);
}

footer .row.top {
	padding-top: 13rem;
	border-bottom: 1px solid #BFA26B;
}

footer .row.top .left {
	display: flex;
	justify-content: end;
	padding-right: 5.5rem;
}

footer .row.top ul.socials {
	display: none;
}

footer .logo-footer {
	height: 3rem;
	margin-bottom: 1.5rem;
}

footer .description {
	margin-bottom: 1.5rem;
}

footer .row.bottom {
	font-size: 1rem;
	padding-top: 1.5rem;
	padding-bottom: 5rem;
}

footer .row.bottom .mid {
	line-height: 1.75;
}

footer .row.bottom .right {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media(max-width: 1440px) {
	
	header .navbar #menu-lado-esquerdo .menu-item {
		margin-right: 3.5rem;
	}

	header .navbar #menu-lado-direito .menu-item {
		margin-left: 3.5rem;
	}

}

@media(max-width: 1200px) {

	header {
		background: rgba(250, 248, 244, .95);
	}

	header .navbar {
		position: relative;
		justify-content: center;
		border: none;
	}

	header .navbar .menu-lado-esquerdo-container,
	header .navbar .lado-direito {
		display: none;
	}

	header .menu-btn {
		position: absolute;
		display: block;
		right: 0;
		font-size: 26px;
		transform: scaleX(1.5);
		color: var(--vinho-profundo);
	}

	header .navbar .icon {
		cursor: pointer;
		display: block;
		border-radius: 50%;
	}

	header .navbar label.icon {
		position: absolute;
		right: 0;
	}

	header .navbar .icon .menu-button,
	header .navbar .icon .menu-button::before,
	header .navbar .icon .menu-button::after {
		background: var(--vinho-profundo);
		content: '';
		display: block;
		height: 3px;
		position: absolute;
		transition: background ease .3s, top ease .3s .3s, transform ease .3s;
		width: 35px;
		border-radius: 3px;
	}

	header .navbar .icon .menu-button {
		right: 0;
	}

	header .navbar .icon .menu-button::before {
		top: -8px;
	}

	header .navbar .icon .menu-button::after {
		top: 8px;
	}

	header .navbar #menu-button:checked + .icon .menu-button {
		background: transparent;
	}

	header .navbar #menu-button:checked + .icon .menu-button::before {
		transform: rotate(45deg);
	}

	header .navbar #menu-button:checked + .icon .menu-button::after {
		transform: rotate(-45deg);
	}

	header .navbar #menu-button:checked + .icon .menu-button::before,
	header .navbar #menu-button:checked + .icon .menu-button::after {
		top: 0;
		transition: top ease .3s, transform ease .3s .3s;
	}

	#offcanvasMenu {
		display: flex;
		justify-content: center;
		align-items: center;
		padding-top: 86px;
		height: 100%;
		background: rgba(250, 248, 244, .95);
		border: none;
	}
	
	.offcanvas-backdrop.show {
		background-color: rgba(250, 248, 244, .95);
	}
	
	#offcanvasMenu .offcanvas-body {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		padding: 0 2rem;
	}
	
	#offcanvasMenu .offcanvas-body .wrapper {
		display: flex;
		align-items: center;
		height: 100%;
		width: 100%;
		border-top: 1px solid rgba(148, 60, 31, 0.2);
		padding: 0;
	}

	#offcanvasMenu .offcanvas-body .container {
		max-width: 420px;
		padding-bottom: 7rem;
	}
	
	#offcanvasMenu .offcanvas-body .menu {
		font-size: 1.75rem;
		font-weight: 700;
		color: var(--vinho-profundo);
		text-align: center;
	}
	
	#offcanvasMenu .offcanvas-body .menu .menu-item {
		margin-bottom: 3.5rem;
	}
	
	#offcanvasMenu .offcanvas-body .search-form {		
        margin: 7rem auto 0;
	}
	
}

@media(max-width: 1024px) {

	.wrapper {
		padding: var(--section-y-global-mobile) 0;
	}

	.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		padding: 0 var(--padding-x-global-mobile);
	}

	.h1, h1 {
		font-size: var(--h1-fs-mobile);
		line-height: var(--h1-lh-mobile);
	}

	.h2, h2 {
		font-size: var(--h2-fs-mobile);
		line-height: var(--h2-lh-mobile);
	}

	.h3, h3 {
		font-size: var(--h3-fs-mobile);
		line-height: var(--h3-lh-mobile);
	}

	.h4, h4 {
		font-size: var(--h4-fs-mobile);
		line-height: var(--h4-lh-mobile);
	}

	.h5, h5 {
		font-size: var(--h5-fs-mobile);
		line-height: var(--h5-lh-mobile);
	}

	.h6, h6 {
		font-size: var(--h6-fs-mobile);
		line-height: var(--h6-lh-mobile);
	}
	
	.main {
		padding-top: 85px;
	}

	.main .card.post .card-img-top {
		height: 235px;
	}
	
	footer .row.top {
		padding-top: 5rem;
	}

	footer .row.top .left {
		justify-content: start;
		padding-right: 0;
	}

	footer .logo-footer {
		height: 2.75rem;
	}

	footer .row.bottom {
		font-size: 1.25rem;
		padding-bottom: 2.75rem;
	}
	
}

@media(max-width: 992px) {
	
	footer .row.bottom .mid {
		margin-bottom: 1.25rem;
	}
	
	.main .swiper:not(.mostViewedSwiper) {
		padding-top: 0;
		width: 100vw;
		max-width: 100vw;
		margin: 0 calc(-50vw + 50%);
	}
	
	.main .card.most-viewed {
		height: 200px;
	}
	
}

@media(max-width: 576px) {

	header .navbar .logo-header {
		height: 25px;
	}

	#offcanvasMenu {
		padding-top: 76px;
	}
	
	#offcanvasMenu .offcanvas-body .wrapper {
		align-items: start;
		padding-top: 2.75rem;
	}
	
	#offcanvasMenu .offcanvas-body .container {
		padding: 0;
	}
	
	#offcanvasMenu .offcanvas-body .menu {
		font-size: 1.125rem;
	}
	
	#offcanvasMenu .offcanvas-body .menu .menu-item {
		margin-bottom: 2.75rem;
	}
	
	#offcanvasMenu .offcanvas-body .search-form {		
        margin: 4.75rem auto 0;
	}
	
/* 	.wrapper-ad#above-header {
		height: 100px;
	}
	
	.wrapper-ad#side-column {
		height: 140px;
	}
	
	.wrapper-ad#before-footer {
		height: 140px;
	} */
	
	.wrapper-ad .ad-img.mobile {
		display: block;
	}

	.wrapper-ad .ad-img.desktop {
		display: none;
	}
	
	.main {
		padding-top: 75px;
	}
	
	.main .swiper.mostViewedSwiper {
		padding-top: 0;
		width: 100vw;
		max-width: 100vw;
		margin: 0 calc(-50vw + 50%);
	}
	
	.main .card.post .card-body {
		padding: 1.5rem 0 3.5rem;
	}
	
	.main .card.post .card-title {
		margin-bottom: 1rem;
		min-height: auto;
	}

	.head-section {
		margin-bottom: 2.5rem;
	}
	
	.main .pagination {
		padding-top: 0;
	}
	
	.main .pagination .page-numbers {
		font-size: 1.45rem;
		margin: 0 .45rem;
	}
	
	.main .pagination .page-numbers.next,
	.main .pagination .page-numbers.prev {
		font-size: 1.5rem;
		padding-top: .5rem;
	}
	
	footer .logo-footer {
		margin: 1.5rem auto;
	}
	
	footer .description {
		font-size: 1.125rem;
		font-weight: 400;
		text-align: center;
		margin-bottom: 2.5rem;
	}
	
	footer .row.bottom ul.socials {
		display: none;
	}

	footer .row.top ul.socials {
		display: flex;
		justify-content: center;
		margin-bottom: 4.5rem;
	}
	
	footer .row.top ul.socials li.socials-item {
		font-size: 1.5rem;
		width: 2.85rem;
		height: 2.85rem;
		margin: 0 .5rem;
	}
	
	footer .row.bottom {
		font-size: 1.125rem;
		text-align: center;
	}
	
	footer .row.bottom .right {
		justify-content: center;
	}
	
}