/*!
Theme Name: bumax
Theme URI: https://marketingteam.com.br/
Author: Marketing Team
Author URI: https://marketingteam.com.br/
Description: Description
Version: 1.0.0
Tested up to: 6.6.2
Requires PHP: 6.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bumax
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/*----------------------------
>>>>> TABLE OF CONTENTS: <<<<<
------------------------------
# Generic
- Normalize
# Base
- Header
- Front Page
- Footer
- Single
------------------------------
-----------------------------*/

/*----------------*/
/*---- Generic ---*/
/*----------------*/

/* Normalize */
a {
	text-decoration: none !important;
}

.glass-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 15px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	height: 100%;
}

.btn-outline-primary:hover,
.btn-primary {
	color: var(--bs-light) !important;
}

.text-justify {
	text-align: justify;
}

/*----------------*/
/*----- Base -----*/
/*----------------*/

/*---- Header ----*/
/*----------------*/

.header-sticky {
	height: 80px;
	position: fixed;
	top: 30px;
	left: 0;
	right: 0;
	width: 100%;
	transition: background-color 0.3s ease, height 0.3s ease;
	z-index: 99;
}

.header-other-pages {
	position: relative;
	background: var(--bs-primary);
}

.header-sticky.scrolled {
	height: 55px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: var(--bs-primary);
	-webkit-animation: fadeInDown 0.5s;
	animation: fadeInDown 0.5s;
	width: 100%;
}

.site-branding img {
	max-width: 180px;
	height: auto;
	transition: transform 0.3s ease;
}

/* Reduz a logo ao rolar */
.header-sticky.scrolled .site-branding img {
	max-width: 120px;
}

.subheader {
	background-color: var(--bs-secondary);
	position: absolute;
	height: 30px;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
}

header .menu-item {
	margin: 0px 10px;
}

header .input-group input:focus {
	box-shadow: none;
	outline: none;
}

.header-sticky.scrolled .menu-item a {
	color: var(--bs-light);
	text-decoration: none;
}

.menu-item a {
	color: var(--bs-light);
	text-decoration: none;
}

.menu-item a {
	position: relative;
	text-decoration: none; /* Remove qualquer sublinhado padrão */
}

.menu-item a::after,
.header-sticky.scrolled .menu-item a::after {
	content: '';
	position: absolute;
	bottom: 0; /* Ajuste conforme o espaço necessário */
	left: 0;
	height: 2px; /* Espessura da linha */
	width: 0;
	background-color: var(--bs-secondary); /* Cor da linha */
	transition: width 0.5s ease; /* Animação de 3 segundos */
}

.menu-item a:hover::after,
.header-sticky.scrolled .menu-item a:hover::after {
	width: 100%; /* Linha cresce até cobrir todo o texto */
}


.list-group-header:hover {
	background-color: var(--bs-primary);
	color: white;
}

@media (max-width: 720px) {
	.site-branding img {
		max-width: 130px;
		height: auto;
	}

	.header-sticky.scrolled .site-branding img {
		transform: scale(0.8);
	}

	.navbar-expand-lg .navbar-collapse {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: var(--bs-body-bg);
	}

	header .menu-item {
		border-bottom: 1px solid var(--bs-border-color);
		padding: 8px 20px;

	}

	header .menu-item a,
	.header-sticky.scrolled .menu-item a {
		color: var(--bs-primary);
		text-decoration: none;
	}

}

.header-sticky.scrolled .subheader {
	opacity: 0;
}

@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

/* Estilo e animação do botão hamburguer menu */
.navbar-toggler .navbar-toggler-animation {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-image: none;
	position: relative;
	height: 22px;
	width: 22px;
	display: inline-block;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}

/* Estilo e animação do botão hamburguer menu */
.navbar-toggler .navbar-toggler-animation span {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	height: 2px;
	background: var(--bs-navbar-color);
	display: block;
	position: absolute;
	width: 100%;
	border-radius: 30px;
}

/* Estilo e animação do botão hamburguer menu */
.navbar-toggler .navbar-toggler-animation span:nth-child(1) {
	top: 10%;
}

