/* Bloque Texto */
.texto-section {
	padding: 80px 0;
	width: 100%;
}

.texto-content {
	max-width: 100%;
}

.texto-content p {
	font-size: 18px;
	line-height: 1.7;
	margin: 0 0 24px 0;
}

.texto-content p:last-child {
	margin-bottom: 0;
}

.texto-content strong {
	font-weight: 700;
}

.texto-content a {
	color: inherit;
	text-decoration: underline;
	transition: opacity 0.2s ease;
}

.texto-content a:hover {
	opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
	.texto-section {
		padding: 60px 0;
	}
}

@media (max-width: 768px) {
	.texto-section {
		padding: 40px 0;
	}

	.texto-content p {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.texto-section {
		padding: 32px 0;
	}

	.texto-content p {
		font-size: 15px;
		line-height: 1.6;
	}
}

