/*   Theme default css */
@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
/* ======font family=========
font-family: "Lato", sans-serif;
font-family: "Gabarito", sans-serif;
*/

:root {
	--greenColor: #a2bf39;
	--textColor: #003a7d;
	--font-lato: "Lato", sans-serif;

	--f18: 18px;
	--f20: 20px;
	--f22: 22px;
	--f24: 24px;
	--f28: 28px;
	--f30: 30px;
	--f32: 32px;
	--f36: 36px;
	--f40: 40px;
	--f48: 48px;
}

body {
	font-weight: 400;
	font-size: 16px;
	margin: 0;
	padding: 0;
	font-family: "Gabarito", sans-serif;
}

img {
	max-width: 100%;
}

button {
	cursor: pointer;
	border: none;
	padding: 0;
	background: none;
}

a:focus,
button:focus {
	text-decoration: none;
	outline: none;
}

a:focus,
a:hover {
	text-decoration: none;
}

a,
button {
	color: inherit;
	outline: medium none;
	text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
	outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0px;
	font-weight: 700;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}

h1 {
	font-size: var(--f48);
}

h2 {
	font-size: var(--f36);
}

h3 {
	font-size: 28px;
}

h4 {
	font-size: 22px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

ul {
	margin: 0px;
	padding: 0px;
}

li {
	list-style: none;
}




.bola-bg {
	position: absolute;
	left: -300px;
	top: -500px;
	max-width: 1520px;
	z-index: 0;
	pointer-events: none;
}
/* default-css END 
================================== */

.header-area {
	padding: 30px 0;
	width: 100%;
	z-index: 99;
	background: #fff;
}

a.logo {
    max-width: 60px;
    display: block;
}
.menu-area nav ul li {
	list-style: none;
	display: inline-block;
}

.menu-area nav ul li a {
	display: block;
	position: relative;
	transition: all .3s;
}

.menu-area nav ul li a:hover {
    color: #FE6718;
}

.menu-area nav ul li a.active {
    color: #FE6718;
    font-weight: 700;
    border-bottom: 3px solid #FE6718;
    padding-bottom: 8px;
}

.menu-area {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 40px;
	position: relative;
	z-index: 9;
}

.theme-btn {
	padding: 12px 48px;
	background: #fe6718;
	color: #fff;
	border-radius: 50px;
	transition: all .3s;
}

.theme-btn:hover {
    background: var(--textColor);
}

.theme-btn.active {
    box-shadow: 0 0 0 3px #fe6718;
}

.menu-area ul {
	display: flex;
	justify-content: end;
	gap: 40px;
}

/* humbergar */
.humbergar {
	cursor: pointer;
	display: block;
	max-width: 25px;
	margin-left: auto;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.humbergar span,
.humbergar span:before,
.humbergar span:after {
	cursor: pointer;
	border-radius: 1px;
	height: 2px;
	width: 24px;
	background: var(--textColor);
	position: relative;
	display: block;
	content: "";
	transition: all 250ms ease-in-out;
}
.humbergar span:before {
	top: -7px;
}
.humbergar span:after {
	bottom: -5px;
}

.humbergar.active span {
	background-color: transparent;
}
.humbergar.active span:before {
	top: -1px;
	transform: rotate(45deg);
}

.humbergar.active span:after {
	bottom: 3px;
	transform: rotate(-45deg);
}

/* humbarger END */

/* mobile-menu START */
.mobile-menu {
	position: fixed;
	width: 280px;
	height: 100vh;
	background: #ffffff;
	z-index: 99;
	box-shadow: 0px 0px 9px -1px #737373;
	top: 0;
	left: 0;
	transition: 0.3s;
	margin-left: -400px;
	padding-left: 40px;
	padding-top: 100px;
}

.mobile-menu .theme-btn {
    position: absolute;
    left: 5%;
    bottom: 20px;
    width: 90%;
    text-align: center;
}
.siteBar {
	margin-left: 0;
}
.mobile-menu ul#pills-tab {
	margin-top: 90px;
	margin-bottom: 35px !important;
	display: block;
}
.mobile-menu nav ul li {
	list-style: none;
	display: block;
}

.mobile-menu nav ul li a {
	color: #272835;
	font-size: 16px;
	line-height: 40px;
	transition: 0.3s;
}

.mobile-menu nav ul li a.active {
	color: #FE6718;
	font-weight: 700;
	background: rgba(254, 103, 24, 0.1);
	border-left: 4px solid #FE6718;
	padding-left: 16px;
	margin-left: -20px;
	padding: 0 0 0 16px;
}

.mobile-menu a.bars {
	position: absolute;
	right: 20px;
	top: 15px;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	font-size: 32px;
	color: rgb(255, 0, 43);
}

/* Header section END */

/*============hero Area Start =============*/

.hero-area {
	background: #003b7c;
	color: #fff;
	text-align: center;
	padding: 100px 0;
}

.hero-area h1 {
	color: var(--greenColor);
	font-size: 60px;
	margin-top: 40px;
}

.hero-area picture {
	display: block;
	max-width: 350px;
	margin: auto;
}


/*============hero Area End =============*/

/*============about Area Start =============*/

.about .container {
	padding-left: 80px;
}

.sobre-Image {
	position: absolute;
	right: 0;
	pointer-events: none;
	max-width: 750px;
}
.about-content {
	max-width: 800px;
	padding: 150px 0;
}

.about-content p {
	font-size: var(--f24);
	color: var(--textColor);
	max-width: 650px;
	line-height: 1.4;
}

.about-content span {
	font-size: 24px;
	font-weight: 700;
	color: var(--greenColor);
	display: block;
	margin: 20px 0 32px;
}
.logo-flex {
	display: flex;
	align-items: center;
	max-width: 360px;
	gap: 40px;
}
.about-info {
	padding-bottom: 100px;
	font-size: var(--f24);
}

.about-info li {
	margin-bottom: 20px;
}

.about-info h1 {
	margin-bottom: 40px;
	text-transform: uppercase;
	font-weight: 400;
	color: var(--textColor);
}
/*============about Area End =============*/

/*============Categorias Area Start =============*/

.Categorias {
	background: linear-gradient(45deg, #003b7c, #fe6718);
	color: #fff;
	text-align: center;
	padding-top: 150px;
}


.Categorias__content p {
	font-size: var(--f22);
	line-height: 1.2;
}

.Categorias__content h1 {
	text-transform: uppercase;
	font-weight: 300;
}

.Categorias__content h1 b {
	font-weight: 700;
}
.Categorias-flex {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-top: 60px;
	margin-bottom: -64px;
	position: relative;
}
.Categorias__block {
	background: #fff;
	color: var(--textColor);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 200px;
	height: 160px;
}

.Categorias__block.v2 {
	color: var(--greenColor);
}

.Categorias__block p {
	margin: 0;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 16px;
}

.Categorias__block h1 {
	margin: 0;
	text-transform: uppercase;
	font-size: 60px;
	font-weight: 700;
}
/*============Categorias Area End =============*/

/*============projeto Area Start =============*/

.projeto {
	padding-bottom: 50px;
}

.projeto .container {
	max-width: 1000px;
}
.projeto__left {
	height: 815px;
	display: flex;
	align-items: end;
	background: var(--greenColor);
}

.projeto__left p {
	font-size: var(--f36);
	font-weight: 700;
	line-height: 1.2;
	height: 100%;
	border-left: 3px solid #fff;
	margin: 0;
	margin-left: 32px;
	padding-left: 16px;
	display: flex;
	align-items: end;
	padding-bottom: 20px;
	color: var(--textColor);
	padding-right: 36px;
}
.projeto__right {
	padding-left: 40px;
}

.projeto__right h5 {
	font-size: var(--f28);
	background: -webkit-linear-gradient(180deg, #fad576, #dc9918);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: max-content;
	margin: 0;
	margin-top: 100px;
}

.projeto__right h3 {
	font-size: var(--f40);
	background: -webkit-linear-gradient(180deg, #fad576, #dc9918);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: max-content;
}

.projeto__right h3.v2 {
	background: -webkit-linear-gradient(180deg, #eee, #333);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.projeto__right img {
	max-width: 500px;
	margin: 20px 0;
}
/*============projeto Area End =============*/

.partner-category {
	margin-bottom: 40px;
}

.partner-category:last-child {
	margin-bottom: 0;
}

.partner-category h3 {
	font-size: 20px;
	background: -webkit-linear-gradient(180deg, #fad576, #dc9918);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: max-content;
	font-weight: 700;
	margin-bottom: 20px;
}

.partner-category h3.v2 {
	background: -webkit-linear-gradient(180deg, #eee, #333);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-top: 30px;
}

.partner-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
	justify-content: flex-start;
}

.partner-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	padding: 10px;
	transition: all 0.3s ease;
}

.partner-item:hover {
	transform: translateY(-3px);
}

.partner-item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* Tamanhos por categoria */
.partner-category:nth-child(1) .partner-item {
	width: 350px;
}

.partner-category:nth-child(2) .partner-item {
	width: 280px;
}

.partner-category:nth-child(3) .partner-item {
	width: 200px;
}

/* Gold, Silver, Bronze max widths */
.partners_section {
	margin-bottom: 50px;
}

.gold {
	max-width: 100%;
}

.gold-logos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 15px;
}

.gold-logos img {
	max-width: 100%;
	height: auto;
	max-height: 70px;
	flex: 1;
}

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

.silver {
	max-width: 100%;
}

.silver-logos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 15px;
}

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

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

.bronze {
	max-width: 100%;
	margin-bottom: 0;
}

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

.bronze_logo {
	max-height: 20px;
	width: auto;
}

.bronze-logos {
	display: flex;
	align-items: center;
	gap: 15px;
}

.bronze-logos img {
	height: auto;
	max-height: 40px;
}

/*============projeto Area End =============*/

/*============brand Area Start =============*/



.brand h2 {
	text-align: center;
	margin-bottom: 16px;
	color: var(--textColor);
	font-weight: 600;
	font-size: var(--f30);
}
.brand__slider {
	max-width: 900px;
	margin: auto;
	margin-bottom: 60px;
	position: relative;
}

.brand__slider .owl-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	width: 110%;
	left: -5%;
	transform: translateY(-50%);
}

.brand__slider .owl-nav img {
	max-width: 13px;
}

.brand__slider picture {
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 150px;
}

.brand__slider picture img {
	max-width: 100%;
	height: auto;
}
.brand__content {
	text-align: center;
	color: var(--textColor);
	padding-bottom: 20px;
}

.brand__content p {
	font-size: var(--f22);
}

.brand__content h3 {
	font-size: var(--f36);
}
/*============brand Area End =============*/

/*============feedback Area Start =============*/

.feedback__block {
	background: var(--textColor);
	color: #fff;
	padding: 15px 80px;
	height: 430px;
}

.feedback__block a {
	display: flex;
	font-size: var(--f20);
	position: relative;
	display: block;
	width: max-content;
	padding-right: 30px;
	margin-left: auto;
	position: absolute;
	right: 100px;
	bottom: 80px;
}

.feedback__block a img {
	position: absolute;
	max-width: 120px;
	right: 0;
	transition: all .3s;
}

.feedback__block a:hover img {
    right: -16px;
}

.feedback__block p {
	font-size: var(--f18);
	margin-bottom: 40px;
	line-height: 1.2;
}

.feedback__block picture {
	max-width: 360px;
	display: block;
	height: 180px;
}

.feedback__block.v2 {
	background: var(--greenColor);
}

/* Mobile Feedback Cards */
.feedback-section {
	padding: 60px 0;
}

.feedback-section .row {
	gap: 30px;
}

.feedback-card {
	background: var(--textColor);
	color: #fff;
	padding: 30px 24px;
	position: relative;
	min-height: 250px;
	display: flex;
	flex-direction: column;
}

.feedback-card a {
	display: flex;
	font-size: 16px;
	width: max-content;
	padding-right: 15px;
	margin-top: auto;
	transition: all .3s;
	align-items: center;
}

.feedback-card a img {
	max-width: 50px;
	margin-left: 10px;
	transition: all .3s;
}

.feedback-card a:hover img {
	transform: translateX(5px);
}

.feedback-card p {
	font-size: 16px;
	margin-bottom: 20px;
	line-height: 1.6;
}

.feedback-card picture {
	max-width: 150px;
	display: block;
	margin: 15px 0;
}

.feedback-card picture img {
	width: 100%;
	height: auto;
}

.feedback-card--secondary {
	background: var(--greenColor);
}

/*============feedback Area End =============*/

/*============Cooprofar Area Start =============*/

.Cooprofar {
	position: relative;
	padding: 200px 0 20px;
}

.Cooprofar__content p {
	font-size: var(--f18);
	color: var(--textColor);
}

.Cooprofar__content picture {
	position: absolute;
	max-width: 220px;
	left: 50%;
	top: -75px;
	transform: translateX(-50%);
	z-index: 9;
}
/*============Cooprofar Area End =============*/

/*============footer Area Start =============*/
.footer {
	background: linear-gradient(45deg, #003b7c, #fe6718);
	color: #fff;
	padding: 30px 0 80px;
}
.footer__logo {
	max-width: 250px;
	margin: auto;
}
.footer__content {
	text-align: right;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: end;
}

.footer__content h4 {
	font-size: var(--f24);
	color: white;
	border-bottom: 0px;
}

.footer__content span {font-family: "IBM Plex Sans", sans-serif;letter-spacing: -1px;font-weight: 200;font-size: var(--f18);}

.footer__content p {font-family: "IBM Plex Sans", sans-serif;letter-spacing: -1px;font-weight: 200;}

.footer__content h4 {
	font-weight: 600;
	margin-bottom: 40px;
}
/*============footer Area End =============*/

/*============Como Chegar Area Start =============*/

.como-chegar-section {
	padding: 80px 0;
	background: #f9f9f9;
}

.como-chegar-section h1 {
	text-align: center;
	font-size: 40px;
	color: var(--textColor);
	margin-bottom: 60px;
}

.como-chegar-section h1 b {
	color: var(--greenColor);
}

.club-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.club-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.club-card__image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	display: block;
}

.club-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.club-card__content {
	padding: 25px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.club-card h3 {
	font-size: 24px;
	color: var(--textColor);
	margin-bottom: 8px;
	font-weight: 700;
}

.club-card__date {
	font-size: 14px;
	color: var(--greenColor);
	font-weight: 600;
	margin-bottom: 10px;
}

.club-card__name {
	font-size: 16px;
	color: #666;
	margin-bottom: 8px;
	font-weight: 500;
}

.club-card__schedule {
	font-size: 14px;
	color: #999;
	margin-bottom: 20px;
}

.club-card__link {
	display: inline-block;
	margin-top: auto;
	color: var(--greenColor);
	text-decoration: none;
	font-weight: 600;
	padding: 8px 0;
	border-bottom: 2px solid var(--greenColor);
	transition: all 0.3s ease;
}

.club-card__link:hover {
	color: var(--textColor);
	border-bottom-color: var(--textColor);
}

/*============Como Chegar Area End =============*/

/*============Mobile Responsive Start =============*/

@media (max-width: 768px) {
	.projeto__left {
		height: 300px;
	}
}

/*============Mobile Responsive End =============*/

/*============ Area Start =============*/

/*============ Area End =============*/

/*============ Area Start =============*/

/*============ Area End =============*/
