/* ==========================================================================
   NOSCASAMOS.MX — Nosotros Section Styles
   Used by: sectionNosotros() in nosotrosUi.php
   ========================================================================== */

/* Team cards */
.ns-team-card {
	background: var(--white);
	border-radius: 24px;
	padding: 45px 30px;
	border: 1px solid rgba(0,0,0,0.04);
	box-shadow: 0 10px 40px rgba(0,0,0,0.04);
	transition: all 0.4s ease;
	text-align: center;
	height: 100%;
}
.ns-team-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(166, 128, 124, 0.1);
}
.ns-team-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--rose-light), var(--champagne-light));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.2rem;
	color: var(--rose-dark);
	margin: 0 auto 18px;
	border: 3px solid rgba(0,0,0,0.04);
}
.ns-team-card h4 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--text);
	margin: 0 0 4px;
}
.ns-team-name {
	font-size: 0.7rem;
	color: var(--rose-dark);
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 15px;
}
.ns-team-bio {
	font-size: 0.9rem;
	color: var(--text-light);
	line-height: 1.7;
	font-weight: 300;
	margin: 0;
}

/* Story card */
.ns-story-card {
	background: var(--white);
	border-radius: 24px;
	padding: 50px 40px;
	border: 1px solid rgba(0,0,0,0.04);
	box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.ns-story-card p {
	font-size: 1.05rem;
	line-height: 1.9;
	font-weight: 300;
	color: var(--text);
	margin: 0 0 20px;
}
.ns-story-card p:last-child {
	margin-bottom: 0;
}

/* Values */
.ns-value-item {
	text-align: center;
	padding: 20px 10px;
}
.ns-value-icon {
	width: 64px; height: 64px;
	margin: 0 auto 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--rose-light), var(--champagne-light));
	border-radius: 18px;
	transition: all 0.4s ease;
}
.ns-value-icon i {
	font-size: 1.4rem;
	color: var(--rose-dark);
}
.ns-value-item:hover .ns-value-icon {
	transform: scale(1.1) rotate(3deg);
	box-shadow: 0 8px 25px rgba(166, 128, 124, 0.2);
}
.ns-value-item h6 {
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
	color: var(--text);
	margin-bottom: 6px;
}
.ns-value-item p {
	font-size: 0.85rem;
	color: var(--text-light);
	font-weight: 300;
	line-height: 1.5;
}

/* Responsive */
@media (max-width: 767px) {
	.ns-team-card { padding: 30px 20px; }
	.ns-team-avatar { width: 80px; height: 80px; font-size: 1.8rem; }
	.ns-story-card { padding: 30px 25px; }
}
