:root {
	--rosa: #F73667;
	--rosa-medio: #E44667;
	--preto: #111111;
	--cinza-claro: #EFEFEF;
	--cinza-medio: #00000029;
	--branco: #FFFFFF;
	
	--padding-x-global: 4rem;
	--padding-x-global-mobile: 2rem;
	--section-y-global: 6rem;
	--section-y-global-mobile: 2rem;
	
	--Lato: "Lato", sans-serif;
	--Parkinsans: "Parkinsans", sans-serif;

	--h1-fs: 4.5rem;
	--h1-lh: 1.2em;
	--h2-fs: 4rem;
	--h2-lh: 1.2em;
	--h3-fs: 3.5rem;
	--h3-lh: 1.2em;
	--h4-fs: 2.5rem;
	--h4-lh: 1.2em;
	--h5-fs: 2rem;
	--h5-lh: 1.2em;
	--h6-fs: 1.5rem;
	--h6-lh: 1.2em;

	--h1-fs-mobile: 2.5rem;
	--h1-lh-mobile: 1.2em;
	--h2-fs-mobile: 2.25rem;
	--h2-lh-mobile: 1.2em;
	--h3-fs-mobile: 1.75rem;
	--h3-lh-mobile: 1.2em;
	--h4-fs-mobile: 1.5rem;
	--h4-lh-mobile: 1.2em;
	--h5-fs-mobile: 1.25em;
	--h5-lh-mobile: 1.2em;
	--h6-fs-mobile: 1rem;
	--h6-lh-mobile: 1.2em; 
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--Lato);
}

html {
  scroll-behavior: auto !important;
}

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

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

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

button.btn,
button.btn:active,
button.btn:focus,
button:focus,
a: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;
}

.fi {
	line-height: 1.45;
	vertical-align: middle;
}

.cursor {
	width: 100px;
	height: 100px;
	position: fixed;
	pointer-events: none;
	opacity: 0;
	transform: scale(0.2);
	z-index: 9999;
}

.main {
	position: relative;
}

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

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

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--Parkinsans);
}

.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);
}

.topic {
	font-size: 1.25rem;
    display: inline-block;
    border: 1px solid;
    padding: .25rem 2rem .35rem;
    border-radius: 50px;
}

.topic.pink {
	color: var(--rosa);
	border-color: var(--rosa);
}

.btn.btn-pink {
	font-size: 1.125rem;
    color: var(--cinza-claro);
    background-color: var(--rosa);
    padding: .75rem 1.25rem .85rem;
    box-shadow: 0px 0px 99px #F73667;
    border: 1px solid var(--cinza-claro);
	transition: .5s;
}

.btn.btn-pink:hover {
	box-shadow: 0px 0px 99px transparent;
	text-decoration: underline;
}

.btn.btn-nav {
	font-size: 1.25rem;
    display: inline-block;
	color: var(--rosa);
    border: 1px solid var(--rosa);
    padding: .15rem 1rem .25rem;
    border-radius: 50px;
	transition: .5s;
}

.btn.btn-nav:hover {
	color: var(--cinza-claro);
	background-color: var(--rosa);
	box-shadow: 0px 0px 99px var(--rosa) !important;
}

.btn.btn-nav .arrow {
	display: inline-block;
	margin-right: .5rem;
}

.btn.btn-nav .arrow .fi {
	line-height: 1.25;
}

.btn.btn-white {
	font-size: 1rem;
    color: var(--rosa);
	background-color: var(--branco);
    padding: .35rem .825rem .5rem;
	border: 1px solid var(--cinza-claro);
	border-radius: 100px;
	transition: .5s;
}

.btn.btn-white:hover {
	background-color: var(--cinza-claro);
	color: var(--rosa);
	border: 1px solid var(--cinza-claro);
	text-decoration: underline;
}

.navbar.float {
	position: fixed;
    display: flex;
	width: calc(100% - 4rem);
	max-width: 576px;
	top: -7rem;
	left: 50%;
    transform: translateX(-50%);
    color: var(--branco);
	background: var(--rosa);
	padding: 0rem 1rem 0rem .25rem;
	border-radius: 50px;
    box-shadow: 0 0 70px #0000005c;
	transition: top 0.5s;
    z-index: 999;
}

