@font-face {
	font-family: 'Montserrat-Thin';
	src: url('../fonts/Montserrat-Thin.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}


@font-face {
	font-family: 'Montserrat-Light';
	src: url('../fonts/Montserrat-Light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}


@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}


@font-face {
	font-family: 'Montserrat-Medium';
	src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}


@font-face {
	font-family: 'Montserrat-SemiBold';
	src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}


@font-face {
	font-family: 'Montserrat-Bold';
	src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}






* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0px;
	padding: 0px;

	font-family: 'Montserrat', sans-serif;

	overflow: auto;
	overflow-x: hidden;
	overflow-y: scroll;
}




.logo-menu-header {
	display: flex;
	align-items: center;

	width: 100%;
	height: auto;
	min-height: 50px;

	padding: 0.8rem 2rem;
	padding-top: 10px;
	background: transparent;

	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;

	z-index: 1000;
	transition: 0.3s;
}

.scrolled {
	background: rgba(2, 78, 181, 0.9);
	backdrop-filter: blur(4px);
}

.container-menu-header {
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0px auto;
}

.item-logo {
	display: block;
	width: 100%;
	max-width: 140px;
	height: auto;
	border-radius: 8px;
	/*background-color: #7dbeff60;*/
}

.item-logo img {
	width: auto;
	height: auto;
	max-height: 90px;
}

.container-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.h-item-menu {
	height: auto;
}

.h-item-menu a {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	color: #FFF;
	text-decoration: none;

	position: relative;
}

.h-item-menu a:hover {
	text-decoration: none;
}

.h-item-menu a:hover::before {
	content: '';
	display: block;
	width: 70%;
	height: 4px;
	border-radius: 3px;
	background-color: #FFF;

	position: absolute;
	right: 0px;
	bottom: -6px;
	z-index: 9999;
}

.h-item-menu button {
	width: auto;
	min-width: 110px;
	height: 32px;
	padding: 0 1rem;
	border-radius: 16px;
	border: 1px solid #FFFFFF1D;
	background-color: #65AAFF;
	color: #fff;

	cursor: pointer;
}

.h-item-menu button:hover {
	background-color: #348FFF;
}




.top-container {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(330deg, #0E4AB1, rgb(2, 74, 159), #1ABBC5, #0253b8) 0% 0% / 420% 300%;
	inset: 0px;

	position: relative;
	top: 0px;
	z-index: 999;
}

.container-top-banner {
	max-width: 1000px;
	padding: 2rem;
	padding-top: 180px;
	position: relative;
	z-index: 10;
	text-align: center;
}

.h1-title {
	margin-bottom: 1.5rem;
	font-family: 'Montserrat-Bold', sans-serif;
	font-size: 3.8rem;
	font-weight: 900;
	line-height: 0.9;
	color: #FFF;
	animation: 1s ease-out 0s 1 normal none running slideIn;
}

.h1-title-medium {
	display: block;
	font-size: 2.9rem;
}

.h1-title-minor {
	display: block;
	font-size: 0.8em;
}

.p-subtitle {
	margin-bottom: 3rem;
	font-family: 'Montserrat-Light', sans-serif;
	font-size: 1.3rem;
	line-height: 1.6;
	color: #FFF;
	opacity: 0.9;
	animation: 1.2s ease-out 0s 1 normal none running slideIn;
}

.container-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.start-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 1rem 2.5rem;
	border-radius: 30px;
	border: none;

	font-size: 1.1rem;
	font-weight: 700;
	color: rgb(255, 255, 255);
	background: linear-gradient(135deg, rgb(21 80 224) 0%, rgb(80 199 228) 100%);

	cursor: pointer;
}

.transparent-button {
	padding: 1rem 2.5rem;
	border-radius: 30px;
	border: 2px solid rgba(255, 255, 255, 0.3);

	font-size: 1.1rem;
	font-weight: 700;
	color: rgb(255, 255, 255);
	background: transparent;

	cursor: pointer;
	backdrop-filter: blur(10px);
}

.btn-hover {
	position: relative;
	overflow: hidden;
	transition: all 0.3s;
}

.btn-hover:before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

.btn-hover:hover:before {
	left: 100%;
}

.btn-hover:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 30px #0653E066;
}

.wave-header {
	position: absolute;
	z-index: 9;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 220px;
}

/*.gradient-text {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
	background-size: 300% 300%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradient 8s ease infinite;
}
*/







.count-cards-header {
	display: flex;
	gap: 3rem;
	justify-content: center;
	margin-top: 5rem;
	padding-bottom: 1.2rem;
	flex-wrap: wrap;
}

.item-card-header {
	width: auto;
	min-width: 210px;
	color: #FFF;
	text-align: center;
	padding: 1.4rem 2rem;
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);

	background: rgba(94, 170, 230, 0.12);
	backdrop-filter: blur(10px);
}

.card-title {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 0.3rem;
}

.card-subtitle {
	font-size: 1.1rem;
	color: #F7FAFF;
	opacity: 0.99;
}





.content-tiles-clube-bemestar {
	display: block;
	width: 100%;
	height: auto;
	min-height: 450px;
	padding: 2.5rem 1rem;
	padding-bottom: 8rem;
}

.box-container-title {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 4rem;
	font-family: 'Montserrat', sans-serif;
}

