:root {
	--brand-blue: #4FAEC7;
	--brand-green: #7FBF6A;
	--brand-dark: #1f2a2e;
	--brand-light: #f7f9fb;
	--white: #ffffff;

}


* {
	box-sizing: border-box;
}


html {
	scroll-behavior: auto !important;
}

body {
	font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	color: var(--brand-dark);

}

.section-blue{
	background: var(--brand-blue);
}

.bg-light {
  background:#f4f4f4 !important
}

.owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);

}


.owl-nav .owl-prev {
	left: -40px;
}

.owl-nav .owl-next {
	right: -40px;
}


.owl-nav span {
	font-size: 40px;
	color: #333;

}


.py-5 {
	padding-top: 7rem !important;
	padding-bottom: 7rem !important;

}


.text-content-all {
	line-height: 1.7;
}


/* TOPBAR */

.topbar {
	background: var(--brand-blue);
	color: #fff;

}

.topbar .topbar-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .7);
	display: inline-block;

}

.topbar-social a {
	font-size: 18px;
	opacity: .9;

}

.topbar-social a:hover {
	opacity: 1;
}


/* NAVBAR */

.navbar {
	background: #fff;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .06);

}

.navbar .nav-link {
	color: #334;
	font-weight: 500;
	margin: 0px 13px
}

.navbar .nav-link:hover {
	color: #a5cb5f;
}


.btn-brand {
	background: var(--brand-blue);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 10px 22px;
	font-weight: 700;

}

.btn-brand:hover {
	background: #6e6d6d;
	color: #fff;
}


.btn-outline-brand {
	border: 2px solid var(--brand-blue);
	color: var(--brand-blue);
	border-radius: 999px;
	padding: 10px 22px;
	font-weight: 700;

}

.btn-outline-brand:hover {
	background: var(--brand-blue);
	color: #fff;

}


/* IMG EFFECT */

/* IMG EFFECT */

.img-effect {
	position: relative;
	overflow: hidden;
	/* 🔥 essencial */

}


.img-effect img {
	display: block;
	width: 100%;
	height: auto;

}


.img-effect::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
			rgba(0, 0, 0, .15),
			rgba(165, 203, 95, .30));
	z-index: 1;
	pointer-events: none;

}


/* HERO */

.hero {
	min-height: 88vh;
	/* page “cheia” */
	display: flex;
	align-items: center;
	position: relative;

}

.bg-fixed-desktop {
	background-attachment: fixed;
}

@media (max-width: 992px) {
	.bg-fixed-desktop {
		background-attachment: scroll;
	}

}


.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(165, 203, 95, .30));

}

.hero .container {
	position: relative;
	z-index: 2;
}


.hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, .16);
	border: 1px solid rgba(255, 255, 255, .18);
	padding: 8px 16px;
	border-radius: 999px;
	color: #fff;
	font-weight: 600;

}


.btn-whatsapp {
	background: #a5cb5f;
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 12px 26px;
	font-weight: 800;

}

.btn-whatsapp:hover {
	background: #6d883d;
	color: #fff;
}


/* FEATURE CARDS (Sobre) */

.feature-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .06);
	border-radius: 18px;
	padding: 20px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .04);

}

.feature-icon {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	/* 🔥 centraliza o bloco */
	border: solid 2px #a5cb5f;
	margin: 20px auto
}

.feature-icon i {
	font-size: 50px !important;
	line-height: 100px !important;
	color: #a5cb5f !important;

}


.feature-icon-about {
	width: 70px;
	height: 70px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(79, 174, 199, .12);
	color: var(--brand-blue);
	font-size: 30px;

}

@media (max-width: 767.98px) {
	.feature-icon-about {
		margin-left: auto;
		margin-right: auto;
	}
}


/* ESPECIALIDADES */

.spec-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .06);
	border-radius: 18px;
	padding: 18px 18px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .04);
	height: 100%;
	text-align: left;

}

.spec-card i {
	color: var(--brand-blue);
	font-size: 26px;
	margin-bottom: 10px;

}


/* GALLERY */

.gallery-item {
	height: 260px;
	border-radius: 18px;
	background: #dde7ea center/cover no-repeat;
	border: 1px solid rgba(0, 0, 0, .06);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .04);

}


/* FOOTER */

footer {
	background: #fff;
	/*border-top: 1px solid rgba(0, 0, 0, .08);*/

}

footer a {
	color: #1f2a2e;
	text-decoration: none;

}

footer a:hover {
	color: var(--brand-blue);
}


/* FLOATING WPP */

.floating-wpp {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 9999;

}

.floating-wpp .btn {
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 0;
	font-size: 30px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .18);

}


/* MOBILE helpers */

.list-clean-mobile {
	padding-left: 18px;
}

@media (max-width: 767.98px) {

  .list-clean-mobile {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
  }

  .list-clean-mobile li {
    padding-left: 0;
    margin-left: 0;
    font-weight: 400; /* normal */
  }

  /* itens pares em negrito */
  .list-clean-mobile li:nth-child(even) {
    font-weight: 700;
	margin-bottom:12px
  }
}


/* TEXT ALIGN */
.text-align-center{text-align:center !important}
.text-align-left{text-align:left !important}
.text-align-right{text-align:right !important}
.text-align-justify{text-align:justify !important}

@media only screen and (max-width: 600px) {
  .text-align-center{text-align:center !important}
  .text-align-left{text-align:center !important}
  .text-align-right{text-align:center !important}
  .text-align-justify{text-align:center !important}
}
