/**
 * Caixa de Informações — carrossel de texto.
 *
 * @package PT2026
 */

.pt2026-caixa-info {
	margin: 2rem 0;
}

.pt2026-caixa-info__inner {
	background-color: #E4142C;
	border-radius: 12px;
	padding: 32px 28px 28px;
	color: #ffffff;
}

.pt2026-caixa-info__title {
	margin: 0 0 20px;
	font-family: var(--pt2026-font-display-ultra-cond, "Sofia Sans Extra Condensed", sans-serif);
	font-size: clamp(1.5rem, 2.8vw, 2rem);
	font-weight: 900;
	line-height: 1.1;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.single-post-content .pt2026-caixa-info__title,
.entry-content .pt2026-caixa-info__title {
	color: #ffffff;
}

.pt2026-caixa-info__carousel-wrap {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pt2026-caixa-info__carousel.owl-carousel {
	display: block;
}

.pt2026-caixa-info__carousel .owl-stage-outer {
	overflow: hidden;
}

.pt2026-caixa-info__slide {
	width: 100%;
}

.pt2026-caixa-info__text {
	font-family: var(--pt2026-font-body, "Asap", sans-serif);
	font-size: 1rem;
	line-height: 1.5;
	color: #ffffff;
}

.single-post-content .pt2026-caixa-info__text,
.entry-content .pt2026-caixa-info__text,
.single-post-content .pt2026-caixa-info__text p,
.entry-content .pt2026-caixa-info__text p {
	color: #ffffff;
	margin-bottom: 0;
}

.pt2026-caixa-info__text p + p {
	margin-top: 1em;
}

.pt2026-caixa-info__text a {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.pt2026-caixa-info__text a:hover,
.pt2026-caixa-info__text a:focus-visible {
	color: #ffffff;
	text-decoration-thickness: 2px;
}

/* Rodapé — setas e dots (estilo galeria do single, adaptado para fundo vermelho). */
.pt2026-caixa-info__footer {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	min-height: 22px;
	margin: 0;
	padding: 0;
	position: relative;
}

.pt2026-caixa-info__btn {
	width: 22px;
	height: 22px;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	line-height: 1;
	flex-shrink: 0;
	transition: opacity 0.2s ease;
}

.pt2026-caixa-info__btn:hover,
.pt2026-caixa-info__btn:focus-visible {
	opacity: 0.75;
	outline: none;
}

.pt2026-caixa-info__btn .bi {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	pointer-events: none;
}

.pt2026-caixa-info__dots {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	z-index: 1;
	margin: 0;
	padding: 0;
}

.pt2026-caixa-info__dot {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	line-height: 0;
}

.pt2026-caixa-info__dot span {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	transition: background 0.2s ease, transform 0.2s ease;
}

.pt2026-caixa-info__dot.is-active span,
.pt2026-caixa-info__dot:hover span {
	background: #ffffff;
	transform: scale(1.15);
}

.pt2026-caixa-info__carousel .owl-nav,
.pt2026-caixa-info__carousel .owl-dots {
	display: none !important;
}

@media (max-width: 767.98px) {
	.pt2026-caixa-info__inner {
		padding: 24px 20px 20px;
		border-radius: 12px;
	}

	.pt2026-caixa-info__title {
		margin-bottom: 16px;
	}
}
