@charset "utf-8";

@font-face { font-family: 'MuseoSans'; src: url('fonts/MuseoSans_300.woff') format('woff'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'MuseoSans'; src: url('fonts/MuseoSans_700.woff') format('woff'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'MuseoSans'; src: url('fonts/MuseoSans-900.woff') format('woff'); font-weight: 900; font-display: swap; }

/* ============================================================
   Carlos Laguna — Landing 2026
   Diseño destilado de _design/landing-redesign-source
   Namespace .lg- (convive con Bootstrap 3 que carga el core)
   ============================================================ */

:root {
	--lg-accent: #4A1BD8;
	--lg-accent2: #E4FF00;
	--lg-bg: #FFFFFF;
	--lg-paper: #E4FF00;
	--lg-ink: #2B2B2B;
	--lg-ink-soft: rgba(18, 16, 14, .72);
	--lg-ink-mute: rgba(18, 16, 14, .6);
	--lg-dark: #4A1BD8;
	--lg-footer: #3A15AC;
	--lg-light: #FFFFFF;
	--lg-light-soft: rgba(246, 242, 235, .75);
	--lg-font: 'Open Sans', system-ui, sans-serif;
	--lg-mono: 'MuseoSans', sans-serif;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--lg-font);
	background: var(--lg-bg);
	color: var(--lg-ink);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body, td, th, input, select, textarea, p, h1, h2, h3, h4, h5, h6, a, li {
	font-family: var(--lg-font);
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--lg-accent); }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
::selection { background: var(--lg-accent); color: #fff; }

@keyframes lg-marquee { to { transform: translateX(-50%); } }
@keyframes lg-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-26px); }
}

.lg-container { width: min(1240px, 92vw); margin: 0 auto; }

.lg-kicker {
	font-family: var(--lg-mono);
	font-size: 13px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--lg-accent);
	font-weight: 700;
}

.lg-h1 {
	font-size: clamp(46px, 8.6vw, 120px);
	font-weight: 900;
	line-height: .9;
	letter-spacing: -.035em;
	margin: 20px 0 0;
	color: var(--lg-ink);
}

.lg-h2 {
	font-size: clamp(34px, 5.4vw, 68px);
	font-weight: 900;
	letter-spacing: -.025em;
	line-height: .98;
	margin: 14px 0 0;
	color: var(--lg-ink);
}

.lg-h2--mid { font-size: clamp(32px, 4.8vw, 60px); line-height: 1; }

.lg-intro {
	margin: 18px 0 0;
	font-size: clamp(16px, 1.2vw, 19px);
	line-height: 1.6;
	color: var(--lg-ink-soft);
	max-width: 620px;
}

.lg-section { padding: clamp(64px, 9vw, 130px) 0; scroll-margin-top: 84px; }
.lg-section--paper { background: var(--lg-paper); }
.lg-section--dark { background: var(--lg-dark); color: var(--lg-light); }
.lg-section--dark .lg-h2, .lg-section--dark .lg-h2--mid { color: var(--lg-light); }
.lg-section-head { max-width: 760px; }

/* ---------- Botones ---------- */
.lg-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 16px;
	padding: 16px 28px;
	border-radius: 999px;
	transition: transform .2s, box-shadow .2s, border-color .2s, background .2s, color .2s;
	cursor: pointer;
	line-height: 1.2;
}

.lg-btn--primary {
	background: var(--lg-accent);
	color: #fff;
	border: 2px solid var(--lg-accent);
}
.lg-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(255, 74, 28, .34);
	color: #fff;
}

.lg-btn--ghost {
	background: transparent;
	color: var(--lg-ink);
	border: 2px solid rgba(18, 16, 14, .2);
}
.lg-btn--ghost:hover { border-color: var(--lg-accent); transform: translateY(-2px); color: var(--lg-ink); }

.lg-btn--ghost-light {
	background: transparent;
	color: var(--lg-light);
	border: 2px solid rgba(246, 242, 235, .28);
}
.lg-btn--ghost-light:hover { border-color: var(--lg-accent); transform: translateY(-2px); color: var(--lg-light); }

