/* ═══════════════════════════════════════════════════════════
   Sobre Nosotros — Royal Chic Lingerie
   Depende de: royal-chic.css (variables globales)
   ═══════════════════════════════════════════════════════════ */

/* ── BREADCRUMB ─────────────────────────────────────────── */
.rc-breadcrumb {
	background: var(--rc-cream);
	border-top: 1px solid var(--rc-cream-border);
	border-bottom: 1px solid var(--rc-cream-border);
	padding: 16px 60px;
}
.rc-breadcrumb-inner {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--rc-muted);
}
.rc-breadcrumb a {
	color: var(--rc-muted);
	text-decoration: none;
	transition: color 0.2s;
}
.rc-breadcrumb a:hover {
	color: var(--rc-gold);
}
.rc-bc-sep {
	color: var(--rc-cream-border);
}
.rc-bc-current {
	color: var(--rc-ink);
}

/* ── HERO ───────────────────────────────────────────────── */
.nos-hero {
	background: var(--rc-cream-dk);
	padding: 80px 60px 72px;
	border-bottom: 1px solid var(--rc-cream-border);
	position: relative;
	overflow: hidden;
}
.nos-hero::before {
	content: "♀";
	font-family: "Playfair Display", serif;
	font-size: 380px;
	color: rgba(184, 150, 90, 0.055);
	line-height: 1;
	pointer-events: none;
	position: absolute;
	top: -80px;
	right: 0%;
	font-style: italic;
	transform: rotate(-5deg);
}
.nos-hero-inner {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.nos-hero .rc-eyebrow {
	color: var(--rc-gold);
	margin-bottom: 16px;
}
.nos-hero h1 {
	font-family: "Playfair Display", serif;
	font-size: 56px;
	font-weight: 400;
	line-height: 1.1;
	margin-bottom: 20px;
	max-width: 700px;
	color: var(--rc-ink);
}
.nos-hero h1 em {
	font-style: italic;
	color: var(--rc-gold);
}
.nos-hero-sub {
	font-size: 15px;
	line-height: 1.85;
	color: #5c5750;
	max-width: 560px;
	margin-bottom: 0;
}

/* Stats bar */
.nos-hero-stats {
	display: flex;
	gap: 48px;
	flex-wrap: wrap;
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--rc-cream-border);
	/* max-width: 640px; */
}
.nos-stat {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.nos-stat-num {
	font-family: "Playfair Display", serif;
	font-size: 32px;
	font-weight: 400;
	color: var(--rc-ink);
	line-height: 1;
}
.nos-stat-num em {
	font-style: italic;
	color: var(--rc-gold);
	font-size: 22px;
}
.nos-stat-lbl {
	font-size: var(--rc-fs-btn);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--rc-muted);
}

/* ── MAIN LAYOUT ────────────────────────────────────────── */
.nos-main {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 64px;
	padding: 72px 60px 80px;
	max-width: 1400px;
	margin: 0 auto;
	align-items: start;
	background: var(--rc-cream);
}

/* ── TOC SIDEBAR ────────────────────────────────────────── */
.nos-toc {
	position: sticky;
	top: 90px;
	border-right: 1px solid var(--rc-cream-border);
	padding-right: 28px;
}
.nos-toc-label {
	font-size: var(--rc-fs-tag);
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--rc-gold);
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--rc-cream-border);
}
.nos-toc ol {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: toc;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.nos-toc ol a {
	display: flex;
	gap: 12px;
	padding: 10px 14px;
	font-size: 12px;
	color: var(--rc-ink);
	text-decoration: none;
	border-left: 2px solid transparent;
	line-height: 1.4;
	transition: all 0.2s;
	counter-increment: toc;
	align-items: baseline;
}
.nos-toc ol a::before {
	content: counter(toc, decimal-leading-zero);
	font-family: "Playfair Display", serif;
	font-style: italic;
	color: var(--rc-cream-border);
	font-size: var(--rc-fs-reading);
	flex-shrink: 0;
	transition: color 0.2s;
}
.nos-toc ol a:hover {
	color: var(--rc-gold);
	background: rgba(184, 150, 90, 0.03);
}
.nos-toc ol a:hover::before {
	color: var(--rc-gold);
}
.nos-toc ol a.active {
	color: var(--rc-ink);
	border-left-color: var(--rc-gold);
	font-weight: 500;
	background: rgba(184, 150, 90, 0.05);
}
.nos-toc ol a.active::before {
	color: var(--rc-gold);
}

.nos-toc-progress {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--rc-cream-border);
	font-size: var(--rc-fs-btn);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--rc-muted);
}
.nos-toc-bar {
	height: 3px;
	background: var(--rc-cream-border);
	margin-top: 10px;
	position: relative;
	overflow: hidden;
}
.nos-toc-bar-fill {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background: var(--rc-gold);
	width: 0%;
	transition: width 0.15s;
}

