/* ==========================================================================
   NOSCASAMOS.MX — Boda Espiritual Section Styles
   Used by: sectionBodaEspiritual() in bodaespiritualUi.php
   ========================================================================== */

/* Process / Steps */
.nc-steps {
	padding: 110px 0;
	background: var(--champagne-light);
}
.step-item {
	position: relative;
	padding: 0 0 40px 75px;
}
.step-item:last-child { padding-bottom: 0; }
.step-line {
	position: absolute;
	top: 0; bottom: 0;
	left: 30px;
	width: 2px;
	background: linear-gradient(180deg, var(--rose-light), var(--rose), var(--rose-light));
}
.step-number {
	position: absolute;
	left: 14px; top: 0;
	width: 34px; height: 34px;
	border-radius: 50%;
	background: var(--rose-dark);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	font-weight: 500;
	z-index: 2;
}
.step-item h4 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--text);
	margin: 0 0 8px;
}
.step-item p {
	font-size: 0.95rem;
	color: var(--text-light);
	margin: 0;
	line-height: 1.7;
	font-weight: 300;
}

/* Profile */
.ge-profile-card {
	background: var(--white);
	border-radius: 24px;
	padding: 50px;
	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;
}
.ge-profile-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(166, 128, 124, 0.1);
}
.ge-profile-placeholder {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--rose-light), var(--champagne-light));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.5rem;
	color: var(--rose-dark);
	margin: 0 auto;
	border: 4px solid rgba(0,0,0,0.04);
}
.ge-profile-card h3 {
	font-size: 2rem;
	font-weight: 400;
	color: var(--text);
	margin: 20px 0 5px;
}
.ge-profile-role {
	font-size: 0.7rem;
	color: var(--rose-dark);
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 600;
}
.ge-profile-bio {
	font-size: 1rem;
	color: var(--text-light);
	line-height: 1.8;
	max-width: 500px;
	margin: 20px auto 0;
	font-weight: 300;
}
.ge-quote {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: 1.1rem;
	color: var(--rose-dark);
	max-width: 500px;
	margin: 25px auto 0;
	line-height: 1.6;
}

/* Feature cards  */
.nc-section { padding: 110px 0; }

.feature-card {
	padding: 45px 28px;
	border-radius: 20px;
	border: 1px solid rgba(0,0,0,0.04);
	background: var(--white);
	transition: all 0.4s ease;
	height: 100%;
	text-align: center;
}
.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(166, 128, 124, 0.12);
	border-color: var(--rose-light);
}
.feature-icon {
	width: 64px; height: 64px;
	margin: 0 auto 22px;
	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;
}
.feature-card:hover .feature-icon {
	transform: scale(1.1) rotate(3deg);
	box-shadow: 0 8px 25px rgba(166, 128, 124, 0.2);
}
.feature-icon i {
	font-size: 1.4rem;
	color: var(--rose-dark);
}
.feature-card h4 {
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
	font-size: 1.1rem;
	margin-bottom: 10px;
	color: var(--text);
}
.feature-card p {
	font-weight: 300;
	color: var(--text-light);
	font-size: 0.92rem;
	line-height: 1.6;
	margin: 0;
}

/* Values grid */
.value-item {
	text-align: center;
	padding: 20px 10px;
}
.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;
}
.value-icon i {
	font-size: 1.4rem;
	color: var(--rose-dark);
}
.value-item h6 {
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
	color: var(--text);
	margin-bottom: 6px;
}
.value-item p {
	font-size: 0.85rem;
	color: var(--text-light);
	font-weight: 300;
	line-height: 1.5;
}

/* CTA */
.nc-cta {
	padding: 110px 0;
	background: var(--white);
}
.cta-box {
	background: linear-gradient(135deg, var(--champagne-light) 0%, var(--rose-light) 100%);
	border-radius: 24px;
	padding: 70px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.cta-box::before {
	content: '';
	position: absolute;
	width: 400px; height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
	opacity: 0.08;
	top: -30%; right: -10%;
}
.cta-box h2 {
	color: var(--text);
	position: relative;
	z-index: 2;
	margin-bottom: 15px;
}
.cta-box p {
	color: var(--text-light);
	font-size: 1.05rem;
	font-weight: 300;
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
}

/* Responsive */
@media (max-width: 767px) {
	.nc-section, .nc-steps, .nc-cta { padding: 70px 0; }
	.ge-profile-card { padding: 30px 20px; }
	.ge-profile-placeholder { width: 140px; height: 140px; font-size: 2.8rem; }
	.cta-box { padding: 50px 25px; }
}
