/* ==========================================================================
   NOSOTROS PAGE STYLES
   ========================================================================== */

.ns-nosotros-page {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #0F172A;
	background-color: #F8FAFC;
	padding-bottom: 4rem;
}

/* --- Hero Section --- */
.ns-nosotros-hero {
	padding: 5rem 0;
	background: #FFFFFF;
}

.ns-nosotros-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.ns-nosotros-hero-content .ns-badge {
	display: inline-block;
	background: rgba(31, 163, 164, 0.1);
	color: #1FA3A4;
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.4rem 1rem;
	border-radius: 9999px;
	margin-bottom: 1.5rem;
}

.ns-nosotros-hero-content .ns-title {
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1.2;
	color: #0F172A;
	margin-bottom: 2rem;
}

.ns-nosotros-hero-content .ns-title span {
	color: #1FA3A4;
}

.ns-hero-text p {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #475569;
	margin-bottom: 1.5rem;
}

.ns-hero-text p:last-child {
	margin-bottom: 0;
}

.ns-hero-text strong {
	color: #0F172A;
	font-weight: 700;
}

.ns-hero-text em {
	font-style: normal;
	background: rgba(31, 157, 57, 0.1);
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
	color: #1F9D39;
	font-weight: 600;
}

/* Botones */
.ns-nosotros-actions {
	display: flex;
	gap: 1rem;
	margin-top: 2.5rem;
	flex-wrap: wrap;
}

.ns-btn-primary,
.ns-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 1.8rem;
	font-size: 1.05rem;
	font-weight: 700;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.ns-btn-primary {
	background: #1FA3A4;
	color: #FFFFFF;
	box-shadow: 0 4px 6px -1px rgba(31, 163, 164, 0.3);
}

.ns-btn-primary:hover {
	background: #188687;
	transform: translateY(-2px);
	box-shadow: 0 10px 15px -3px rgba(31, 163, 164, 0.3);
	color: #FFFFFF;
}

.ns-btn-outline {
	background: transparent;
	color: #1F9D39;
	border: 2px solid #1F9D39;
}

.ns-btn-outline:hover {
	background: #1F9D39;
	color: #FFFFFF;
}

/* Imagen Hero */
.ns-nosotros-hero-image {
	position: relative;
}

.ns-image-wrapper {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	z-index: 2;
}

.ns-image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 4/5;
	transition: transform 0.5s ease;
}

.ns-image-wrapper:hover img {
	transform: scale(1.03);
}

.ns-image-backdrop {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(31,163,164,0.2) 0%, rgba(31,157,57,0.2) 100%);
	border-radius: 24px;
	z-index: 1;
	transform: translate(-20px, 20px);
}

/* --- Pilares Section --- */
.ns-nosotros-pilares {
	padding: 6rem 0;
}

.ns-pilares-header {
	text-align: center;
	margin-bottom: 4rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.ns-pilares-header h2 {
	font-size: 2.2rem;
	font-weight: 800;
	color: #0F172A;
	margin-bottom: 1rem;
}

.ns-pilares-header p {
	font-size: 1.15rem;
	color: #64748B;
}

.ns-pilares-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.ns-pilar-card {
	background: #FFFFFF;
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ns-pilar-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.ns-pilar-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.ns-pilar-card h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #0F172A;
	margin-bottom: 1rem;
}

.ns-pilar-card p {
	color: #475569;
	line-height: 1.7;
	font-size: 1.05rem;
}

/* --- Responsive --- */
@media (max-width: 992px) {
	.ns-nosotros-hero-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.ns-nosotros-hero-content .ns-title {
		font-size: 2.4rem;
	}

	.ns-nosotros-hero-image {
		order: -1;
		max-width: 600px;
		margin: 0 auto;
	}

	.ns-pilares-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

@media (max-width: 576px) {
	.ns-nosotros-hero {
		padding: 3rem 0;
	}

	.ns-nosotros-hero-content .ns-title {
		font-size: 2rem;
	}

	.ns-nosotros-actions {
		flex-direction: column;
	}
	
	.ns-btn-primary, .ns-btn-outline {
		width: 100%;
	}
	
	.ns-image-backdrop {
		display: none;
	}
	
	.ns-image-wrapper img {
		aspect-ratio: 1/1;
	}

	.ns-nosotros-pilares {
		padding: 4rem 0;
	}
}

/* --- Disclaimer Section --- */
.ns-nosotros-disclaimer {
	padding: 0 0 5rem 0;
}

.ns-disclaimer-box {
	background-color: #FEF2F2;
	border: 1px solid #FECACA;
	border-left: 5px solid #EF4444;
	padding: 2rem;
	border-radius: 8px;
	color: #7F1D1D;
}

.ns-disclaimer-box h4 {
	font-size: 1.25rem;
	font-weight: 800;
	margin-bottom: 0.75rem;
	color: #991B1B;
}

.ns-disclaimer-box p {
	font-size: 0.95rem;
	line-height: 1.7;
	margin: 0;
}

.ns-disclaimer-box strong {
	color: #7F1D1D;
	font-weight: 800;
}