/* Estilo e animação do botão hamburguer menu */
.navbar-toggler .navbar-toggler-animation span:nth-child(2) {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* Estilo e animação do botão hamburguer menu */
.navbar-toggler .navbar-toggler-animation span:nth-child(3) {
	bottom: 10%;
}

/* Estilo e animação do botão hamburguer menu */
.navbar-toggler[data-bs-toggle=collapse][aria-expanded=true] .navbar-toggler-animation span:nth-child(1) {
	-webkit-transform: rotateZ(45deg) translateY(-50%);
	transform: rotateZ(45deg) translateY(-50%);
	top: 49%;
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	width: 100%;
}

/* Estilo e animação do botão hamburguer menu */
.navbar-toggler[data-bs-toggle=collapse][aria-expanded=true] .navbar-toggler-animation span:nth-child(2) {
	visibility: hidden;
	-webkit-transition: all 0s ease-in-out;
	transition: all 0s ease-in-out;
}

/* Estilo e animação do botão hamburguer menu */
.navbar-toggler[data-bs-toggle=collapse][aria-expanded=true] .navbar-toggler-animation span:nth-child(3) {
	-webkit-transform: rotateZ(-45deg) translateY(-50%);
	transform: rotateZ(-45deg) translateY(-50%);
	bottom: 42%;
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	width: 100%;
}

.modal-backdrop {
	z-index: 1 !important;
}




/*-- FRONT PAGE --*/
/*----------------*/
.banner {
	position: relative;
	overflow: hidden;
}

.banner img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.image-slider {
	overflow: hidden;
	position: relative;
}

.image-wrapper {
	display: flex;
	gap: 15px;
	transition: transform 0.5s ease-in-out;
}

.image-wrapper img {
	width: calc(16.67% - 15px);
	max-height: 100px;
	object-fit: cover; /* Faz a imagem preencher o container */
}

.image-wrapper img:hover {
	filter: grayscale(2%);
}

/* Media query para telas pequenas */
@media (max-width: 576px) {
	.image-wrapper img {
		max-height: 100px;
		width: 50%;
		object-fit: cover; /* Faz a imagem preencher o container */
	}
}

.hexagon-section {
	display: flex;
	background-color: white;
	position: relative;
	overflow: hidden;
}

.hexagon-svg {
	position: absolute;
	top: -350px;
	right: -50px;
	transform: rotate(354deg);
}

.hexagon-svg-2 {
	position: absolute;
	top: -350px;
	left: -70px;
	transform: rotate(354deg);
}

.hex-image img {
	width: 100%;
	height: 100%;
}

.hex-large {
	width: 250px;
	height: auto;
}

.hex-small {
	width: 150px;
	height: auto;
}

.hex-medium {
	width: 190px;
	height: auto;
}

/* Media query para telas pequenas */
@media (max-width: 1400px) {
	.hexagon-svg {
		top: -450px;
		right: -250px;
	}
}

/* Media query para telas pequenas */
@media (max-width: 576px) {
	.hexagon-svg {
		top: -150px;
	}
}

.related-posts-section {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.slider-wrapper {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.avatar-42 {
	border-radius: 50%;
}

.slider-item {
	flex: 0 0 25%;
	/* Número de slides visíveis */
	max-width: 25%;
	box-sizing: border-box;
}

/* Media query para telas pequenas */
@media (max-width: 576px) {
	.slider-item {
		flex: 0 0 100%;
		/* Número de slides visíveis */
		max-width: 100%;
		box-sizing: border-box;
	}
}

.text-lowercase::first-letter {
	text-transform: uppercase;
}


/*---- FOOTER ----*/
/*----------------*/
.footer-menu a {
	color: var(--bs-light);
}

.footer-menu li {
	margin-left: 0px;
}

.site-branding-footer img {
	max-width: 100px;
	height: auto;
	transition: transform 0.3s ease;
}

.list-group-item-footer {
	list-style: none;
}

.list-group-item-footer a {
	color: var(--bs-light);
	text-decoration: none;
}

.list-group-item-footer a:hover {
	color: var(--bs-secondary);
}

.back-top {
	cursor: pointer;
	position: fixed !important;
	bottom: 40px;
	right: 40px;
	display: block;
	z-index: 99;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background: var(--bs-primary);
	color: #fff;
	border-radius: 10%;
	width: 52px;
	height: 52px;
	line-height: 52px;
	text-align: center;
}

.back-top:before {
	font-weight: 900;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.back-top:hover {
	background: var(--bs-link-hover-color);
	color: #fff;
}

.back-top.back-top-show {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}

@media (max-width: 767.98px) {
	.back-top {
		bottom: 10px;
		right: 10px;
		width: 30px;
		height: 30px;
		line-height: 30px;
	}

	.back-top:before {
		font-size: 0.6rem;
	}
}

@media (max-width: 575.98px) {
	.back-top {
		display: none;
	}
}

footer .bi-youtube:hover,
footer .bi-linkedin:hover,
footer .bi-instagram:hover,
footer .bi-facebook:hover {
	color: var(--bs-secondary);
}

/*---- SINGLE ----*/
/*----------------*/

/* Estilo geral do item de revisão */

.nav-links {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}

.nav-links a {
	text-decoration: none;
}

.nav-next {
	width: 50%;
	margin-left: auto;
}

.nav-previous {
	width: 50%;
	margin-right: auto;
}

.comment-list {
	list-style: none;
	padding: 0px;
}

.comment-body {
	background-color: rgba(211, 169, 75, 0.1);
	border: 1px solid #dee2e6;
	border-radius: 8px;
	margin-bottom: 1rem;
	padding: 1rem;
	display: flex;
	flex-direction: column;
}

.comment-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #dee2e6;
	padding-bottom: 0.5rem;
	margin-bottom: 0.5rem;
}

.comment-author {
	display: flex;
	align-items: center;
}

.comment-author img {
	border-radius: 50%;
	margin-right: 0.75rem;
	box-shadow: 0 0 0 2px #dee2e6;
}

/* Nome do autor do comentário */
.comment-author .fn a {
	font-weight: bold;
	color: rgb(28, 61, 89);
	text-decoration: none;
	margin-right: 5px;
}

.comment-metadata {
	font-size: 0.875rem;
	color: #6c757d;
}

.comment-content p {
	margin: 0;
	line-height: 1.5;
}

.edit-link a {
	color: rgb(28, 61, 89);
	text-decoration: none;
}

.edit-link a:hover {
	text-decoration: underline;
}

.reply {
	margin-top: 1rem;
}

.comment-reply-link {
	color: rgb(28, 61, 89);
	text-decoration: none;
}

.comment-reply-link:hover {
	font-weight: 500;
}

/* Estilos responsivos */
@media (max-width: 767px) {
	.comment-meta {
		flex-direction: column;
		align-items: flex-start;
	}

	.comment-author img {
		margin-right: 10px;
		margin-bottom: 0.2rem;
		position: relative;
		bottom: -12px;
	}

	.comment-author .fn a {
		margin-right: 0;
		display: block;
	}

	.comment-metadata {
		font-size: 0.75rem;
		padding-left: 14%;
		position: relative;
		bottom: 10px;
	}

	.comment-body {
		padding: 0.75rem;
	}

	.says {
		margin-left: 5px;
	}
}

.pagination .page-numbers {
	padding: 0.5rem 0.75rem;
	margin: 0.25rem;
	border: 1px solid #dee2e6;
	border-radius: 0.25rem;
	text-decoration: none;
	color: var(--bs-primary);
	transition: background-color 0.2s ease-in-out;
}

.pagination .page-numbers:hover {
	background-color: var(--bs-primary);
	color: var(--bs-light);
}

.pagination .current {
	background-color: var(--bs-primary);
	color: #fff;
	border-color: var(--bs-primary);
}

.pagination .prev,
.pagination .next {
	font-weight: bold;
	color: var(--bs-primary);
}

.children {
	list-style: none;
}

#primary {
	padding-top: 20px;
}

/* Estilos responsivos */
@media (max-width: 767px) {
	#primary {
		padding-top: 0px;
	}
}



/*---- TEMPLATE-PARTS > CONTENT-PRODUCT ----*/
/*------------------------------------------*/
.product-slide {
	min-width: 25%;
	box-sizing: border-box;
	padding: 10px;
}

.product-image-link:hover .secondary-image {
	opacity: 1;
}

.product-image-link:hover .primary-image {
	opacity: 0;
}

@media (max-width: 768px) {
	.product-slide {
		min-width: 50%;
	}
}

@media (max-width: 995px) {
	.product-slide {
		min-width: 33.3%;
	}
}

.product-image-link .secondary-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.1s ease;
	opacity: 0;
}

