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

.texto-section .container-large {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
}

.texto-section .texto-content {
	box-sizing: border-box;
}

.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-section .container-large {
		padding-left: 20px;
		padding-right: 20px;
	}

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

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

	.texto-section .container-large {
		padding-left: 16px;
		padding-right: 16px;
	}

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

@media (min-width: 1440px) {
	.texto-section .container-large {
		padding: 0 140px;
	}
}