.content-tile-title {
	margin-bottom: 0.6rem;
	font-family: 'Montserrat-Bold', sans-serif;
	font-size: 2.2rem;
	color: #0774cf;
	text-align: center;
}

.content-tile-subtitle {
	font-size: 1.2rem;
	opacity: 0.7;
}

.highlight-gradient {
	background: linear-gradient(135deg, #0774cf 0%, #19b8c6 25%, #93c8fb 50%, #16468f 75%, #19bac4 100%);
	background-size: 300% 300%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.container-content-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2rem;
	padding: 0 30px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.item-card-content {
	padding: 1.8rem 2.5rem;
	border-radius: 20px;
	border: 1px solid rgba(40, 68, 111, 0.16);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	backdrop-filter: blur(10px);
	animation: 0.8s ease-out 0s 1 normal none running slideIn;
}

.inner-item-card-content {
	width: 70px;
	height: 70px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: rgb(255, 255, 255);
	background: linear-gradient(135deg, rgb(2, 76, 181) 0%, rgba(26, 187, 197, 0.867) 100%);
}

/*.inner-item-card-content.discount {
	background: linear-gradient(135deg, rgb(102, 126, 234) 0%, rgba(102, 166, 234, 0.867) 100%);
}

.inner-item-card-content.use {
	background: linear-gradient(135deg, rgb(118, 75, 162) 0%, rgba(118, 106, 192, 0.867) 100%);
}

.inner-item-card-content.earn {
	background: linear-gradient(135deg, rgb(240, 147, 251) 0%, rgba(240, 187, 251, 0.867) 100%);
}

.inner-item-card-content.focus {
	background: linear-gradient(135deg, rgb(79, 172, 254) 0%, rgba(79, 202, 254, 0.867) 100%);
}

.inner-item-card-content.safety {
	background: linear-gradient(135deg, rgb(0, 177, 254) 0%, rgba(0, 210, 254, 0.867) 100%);
}

.inner-item-card-content.news {
	background: linear-gradient(135deg, rgb(196, 113, 245) 0%, rgba(196, 153, 245, 0.867) 100%);
}*/

.item-card-content h3 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.item-card-content p {
	font-size: 1rem;
	line-height: 1.6;
	opacity: 0.8;
}

.card-hover {
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover:hover {
	transform: translateY(-15px) scale(1.03);
	/*box-shadow: 0 25px 50px rgba(138, 43, 226, 0.3);*/
	box-shadow: 0 15px 30px #88bee75d;
}












.container-call-to-action {
	display: flex;
	width: 100%;
	height: auto;
	min-height: 350px;
	background-color: #D3DDEF;

	position: relative;
	overflow: hidden;
}

.box-content-call-to-action {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: auto;
	padding: 6rem 2rem;
}

.text-call-to-action {
	max-width: 700px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.text-call-to-action h2 {
	margin-bottom: 1.5rem;
	font-family: 'Montserrat-Bold', sans-serif;
	font-size: 2.5rem;
	color: #324FC1;
}

.text-call-to-action p {
	margin-bottom: 2rem;
	font-family: 'Montserrat-Light', sans-serif;
	font-size: 1.2rem;
	opacity: 0.95;
}

.text-call-to-action button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	border: none;

	padding: 1.2rem 3rem;
	background: linear-gradient(135deg, rgb(14 201 236) 0%, rgb(20 93 245) 100%);
	font-size: 1.2rem;
	font-weight: 700;
	color: rgb(255, 255, 255);

	cursor: pointer;
}








.footer {
	display: block;
	width: auto;
	height: auto;
	background-color: #024EB5;
}

.footer-container {
	display: block;
	width: 80%;
	height: auto;
	min-height: 200px;
	margin: auto;
	padding-bottom: 50px;
}

.menu-footer {
	display: flex;
	flex-flow: row wrap;
	gap: 10px;
	height: auto;
	min-height: 100px;
	padding-top: 30px;
	padding-bottom: 50px;
}

.col-footer-menu {
	flex: 1 1 auto;
	display: block;
	width: auto;
	min-width: 200px;
	padding: 10px 3px;

	background-color: #c1c1c100;
}

.col-footer-menu.span {
	min-width: 50px;
}

.title-item-menu {
	display: block;
	margin-bottom: 30px;
	font-family: 'Montserrat-Bold', sans-serif;
	font-size: 18px;
	color: #FFF;
}

.item-footer-menu {
	display: block;
	margin-bottom: 10px;
	padding-left: 3px;
}

.item-footer-menu a {
	font-family: 'Montserrat-Light', sans-serif;
	font-size: 14px;
	color: #FFF;
	text-decoration: none;
}

.item-footer-menu a:hover {
	text-decoration: underline;
}

.footer-tel {
	display: block;
	margin-bottom: 20px;
}

.footer-tel a {
	font-family: 'Montserrat-Medium', sans-serif;
	font-size: 19px;
	color: #FFF;
	text-decoration: none;
}

.footer-tel a:hover {
	text-decoration: underline;
}

.footer-email {
	font-family: 'Montserrat-Light', sans-serif;
	font-size: 14px;
	color: #FFF;
}

.copyright {
	padding: 0px 3px;
	font-size: 13px;
	font-weight: bold;
	color: #FFFFFF90;
}

.rights {
	display: inherit;
	font-weight: normal;
}