.lg-btn--dark {
	background: var(--lg-ink);
	color: var(--lg-light);
	border: 2px solid var(--lg-ink);
	font-size: 15px;
	padding: 14px 24px;
}
.lg-btn--dark:hover { transform: translateY(-2px); background: var(--lg-accent); border-color: var(--lg-accent); color: #fff; }

.lg-btn--white {
	background: #fff;
	color: var(--lg-ink);
	border: 2px solid #fff;
}
.lg-btn--white:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0, 0, 0, .22); color: var(--lg-ink); }

.lg-link-underline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 15px;
	color: var(--lg-ink);
	border-bottom: 2px solid var(--lg-accent);
	padding-bottom: 3px;
}
.lg-link-underline:hover { color: var(--lg-accent); }

/* ---------- Header ---------- */
.lg-header {
	position: sticky;
	top: 0;
	z-index: 50;
	transition: background .3s, box-shadow .3s, border-color .3s;
	border-bottom: 1px solid transparent;
	background: transparent;
}

.lg-header.is-scrolled {
	background: rgba(246, 242, 235, .88);
	-webkit-backdrop-filter: saturate(160%) blur(12px);
	backdrop-filter: saturate(160%) blur(12px);
	box-shadow: 0 1px 0 rgba(18, 16, 14, .08);
	border-bottom-color: rgba(18, 16, 14, .08);
}

.lg-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 76px;
}

.lg-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 900;
	font-size: 19px;
	letter-spacing: -.02em;
	color: var(--lg-ink);
}
.lg-brand:hover { color: var(--lg-ink); }

.lg-brand-badge {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--lg-accent);
	display: grid;
	place-items: center;
	color: #fff;
	font-family: var(--lg-mono);
	font-weight: 700;
	font-size: 15px;
	flex: none;
}

.lg-nav {
	display: flex;
	gap: 30px;
	font-weight: 600;
	font-size: 15px;
	align-items: center;
}

.lg-header-actions { display: flex; align-items: center; gap: 12px; }

.lg-btn--nav-cta {
	background: var(--lg-accent);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	padding: 11px 20px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: transform .2s, box-shadow .2s;
}
.lg-btn--nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(255, 74, 28, .34);
	color: #fff;
}

.lg-burger {
	display: none;
	align-items: center;
	gap: 8px;
	background: var(--lg-ink);
	color: var(--lg-light);
	border: none;
	font-weight: 700;
	font-size: 14px;
	padding: 11px 18px;
	border-radius: 999px;
	cursor: pointer;
}

@media (max-width: 900px) {
	.lg-desknav { display: none !important; }
	.lg-burger { display: inline-flex !important; }
}

/* ---------- Menú móvil overlay ---------- */
.lg-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: var(--lg-dark);
	color: var(--lg-light);
	display: none;
	flex-direction: column;
	padding: 26px;
}
.lg-mobile-menu.is-open { display: flex; }

.lg-mobile-menu-top { display: flex; justify-content: space-between; align-items: center; }
.lg-mobile-menu-brand { font-weight: 900; font-size: 19px; letter-spacing: -.02em; }

.lg-mobile-menu-close {
	background: none;
	border: 1px solid rgba(246, 242, 235, .3);
	color: var(--lg-light);
	font-weight: 700;
	padding: 9px 16px;
	border-radius: 999px;
	cursor: pointer;
}

.lg-mobile-nav {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 44px;
	font-size: clamp(30px, 9vw, 44px);
	font-weight: 900;
	letter-spacing: -.02em;
}
.lg-mobile-nav a { color: var(--lg-light); }
.lg-mobile-nav a:hover { color: var(--lg-accent); }

.lg-mobile-menu .lg-btn { margin-top: auto; justify-content: center; }

body.lg-menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.lg-hero {
	position: relative;
	padding: clamp(72px, 11vw, 140px) 0 clamp(48px, 7vw, 90px);
	overflow: hidden;
}

.lg-hero-blob {
	position: absolute;
	border-radius: 50%;
	z-index: 0;
}
.lg-hero-blob--1 {
	top: -160px;
	right: -160px;
	width: min(600px, 62vw);
	height: min(600px, 62vw);
	background: var(--lg-accent);
	opacity: .13;
	filter: blur(4px);
	animation: lg-float 9s ease-in-out infinite;
}
.lg-hero-blob--2 {
	bottom: 20px;
	left: -70px;
	width: 220px;
	height: 220px;
	background: var(--lg-accent2);
	opacity: .5;
	filter: blur(2px);
	animation: lg-float 7s ease-in-out infinite;
}

.lg-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}