.navbar.float.shown {
	 top: .75rem;
}

.navbar.float .menu-btn {
	font-size: 1.75rem;
}

header {
	position: absolute;
    width: 100%;
    top: 0;
    left: 0;
	background-color: transparent;
	transition: .5s;
	border-bottom-left-radius: 45px;
	border-bottom-right-radius: 45px;
	z-index: 1;
}

header .navbar,
#offcanvasMenu .navbar {
	padding: 2.5rem 0;
}

header ul.menu,
footer ul.menu {
	display: flex;
	margin: 0;
}

header ul.menu .menu-item,
footer ul.menu .menu-item {
	font-size: 1.25rem;
	margin-left: 1.5rem;
	color: var(--branco);
}

footer ul.menu .menu-item {
	margin-right: 1.5rem;
	margin-left: 0;
}

header ul.menu .menu-item a,
footer ul.menu .menu-item a {
	transition: .3s;
	border-bottom: 1px solid transparent;
}

header ul.menu .menu-item a:hover,
footer ul.menu .menu-item a:hover {
	color: var(--rosa);
	text-shadow: 0 0 .65px var(--rosa), 0 0 .65px var(--rosa);
	border-bottom: 1px solid var(--rosa);
}

header .navbar .menu-btn {
	display: none;
	font-size: 2rem;
	color: var(--branco);
	transition: .5s;
}

#offcanvasMenu .navbar .close-menu {
	font-size: 1.5rem;
	color: var(--branco);
	transition: .5s;
}

#offcanvasMenu {
	height: fit-content;
	background-color: var(--rosa);
	border-bottom-left-radius: 45px;
	border-bottom-right-radius: 45px;
	border: none;
}

#offcanvasMenu .offcanvas-body {
	color: var(--branco);
/* 	padding: 10rem 0 2.5rem; */
	padding: 0;
}

#offcanvasMenu .menu {
	margin: 2rem 0 4rem;
}

#offcanvasMenu .menu-item {
	font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

footer .footer-wrapper {
	background-color: var(--preto);
	margin-top: 4.5rem;
	padding: 4.5rem 4rem 1.75rem;
	border-top-left-radius: 70px;
	border-top-right-radius: 70px;
	color: var(--branco);
}

footer .navbar-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 3.5rem;
}

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

footer .socials {
	display: flex;
}

footer .socials .social {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1rem;
	width: 30px;
	height: 30px;
	background: var(--branco);
	color: var(--preto);
	margin-left: .5rem;
    border-radius: 100%;
	transition: .5s;
}

footer .socials .social:hover {
	background: var(--rosa);
	color: var(--branco);
}

footer .bottom .address {
	font-style: italic;
}

footer .bottom .copy {
	font-style: italic;
	font-weight: 300;
}

.top-section {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--rosa);
	text-align: center;
}

.title-section {
	font-weight: 500;
	width: 100%;
	max-width: 935px;
	margin: 1rem auto 2.5rem;
	text-align: center;
}

#posts {
	text-align: center;
	transform: translateY(-5rem);
}

#posts .posts-grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	grid-template-rows: auto auto;
	gap: 1rem;
	margin: 5rem 0 3rem;
}

#posts .card {
	position: relative;
	color: var(--rosa);
	border: 2px solid var(--rosa);
	border-radius: 0;
	padding: 1rem 6rem 3rem 1.5rem;
	text-align: left;
}

#posts .card.tall {
  grid-row: span 2;
  grid-column: 2;
}

#posts .card.tall .card-body {
	display: flex;
	align-items: center;
}

#posts .card .link {
	position: absolute;
	font-size: 1.125rem;
	right: 2rem;
	bottom: 1.5rem;
	border-bottom: 1px solid transparent;
	transition: .3s;
}

#posts .card .link:hover {
	text-shadow: 0 0 .65px var(--rosa), 0 0 .65px var(--rosa);
	border-bottom: 1px solid var(--rosa);
}