/* TOC CTA */
.nos-toc-cta {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--rc-cream-border);
	font-size: 12px;
	line-height: 1.6;
	color: var(--rc-muted);
}
.nos-toc-cta p {
	margin-bottom: 0;
}

/* ── CONTENT ────────────────────────────────────────────── */
.nos-content {
	min-width: 0;
	max-width: 780px;
}

/* Intro drop-cap */
.nos-intro {
	font-size: 15px;
	line-height: 1.95;
	color: #3c3a35;
	margin-bottom: 52px;
	padding-bottom: 36px;
	border-bottom: 1px solid var(--rc-cream-border);
	font-family: "Playfair Display", serif;
	font-style: italic;
}
.nos-intro::first-letter {
	font-size: 54px;
	float: left;
	line-height: 0.9;
	padding: 6px 14px 0 0;
	color: var(--rc-gold);
	font-family: "Playfair Display", serif;
	font-weight: 400;
	font-style: normal;
}
.nos-intro strong {
	font-style: normal;
	color: var(--rc-ink);
}
.nos-intro em {
	color: var(--rc-gold);
	font-style: italic;
}

/* ── SECTIONS ───────────────────────────────────────────── */
.nos-section {
	margin-bottom: 56px;
	scroll-margin-top: 100px;
}
.nos-section-head {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 22px;
}
.nos-section-num {
	font-family: "Playfair Display", serif;
	font-size: 44px;
	color: var(--rc-gold);
	line-height: 0.9;
	font-style: italic;
	flex-shrink: 0;
	width: 72px;
	opacity: 0.3;
}
.nos-section-title {
	font-family: "Playfair Display", serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 1.2;
	padding-top: 6px;
	color: var(--rc-ink);
}
.nos-section-title em {
	font-style: italic;
	color: var(--rc-gold);
}

.nos-body {
	padding-left: 92px;
	font-size: 14px;
	line-height: 1.95;
	color: #3c3a35;
}
.nos-body p {
	margin-bottom: 14px;
}
.nos-body p:last-child {
	margin-bottom: 0;
}
.nos-body strong {
	color: var(--rc-ink);
	font-weight: 500;
}
.nos-body a {
	color: var(--rc-gold);
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-color: rgba(184, 150, 90, 0.4);
}
.nos-body a:hover {
	text-decoration-color: var(--rc-gold);
}

/* Callout */
.nos-callout {
	background: var(--rc-cream-dk);
	border-left: 2px solid var(--rc-gold);
	padding: 16px 20px;
	margin: 20px 0;
	font-size: var(--rc-fs-reading);
	line-height: 1.85;
	color: #3c3a35;
}
.nos-callout b {
	color: var(--rc-ink);
	font-weight: 500;
}

/* Quote */
.nos-quote {
	margin: 24px 0;
	padding: 24px 28px;
	border-left: 2px solid var(--rc-gold);
	background: rgba(184, 150, 90, 0.04);
}
.nos-quote p {
	font-family: "Playfair Display", serif;
	font-size: 17px;
	font-style: italic;
	line-height: 1.75;
	color: var(--rc-ink);
	margin: 0;
}
.nos-quote p strong {
	font-style: normal;
	color: var(--rc-gold);
}