.product-carousel {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.product-wrapper {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

/* --- SOLUCOES ---*/
/*-----------------*/
.solucoes-gallery-main img {
	object-fit: cover;
	width: 100%;
	height: 400px;
}

.solucoes-gallery {
	display: flex;
	flex-direction: column;
}

.solucoes-gallery-main {
	width: 100%;
	position: relative;
	padding: 5px;
}

.solucoes-gallery-thumbnails {
	display: flex;
	overflow: hidden;
	position: relative;
	height: auto;
}

.solucoes-thumbnail {
	flex: 0 0 25%;
	box-sizing: border-box;
	padding: 5px;
}

.solucoes-thumbnail img {
	width: 100%;
	height: 80px;
	object-fit: cover;
}

.arrow {
	position: absolute;
	background-color: var(--bs-primary);
	color: white;
	padding: 5px 9px;
	cursor: pointer;
	z-index: 1;
	border-radius: 50%;
}

.arrow-up,
.arrow-down {
	left: 50%;
	transform: translateX(-50%);
}

.arrow-left,
.arrow-right {
	top: 50%;
	transform: translateY(-50%);
}

.arrow-left {
	left: 0;
}

.arrow-right {
	right: 0;
}

@media (min-width: 768px) {
	.solucoes-gallery-thumbnails {
		flex-direction: row;
		width: 100%;
	}

	.arrow-up,
	.arrow-down {
		display: none;
	}
}

@media (max-width: 767px) {
	.solucoes-gallery-thumbnails {
		flex-direction: row;
		height: auto;
	}

	.arrow-up,
	.arrow-down {
		display: none;
	}
}

.modal-content {
	position: relative;
	padding: 0;
}

.modal-body {
	padding: 0;
}

.close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 1051;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #fff;
	opacity: 0.8;
}

.close:hover {
	opacity: 1;
}

.modal-lg {
	max-width: 90%;
	/* Ajuste a largura do modal */
}

.modal-body img {
	width: 100%;
	height: auto;
	display: block;
}

.img-product {
	object-fit: cover;
	height: 250px !important;
	width: 100% !important;
}

@media (max-width: 700px) {
	.img-product {
		object-fit: cover;
		height: 180px !important;
		width: 100% !important;
	}
}

.solucoes-title  {
	font-weight: 900;
}

.btn-outline-success:hover {
	color: white!important;
}

h2, .h2 {
    font-weight: 800 !important;
}

h3, .h3 {
    font-weight: 600 !important;
}