/* Elementor Widget: Uaden Bloque Impacto */

.uaden-impact-wrapper {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	min-height: 600px;
	background-color: transparent; /* Assuming section is full width */
}

/* ================================
   COLUMNA IZQUIERDA
   ================================ */
.uaden-impact-left {
	flex: 1 1 50%;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 400px;
}

/* Tarjeta Flotante */
.uaden-impact-floating {
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #ffffff;
	padding: 40px;
	width: 80%;
	max-width: 450px;
	box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
}

.uaden-impact-floating h3 {
	font-size: 20px;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 15px;
	color: #333333;
}

.uaden-impact-floating p {
	font-size: 14px;
	line-height: 1.6;
	color: #555555;
	margin-bottom: 25px;
}

.uaden-impact-floating a {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #ff4a4a; /* Red tone similar to the image link */
	text-decoration: none;
	transition: color 0.3s;
}

.uaden-impact-floating a:hover {
	opacity: 0.8;
}


/* ================================
   COLUMNA DERECHA
   ================================ */
.uaden-impact-right {
	flex: 1 1 50%;
	background-color: #e53e34; /* Base red color like in the mock */
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px;
}

.uaden-impact-right-inner {
	max-width: 600px;
	width: 100%;
}

.uaden-impact-subtitle {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 20px;
	display: block;
}

.uaden-impact-title {
	font-size: 42px;
	line-height: 1.2;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 30px;
	color: #ffffff;
}

.uaden-impact-desc {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 40px;
}

.uaden-impact-desc p {
	margin-bottom: 1em;
}
.uaden-impact-desc p:last-child {
	margin-bottom: 0;
}

/* Estadísticas (Barras) */
.uaden-impact-stats {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.uaden-stat-item {
	width: 100%;
}

.uaden-stat-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.uaden-stat-title,
.uaden-stat-value {
	font-size: 14px;
	font-weight: 600;
}

.uaden-stat-bar {
	width: 100%;
	height: 3px;
	background-color: rgba(255, 255, 255, 0.2);
	position: relative;
	border-radius: 2px;
}

.uaden-stat-fill {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background-color: #ffffff;
	border-radius: 2px;
	transition: width 1s ease-in-out;
}


/* ================================
   RESPONSIVO
   ================================ */
@media (max-width: 991px) {
	.uaden-impact-left,
	.uaden-impact-right {
		flex: 1 1 100%;
	}

	.uaden-impact-left {
		min-height: 500px;
	}

	.uaden-impact-floating {
		width: 90%;
		max-width: none;
	}
}

@media (max-width: 767px) {
	.uaden-impact-right {
		padding: 40px 20px;
	}

	.uaden-impact-title {
		font-size: 32px;
	}

	.uaden-impact-floating {
		padding: 25px;
	}
}