#posts .btn.btn-blog {
	font-size: 1.5rem;
	color: var(--rosa);
	padding: 0;
    border-radius: 0;
	transition: .3s;
}

#posts .btn.btn-blog .arrow {
	display: inline-block;
	margin-left: .5rem;
}

#posts .btn.btn-blog .arrow i {
	line-height: 1;
}

#posts .btn.btn-blog:hover {
	text-shadow: 0 0 .65px var(--rosa), 0 0 .65px var(--rosa);
	border-bottom: 1px solid var(--rosa);
}

#bg-page-video {
	position: relative;
	display: block;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: 12.918rem;
	z-index: 0;
	object-fit: cover;
}

.content-page {
	position: relative;
	background-color: var(--branco);
	border-top-left-radius: 4.375rem;
	border-top-right-radius: 4.375rem;
	transform: translateY(-4.375rem);
	z-index: 1;
}

.page-header {
	padding: 3rem 0;
}

.page-header .btn.btn-nav {
	margin-top: 2.75rem;
}

.page-header .title {
	font-family: var(--Parkinsans);
    font-size: 5.25rem;
    font-weight: 600;
    color: var(--cinza-medio);
}

.page-header .detail {
	position: relative;
	font-size: 1.25rem;
	margin-top: 2rem;
}

.page-header .detail:after {
	content: "";
	position: absolute;
	display: block;
	background: var(--rosa);
	height: 6px;
	width: 100%;
	border-radius: 3px;
	left: 0;
	bottom: -1rem;
}

.page-header .detail .pink {
	font-weight: 700;
	color: var(--rosa);
}

.page-header .detail .specs .pink {
	margin-bottom: 1rem;
}

@media(max-width: 992px) {
	
	header {
		position: fixed;
	}
	
	header .menu-desktop {
		display: none;
	}
	
	header .navbar .menu-btn,
	#offcanvasMenu .navbar .close-menu {
		display: block;
	}
	
	footer .navbar-footer {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	footer ul.menu {
		margin: 2rem 0;
	}
	
	footer .bottom {
		flex-direction: column-reverse;
	}
	
	footer .socials {
		margin-bottom: 2.5rem;
	}
	
	#posts .card {
		padding: .5rem .5rem 4rem .5rem;
	}

	.page-header {
		padding: 2rem 0;
	}

}

@media(max-width: 576px) {

	.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);
	}

	.btn.btn-pink {
		font-size: 1rem;
	}
	
	.btn.btn-nav {
		font-size: 1rem;
	}
	
	.navbar.float .btn.btn-white {
		display: none;
	}
	
	header .navbar,
	#offcanvasMenu .navbar {
		padding: 1rem 0;
	}

	.topic {
		font-size: 1rem;
		padding: .5rem 1rem;
	}
	
	footer .footer-wrapper {
		margin-top: 4.5rem;
		padding: 2rem 2rem 1.75rem;
		border-top-left-radius: 45px;
		border-top-right-radius: 45px;
	}
	
	footer ul.menu {
		flex-direction: column;
	}
	
	footer ul.menu .menu-item {
		margin-bottom: 1rem;
	}
	
	footer .bottom {
		font-size: .8rem;
	}
	
	.top-section {
		font-size: 1rem;
	}
	
	#posts {
		transform: translatey(-2rem);
	}
	
	#posts .posts-grid {
		grid-template-columns: 1fr;
		margin: 3rem 0;
	}

	#posts .card.tall {
		grid-column: auto;
		grid-row: auto;
	}
	
	#posts .card {
		padding: 0 0 3rem;
	}
	
	#posts .card .card-body {
		padding: 1rem;
	}
	
	#posts .card .link {
		font-size: 1rem;
		right: 1.25rem;
		bottom: .75rem;
	}
	
	#posts .btn.btn-blog {
		font-size: 1.125rem;
	}

	#bg-page-video {
		height: 9.918rem;
	}
	
	.content-page {
		border-top-left-radius: 45px;
		border-top-right-radius: 45px;
	}
	
	.page-header .title {
		font-size: 3.25rem;
	}

	.page-header .btn.btn-nav {
		margin-top: 0;
		margin-bottom: 1rem;
	}

}