/* Timeline */
.nos-timeline {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 24px 0;
}
.nos-timeline-item {
	display: flex;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid var(--rc-cream-border);
	position: relative;
}
.nos-timeline-item:last-child {
	border-bottom: none;
}
.nos-timeline-dot {
	width: 10px;
	height: 10px;
	background: var(--rc-gold);
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 5px;
	position: relative;
}
.nos-timeline-dot::before {
	content: "";
	position: absolute;
	top: 18px;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: calc(100% + 20px);
	background: var(--rc-cream-border);
}
.nos-timeline-item:last-child .nos-timeline-dot::before {
	display: none;
}
.nos-timeline-label {
	display: block;
	font-size: var(--rc-fs-btn);
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--rc-gold);
	font-weight: 500;
	margin-bottom: 6px;
}
.nos-timeline-text p {
	font-size: var(--rc-fs-reading);
	line-height: 1.75;
	color: #4a4640;
	margin: 0;
}

/* Divider */
.nos-divider {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 40px 0 36px;
}
.nos-divider::before,
.nos-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--rc-cream-border);
}
.nos-divider span {
	font-family: "Playfair Display", serif;
	font-style: italic;
	color: var(--rc-gold);
	font-size: 14px;
}

/* Values */
.nos-values {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 10px 0;
	list-style: none;
	padding: 0;
}
.nos-value {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 20px 0;
	border-bottom: 1px solid var(--rc-cream-border);
	transition: background 0.15s;
}
.nos-value:last-child {
	border-bottom: none;
}
.nos-value:hover {
	background: rgba(184, 150, 90, 0.02);
}
.nos-value-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border: 1px solid var(--rc-cream-border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s;
}
.nos-value:hover .nos-value-icon {
	border-color: var(--rc-gold);
}
.nos-value-icon svg {
	width: 16px;
	height: 16px;
	stroke: var(--rc-gold);
	fill: none;
	stroke-width: 1.4;
}
.nos-value-title {
	font-size: 11px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--rc-ink);
	font-weight: 500;
	margin-top: 0;
	margin-bottom: 6px;
}
.nos-value p {
	font-size: var(--rc-fs-reading);
	line-height: 1.75;
	color: #4a4640;
	margin: 0;
}
.nos-value a {
	color: var(--rc-gold);
}

/* Reasons */
.nos-reasons {
	display: flex;
	flex-direction: column;
	gap: 0;
	list-style: none;
	padding: 0;
	margin: 16px 0 20px;
}
.nos-reason {
	display: flex;
	align-items: baseline;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid var(--rc-cream-border);
	font-size: 13.5px;
	color: #3c3a35;
	line-height: 1.6;
}
.nos-reason:last-child {
	border-bottom: none;
}
.nos-reason-num {
	font-family: "Playfair Display", serif;
	font-size: 18px;
	font-style: italic;
	color: var(--rc-gold);
	flex-shrink: 0;
	min-width: 24px;
	opacity: 0.7;
}

/* CTA final */
.nos-cta-final {
	margin-top: 64px;
	padding: 44px;
	background: var(--rc-ink);
	color: var(--rc-cream);
	border-left: 3px solid var(--rc-gold);
	text-align: left;
}
.nos-cta-final h3 {
	font-family: "Playfair Display", serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 1.25;
	margin-bottom: 12px;
	color: var(--rc-cream);
}
.nos-cta-final h3 em {
	font-style: italic;
	color: var(--rc-gold);
}
.nos-cta-final p {
	font-size: 13.5px;
	color: #a09880;
	line-height: 1.8;
	margin-bottom: 0;
}
.nos-cta-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Botones (declarados por si rc-main no se carga antes) */
.btn-dark {
	display: inline-block;
	background: var(--rc-gold);
	color: #fff;
	padding: 14px 30px;
	font-size: var(--rc-fs-btn);
	letter-spacing: 3px;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	transition: background 0.25s;
	text-decoration: none;
	font-family: "Inter", sans-serif;
	font-weight: 500;
}
.btn-dark:hover {
	background: var(--rc-gold-lt);
	color: #fff;
}
.btn-outline-gold {
	display: inline-block;
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: var(--rc-cream);
	padding: 13px 30px;
	font-size: var(--rc-fs-btn);
	letter-spacing: 3px;
	text-transform: uppercase;
	background: none;
	cursor: pointer;
	transition: all 0.25s;
	text-decoration: none;
	font-family: "Inter", sans-serif;
	font-weight: 500;
}
.btn-outline-gold:hover {
	border-color: var(--rc-gold);
	color: var(--rc-gold);
}

