/* ================================================
   SOBRE
   ================================================ */
.about-section {
	background: var(--ot-dark);
	padding: var(--ot-space-3xl) 0;
	position: relative;
}

.about-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(232, 123, 30, 0.3), transparent);
}

.about-img-wrap {
	position: relative;
}

.about-img-main {
	width: 100%;
	aspect-ratio: 4/3;
	border-radius: var(--ot-radius-lg);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 6rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	background-position: center;
	background-repeat: no-repeat;
	background-size:cover;
}

.about-img-badge {
	position: absolute;
	bottom: -20px;
	right: -16px;
	background: var(--ot-grad-cta);
	border-radius: var(--ot-radius-md);
	padding: var(--ot-space-md) var(--ot-space-lg);
	text-align: center;
	box-shadow: var(--ot-shadow-card);
}

.about-img-badge strong {
	font-family: var(--ot-font-display);
	font-size: 2rem;
	font-weight: 700;
	color: var(--ot-white);
	display: block;
	line-height: 1;
}

.about-img-badge span {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
}

.about-dot-bg {
	position: absolute;
	top: -20px;
	left: -20px;
	width: 120px;
	height: 120px;
	background-image: radial-gradient(circle, rgba(232, 123, 30, 0.25) 1px, transparent 1px);
	background-size: 14px 14px;
	z-index: -1;
}

.about-title {
	font-size: var(--ot-fs-h2);
	margin-bottom: var(--ot-space-md);
}

.about-text {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.8;
	margin-bottom: var(--ot-space-lg);
}

.about-list {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--ot-space-xl);
}

.about-list li {
	display: flex;
	align-items: flex-start;
	gap: var(--ot-space-md);
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.72);
	padding: var(--ot-space-sm) 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-list li:last-child {
	border-bottom: none;
}

.about-list-icon {
	width: 22px;
	height: 22px;
	background: var(--ot-orange-alpha);
	border: 1px solid rgba(232, 123, 30, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
	color: var(--ot-orange);
	flex-shrink: 0;
	margin-top: 2px;
}

@media (max-width: 767px) {
	.about-img-badge {
		right: 0;
		bottom: -10px;
	}
}