.lg-accent { color: var(--lg-accent); }

.lg-underline-mark { position: relative; white-space: nowrap; }
.lg-underline-mark i {
	position: absolute;
	left: -4px;
	right: -4px;
	bottom: .05em;
	height: .18em;
	background: var(--lg-accent2);
	border-radius: 3px;
}
.lg-underline-mark span { position: relative; font-style: normal; }

.lg-hero-copy {
	max-width: 540px;
	margin: 26px 0 0;
	font-size: clamp(17px, 1.35vw, 20px);
	line-height: 1.6;
	color: var(--lg-ink-soft);
}

.lg-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.lg-hero-chips {
	margin-top: 34px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	font-family: var(--lg-mono);
	font-size: 13px;
	letter-spacing: .02em;
	color: var(--lg-ink-mute);
	align-items: center;
}
.lg-hero-chips .lg-diamond { color: var(--lg-accent); }

.lg-hero-photo { position: relative; }
.lg-hero-photo-img {
	aspect-ratio: 4 / 5;
	border-radius: 22px;
	background-color: #dcd5c8;
	background-size: cover;
	background-position: center;
	box-shadow: 0 40px 80px rgba(18, 16, 14, .22);
}
.lg-hero-sticker {
	position: absolute;
	left: -14px;
	bottom: 26px;
	transform: rotate(-6deg);
	background: var(--lg-accent2);
	color: var(--lg-ink);
	font-family: var(--lg-mono);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .04em;
	padding: 11px 16px;
	border-radius: 9px;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
}

/* ---------- Marquees ---------- */
.lg-marquee-band {
	background: var(--lg-dark);
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, .06);
}

.lg-marquee {
	display: flex;
	width: max-content;
	animation: lg-marquee 30s linear infinite;
	padding: 16px 0;
}
.lg-marquee--slow { animation-duration: 40s; padding: 0; }
.lg-marquee--reverse { animation-direction: reverse; animation-duration: 46s; }

.lg-marquee-group {
	display: flex;
	align-items: center;
	gap: 34px;
	padding-right: 34px;
}

.lg-marquee-item {
	font-family: var(--lg-mono);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .18em;
	color: var(--lg-light);
	white-space: nowrap;
	text-transform: uppercase;
}

.lg-diamond { color: var(--lg-accent); flex: none; }
.lg-diamond--alt { color: var(--lg-accent2); }

/* Marcas (marquee grande) */
.lg-brands-marquee { overflow: hidden; }
.lg-brands-marquee .lg-marquee-group { gap: 40px; padding-right: 40px; }
.lg-brand-name {
	font-weight: 800;
	font-size: clamp(24px, 2.8vw, 40px);
	opacity: .9;
	white-space: nowrap;
	color: var(--lg-light);
}
.lg-marquee--reverse .lg-brand-name { opacity: .55; }
.lg-brands-marquee + .lg-brands-marquee { margin-top: 26px; }

/* ---------- Grids de cards ---------- */
.lg-grid {
	margin-top: clamp(32px, 4vw, 56px);
	display: grid;
	gap: 22px;
}
.lg-grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.lg-grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.lg-grid--blog { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.lg-grid--testimonios { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.lg-card {
	display: block;
	color: inherit;
	border: 1px solid rgba(18, 16, 14, .12);
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	transition: transform .25s, box-shadow .25s, border-color .25s;
}
a.lg-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 52px rgba(18, 16, 14, .13);
	border-color: var(--lg-accent);
	color: inherit;
}

.lg-card-media {
	background-color: #e7e1d6;
	background-size: cover;
	background-position: center;
}
.lg-card-media--square { aspect-ratio: 1 / 1; }
.lg-card-media--43 { aspect-ratio: 4 / 3; }
.lg-card-media--video { aspect-ratio: 16 / 9; background-color: #111; position: relative; }
.lg-card-media--wide { aspect-ratio: 16 / 10; }

.lg-card-body { padding: 22px; }

.lg-card-label {
	font-family: var(--lg-mono);
	font-size: 12px;
	letter-spacing: .16em;
	color: var(--lg-accent);
	font-weight: 700;
	text-transform: uppercase;
}

.lg-card-body p {
	margin: 9px 0 0;
	font-size: 15.5px;
	line-height: 1.5;
	color: var(--lg-ink-soft);
}

.lg-card-title {
	margin: 8px 0 0;
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -.01em;
	line-height: 1.25;
	color: var(--lg-ink);
}

.lg-card-date {
	font-family: var(--lg-mono);
	font-size: 12px;
	color: rgba(18, 16, 14, .55);
}

.lg-card-more {
	display: inline-block;
	margin-top: 14px;
	font-weight: 700;
	font-size: 14px;
	border-bottom: 2px solid var(--lg-accent);
	padding-bottom: 2px;
	color: var(--lg-ink);
}

.lg-play {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
}
.lg-play::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .35));
}
.lg-play-btn {
	position: relative;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--lg-accent);
	display: grid;
	place-items: center;
	box-shadow: 0 12px 34px rgba(0, 0, 0, .35);
}
.lg-play-btn::after {
	content: "";
	width: 0;
	height: 0;
	border-left: 15px solid #fff;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	margin-left: 4px;
}
.lg-play-btn--big { width: 72px; height: 72px; }
.lg-play-btn--big::after {
	border-left-width: 20px;
	border-top-width: 12px;
	border-bottom-width: 12px;
	margin-left: 5px;
}