/* ── BACK TO TOP ────────────────────────────────────────── */
.nos-back-top {
	position: fixed;
	bottom: 28px;
	right: 28px;
	width: 44px;
	height: 44px;
	background: var(--rc-ink);
	color: var(--rc-gold-lt);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 400;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.25s;
	border-radius: 50%;
}
.nos-back-top.show {
	opacity: 1;
	transform: translateY(0);
}
.nos-back-top:hover {
	background: var(--rc-gold);
	color: #fff;
}
.nos-back-top svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1000px) {
	.nos-main {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 48px 28px 56px;
	}
	.nos-content {
		max-width: 100%;
	}
	.nos-toc {
		position: static;
		border-right: none;
		padding-right: 0;
		padding-bottom: 20px;
		border-bottom: 1px solid var(--rc-cream-border);
		overflow-x: auto;
	}
	.nos-toc ol {
		flex-direction: row;
		overflow-x: auto;
		gap: 0;
		padding-bottom: 6px;
		flex-wrap: nowrap;
		scroll-snap-type: x proximity;
		-webkit-overflow-scrolling: touch;
	}
	.nos-toc ol a {
		border-left: none;
		border-bottom: 2px solid transparent;
		padding: 8px 14px;
		white-space: nowrap;
		flex-shrink: 0;
		font-size: 11px;
		scroll-snap-align: start;
	}
	.nos-toc ol a::before {
		display: none;
	}
	.nos-toc ol a:hover,
	.nos-toc ol a.active {
		border-left-color: transparent;
		border-bottom-color: var(--rc-gold);
		background: none;
	}
	.nos-toc-progress,
	.nos-toc-cta {
		display: none;
	}
	.nos-body {
		padding-left: 0;
		word-break: break-word;
	}
	.nos-section-num {
		font-size: 32px;
		width: 52px;
	}
	.nos-section-title {
		font-size: 22px;
	}
}
@media (max-width: 900px) {
	.nos-hero {
		padding: 56px 28px 48px;
	}
	.nos-hero h1 {
		font-size: 40px;
	}
	.nos-hero::before {
		font-size: 240px;
		top: -40px;
	}
	.rc-breadcrumb {
		padding: 14px 20px;
	}
	.nos-hero-stats {
		gap: 28px;
	}
	.nos-cta-actions {
		flex-direction: column;
		align-items: stretch;
	}
	.nos-cta-actions a {
		width: 100%;
		text-align: center;
	}
}
@media (max-width: 480px) {
	.nos-hero h1 {
		font-size: 30px;
	}
	.nos-hero-stats {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.nos-intro {
		font-size: 13.5px;
	}
	.nos-intro::first-letter {
		font-size: 40px;
	}
	.nos-section-title {
		font-size: 20px;
	}
	.nos-cta-final {
		padding: 28px 20px;
	}
	.nos-cta-final h3 {
		font-size: 22px;
	}
}

/* ── PRINT ──────────────────────────────────────────────── */
@media print {
	.nos-toc,
	.nos-back-top {
		display: none !important;
	}
	.nos-main {
		grid-template-columns: 1fr;
		padding: 0;
	}
	.nos-hero {
		padding: 32px 0;
		background: #fff;
	}
	.nos-hero::before {
		display: none;
	}
	.nos-body {
		padding-left: 64px;
	}
	.nos-section {
		page-break-inside: avoid;
	}
	.nos-cta-final {
		background: #f5f5f5;
		color: var(--rc-ink);
		border-left: 2px solid #999;
	}
}
