/**
 * Hub de produtos Horta Osório — layout slider + categorias + ações.
 */

.ho-products-hub{
	position: relative;
	padding: 212px 0 0;
}

.mde-products-hub__intro-header{
	position: relative;
	padding-bottom: 124px;
	z-index: 2;
}

.mde-products-hub__intro-title{
	display: flex;
	align-items: center;
	gap: 24px;
}

.ho-products-hub__main{
	position: relative;
	z-index: 1;
	padding-bottom: 124px;
}

.ho-products-hub__cat-list{
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0;
	margin: 0;
}

@media (max-width: 991px){
	.ho-products-hub__cat-list{
		flex-direction: row;
		flex-wrap: wrap;
		gap: 10px;
		justify-content: center;
	}
}

.ho-products-hub__shape-primary{
	position: absolute;
	bottom: -100px;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.03;
}

.ho-products-hub__shape-primary img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


.ho-products-hub__shape-secondary{
	position: relative;
	z-index: 1;
}

.ho-products-hub__cat-link{
	font-family: 'Playfair Display', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	line-height: 1.6;
	color: rgba(35, 31, 32, 0.5);
	text-decoration: none;
	transition: all 0.3s ease;
	text-transform: uppercase;
}

.ho-products-hub__cat-link:hover{
	color: rgba(35, 31, 32, 1);
}

.ho-products-hub__cat-link.is-active{
	color: rgba(35, 31, 32, 1);
}

.ho-products-hub__nav{
	margin-bottom: 110px;
}

@media (max-width: 991px){
	.ho-products-hub__nav{
		margin-bottom: 50px;
	}
}

.ho-products-hub__actions{
	margin-bottom: 110px;
	text-transform: uppercase;
}

@media (max-width: 991px){
	.ho-products-hub__actions{
		margin-bottom: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

/* Coverflow como .pc-cat-swiper (arquivo product_category / MDE) */
.ho-hub-swiper{
	position: relative;
	z-index: 1;
	padding: 0;
	width: 100%;
}

.ho-hub-slide{
	height: auto;
	box-sizing: border-box;
}

.ho-products-hub__slider-wrap{
	position: relative;
	padding: 0 20px;
}

@media (max-width: 991px){
	.ho-products-hub__slider-wrap{
		padding: 0;
	}
}

.ho-hub-swiper-stage{
	position: relative;
	z-index: 1;
	min-height: 320px;
}

.ho-hub-slide__visual img{
	width: 100%;
    height: 500px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
}

@media (max-width: 991px){
	.ho-hub-slide__visual img{
		height: 270px;
	}
}

.ho-hub-slide__title{
	font-family: 'Playfair Display', sans-serif;
	font-weight: 400;
	font-size: 28px;
	color: #231F20;
}

.ho-hub-slide__line{
	font-family: 'Playfair Display', sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: #8E9166;
}

@media (max-width: 991px){
	.ho-hub-slide__title{
		font-size: 24px;
	}

	.ho-hub-slide__line{
		font-size: 22px;
	}
}

.ho-hub-shared-circle{
	position: absolute;
	left: 50%;
	top: 37%;
	transform: translate(-50%, -50%);
	width: min(416px, 85vw);
	height: min(416px, 85vw);
	max-width: 416px;
	max-height: 416px;
	aspect-ratio: 1;
	border-radius: 50%;
	z-index: 1;
	pointer-events: none;
}

@media (max-width: 991px){
	.ho-hub-shared-circle{
		width: min(260px, 62vw);
		height: min(260px, 62vw);
		max-width: 260px;
		max-height: 260px;
	}
}

.ho-hub-shared-circle__inner{
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
}

.ho-hub-shared-circle__img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}



.ho-hub-slide__meta{
	margin: 2rem auto 0;
	text-align: center;
	max-width: 420px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.swiper-slide-active .ho-hub-slide__meta{
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Controles: anterior à esquerda, seguinte à direita (sobre o carrossel) */
.ho-hub-swiper__controls{
	position: absolute;
	left: 0;
	right: 0;
	top: 42%;
	transform: translateY(-50%);
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	margin: 0;
	padding: 0;
	color: var(--ho-hub-accent);
	pointer-events: none;
}

.ho-hub-swiper__nav{
	pointer-events: auto;
	border: 0;
	background: transparent;
	line-height: 1;
	color: inherit;
	padding: 8px;
	cursor: pointer;
}

.ho-hub-swiper__nav:hover:not(:disabled){
	opacity: 0.85;
}

.ho-hub-swiper__nav.swiper-button-disabled{
	opacity: 0.25;
	cursor: default;
}