/* ---------- Bio ---------- */
.lg-bio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}

.lg-bio-photo {
	aspect-ratio: 4 / 5;
	border-radius: 22px;
	background-color: #dcd5c8;
	background-size: cover;
	background-position: center;
	box-shadow: 0 34px 70px rgba(18, 16, 14, .2);
}

.lg-bio-text {
	margin: 20px 0 0;
	font-size: clamp(16px, 1.15vw, 18.5px);
	line-height: 1.65;
	color: rgba(18, 16, 14, .76);
}
.lg-bio-text + .lg-bio-text { margin-top: 16px; }

.lg-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }

.lg-chip {
	font-family: var(--lg-mono);
	font-size: 12.5px;
	font-weight: 700;
	padding: 8px 14px;
	border: 1px solid rgba(18, 16, 14, .2);
	border-radius: 999px;
}

.lg-chip--solid {
	background: var(--lg-paper);
	border: none;
	padding: 9px 15px;
}

/* ---------- Cifras ---------- */
.lg-stats-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
}

.lg-stats-note {
	font-family: var(--lg-mono);
	font-size: 12px;
	color: rgba(246, 242, 235, .5);
}

.lg-stats-grid {
	margin-top: clamp(34px, 4vw, 56px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.lg-stat {
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 18px;
	padding: 28px 24px;
}

.lg-stat-num {
	font-size: clamp(44px, 6vw, 80px);
	font-weight: 900;
	letter-spacing: -.03em;
	line-height: 1;
	color: var(--lg-accent);
	overflow-wrap: anywhere;
}

/* Valores largos (ej. +500.000): tamaño reducido para no desbordar la card */
.lg-stat-num--long { font-size: clamp(32px, 4.2vw, 56px); }

.lg-stat-label {
	margin-top: 10px;
	font-family: var(--lg-mono);
	font-size: 12.5px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(246, 242, 235, .66);
}

/* ---------- Eventos ---------- */
.lg-featured-grid {
	margin-top: clamp(28px, 3.5vw, 48px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: clamp(24px, 3vw, 44px);
	align-items: center;
}

.lg-featured-video {
	position: relative;
	display: block;
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background-color: #111;
	background-size: cover;
	background-position: center;
	box-shadow: 0 30px 60px rgba(18, 16, 14, .22);
}

.lg-featured-text {
	font-size: clamp(17px, 1.35vw, 20px);
	line-height: 1.6;
	color: rgba(18, 16, 14, .78);
	margin: 0;
}

.lg-event-chips { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Guía (lead magnet) ---------- */
.lg-guide {
	background: var(--lg-accent);
	border-radius: 26px;
	padding: clamp(30px, 4vw, 56px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
	overflow: hidden;
}

.lg-guide-copy { color: #fff; }

.lg-guide .lg-kicker { color: #fff; opacity: .85; }

.lg-guide-title {
	font-size: clamp(30px, 4.2vw, 54px);
	font-weight: 900;
	letter-spacing: -.025em;
	line-height: 1;
	margin: 14px 0 0;
	color: #fff;
}

.lg-guide-text {
	margin: 18px 0 0;
	font-size: clamp(16px, 1.2vw, 19px);
	line-height: 1.6;
	opacity: .92;
	max-width: 460px;
}

.lg-guide-photo {
	aspect-ratio: 4 / 3;
	border-radius: 16px;
	background-color: #dcd5c8;
	background-size: cover;
	background-position: center;
	box-shadow: 0 30px 60px rgba(0, 0, 0, .28);
}

/* ---------- Testimonios ---------- */
.lg-testimonial {
	border: 1px solid rgba(18, 16, 14, .12);
	border-radius: 20px;
	padding: 28px;
	background: #fff;
}

.lg-testimonial-quote {
	margin: 0;
	font-size: 16.5px;
	line-height: 1.6;
	color: rgba(18, 16, 14, .86);
}

.lg-testimonial-person {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-top: 22px;
}

.lg-avatar {
	position: relative;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	overflow: hidden;
	flex: none;
	background-color: var(--lg-accent);
	background-size: cover;
	background-position: center;
	display: grid;
	place-items: center;
	color: #fff;
	font-family: var(--lg-mono);
	font-weight: 700;
	font-size: 15px;
}

.lg-testimonial-name { font-weight: 800; font-size: 15px; }
.lg-testimonial-org {
	font-family: var(--lg-mono);
	font-size: 12px;
	color: var(--lg-ink-mute);
}

/* ---------- Contacto ---------- */
.lg-contact { text-align: center; }
.lg-contact-inner { width: min(1000px, 92vw); margin: 0 auto; }

.lg-contact-title {
	font-size: clamp(38px, 7vw, 96px);
	font-weight: 900;
	letter-spacing: -.035em;
	line-height: .92;
	margin: 18px 0 0;
	color: var(--lg-light);
}

.lg-contact-text {
	margin: 22px auto 0;
	max-width: 560px;
	font-size: clamp(17px, 1.4vw, 21px);
	line-height: 1.6;
	color: var(--lg-light-soft);
}

.lg-contact-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-top: 36px;
}
.lg-contact-ctas .lg-btn { font-size: 17px; padding: 17px 32px; }

/* ---------- Footer ---------- */
.lg-footer {
	background: var(--lg-footer);
	color: var(--lg-light);
	padding: clamp(48px, 6vw, 80px) 0 40px;
}

.lg-footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 36px;
}

.lg-footer .lg-brand { color: var(--lg-light); }
.lg-footer .lg-brand:hover { color: var(--lg-light); }

.lg-footer-claim {
	margin: 16px 0 0;
	font-size: 14.5px;
	line-height: 1.6;
	color: rgba(246, 242, 235, .6);
	max-width: 280px;
}

.lg-footer-heading {
	font-family: var(--lg-mono);
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: rgba(246, 242, 235, .5);
}

.lg-footer-nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 16px;
	font-size: 15px;
	font-weight: 600;
}
.lg-footer-nav a { color: var(--lg-light); }
.lg-footer-nav a:hover { color: var(--lg-accent); }

.lg-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.lg-social a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(246, 242, 235, .22);
	display: grid;
	place-items: center;
	font-family: var(--lg-mono);
	font-size: 12px;
	font-weight: 700;
	color: var(--lg-light);
	transition: background .2s, color .2s, border-color .2s;
}
.lg-social a:hover {
	background: var(--lg-accent);
	color: #fff;
	border-color: var(--lg-accent);
}

.lg-footer-pdf {
	display: inline-block;
	margin-top: 18px;
	font-size: 14px;
	font-weight: 700;
	border-bottom: 2px solid var(--lg-accent);
	padding-bottom: 2px;
	color: var(--lg-light);
}

.lg-footer-bottom {
	margin-top: clamp(36px, 5vw, 56px);
	padding-top: 24px;
	border-top: 1px solid rgba(246, 242, 235, .12);
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
	font-size: 13px;
	color: rgba(246, 242, 235, .5);
}
.lg-footer-bottom .lg-mono { font-family: var(--lg-mono); }

/* ---------- Botón flotante WhatsApp ---------- */
.lg-floating-wa {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 60;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: var(--lg-accent);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	padding: 14px 22px;
	border-radius: 999px;
	box-shadow: 0 14px 34px rgba(255, 74, 28, .42);
	transition: transform .2s;
}
.lg-floating-wa:hover { transform: translateY(-3px); color: #fff; }
.lg-floating-wa i {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #fff;
}

/* ---------- Reveal ---------- */
[data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
body.lg-no-motion [data-reveal] { opacity: 1; transform: none; transition: none; }

/* ============================================================
   Páginas internas (no-home): wrappers base_paginas / base_modulos
   ============================================================ */
body.no-home { background: var(--lg-bg); }

.site-content {
	width: min(1100px, 92vw);
	margin: 0 auto;
	padding: clamp(32px, 5vw, 64px) 0 clamp(48px, 7vw, 90px);
}

.content-box {
	background: #fff;
	border: 1px solid rgba(18, 16, 14, .1);
	border-radius: 18px;
	padding: clamp(22px, 3vw, 40px);
	margin-bottom: 24px;
}

.content-box-title {
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 900;
	letter-spacing: -.02em;
	color: var(--lg-ink);
	margin: 0 0 18px;
}

.content-area { font-size: 16px; line-height: 1.65; color: var(--lg-ink-soft); }
.content-area img { border-radius: 12px; }
.content-area a { color: var(--lg-accent); font-weight: 600; }

/* Módulos del core con estilo propio (login, etc.): no heredan el naranja de links */
.content-area .pg-login a,
.content-area .pg-login a:hover,
.content-area .pg-login button {
	color: inherit;
	font-weight: inherit;
}

.mod-box {
	background: var(--lg-paper);
	border-radius: 18px;
	padding: 22px;
	margin-bottom: 24px;
}

.mod-box-title {
	font-size: 19px;
	font-weight: 800;
	color: var(--lg-ink);
	margin: 0 0 12px;
}

/* Formularios internos (bootstrap 3 del core) */
.site-content .form-control {
	border-radius: 10px;
	border: 1px solid rgba(18, 16, 14, .18);
	box-shadow: none;
	font-size: 15px;
}
.site-content .form-control:focus {
	border-color: var(--lg-accent);
	box-shadow: 0 0 0 3px rgba(255, 74, 28, .15);
}
.site-content .btn-default {
	background: var(--lg-ink);
	color: var(--lg-light);
	border: none;
	border-radius: 999px;
	font-weight: 700;
	padding: 10px 24px;
}
.site-content .btn-default:hover { background: var(--lg-accent); color: #fff; }

/* Tablas zebra legacy de módulos internos */
.zebra { margin-top: 15px; margin-bottom: 20px; }
.zebra td { border-bottom: 1px solid rgba(18, 16, 14, .08); }
.zebra tr.alt td { background: var(--lg-paper); }
.zebra tr.over td { background: #E2E2E2; }
.zebra tr.title td { background-color: var(--lg-paper); border-bottom: 1px solid rgba(18, 16, 14, .2); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.lg-marquee { animation: none; flex-wrap: wrap; width: auto; }
	.lg-hero-blob--1, .lg-hero-blob--2 { animation: none; }
	[data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ===== Tema lagu (piel carloslagunap.com WP) ===== */
.lg-h1, .lg-h2, .lg-h2--mid, .lg-guide-title, .lg-contact-title, .lg-brand, .lg-card-title { font-family: 'MuseoSans', sans-serif; }
.lg-h2, .lg-h2--mid { color: var(--lg-accent); }
.lg-section--dark .lg-h2, .lg-section--dark .lg-h2--mid { color: var(--lg-light); }
/* Sobre fondo morado (--lg-dark) el acento morado se pierde: pasa a neón */
.lg-section--dark .lg-kicker,
.lg-section--dark .lg-accent,
.lg-section--dark .lg-stat-num,
.lg-section--dark .lg-diamond,
.lg-marquee-band .lg-diamond { color: var(--lg-accent2); }
.lg-header { background: var(--lg-accent2); border-bottom: 3px solid var(--lg-accent); }
.lg-header.is-scrolled { background: var(--lg-accent2); box-shadow: 0 2px 10px rgba(74,27,216,.15); }
.lg-header .lg-nav a { color: var(--lg-accent); font-weight: 700; }
.lg-brand-badge { display: none; }
.lg-brand img { height: 44px; width: auto; }
.lg-section--paper .lg-h2, .lg-section--paper .lg-h2--mid { color: var(--lg-accent); }
.lg-floating-wa { background: #25D366; box-shadow: 0 14px 34px rgba(37,211,102,.4); }
.lg-hero-sticker { background: var(--lg-accent2); }
.lg-underline-mark i { background: var(--lg-accent2); }
