/*
 * Oracle Gypsies Campus — sistema visual del campus (regla 2/3/5A).
 * Paleta extraída del logo oficial (navy profundo, hielo/cian, rosa
 * pálido, crema cálido). Glassmorphism moderado, sombras suaves,
 * densidad "streaming premium" — nunca aspecto de wp-admin ni de LMS
 * escolar genérico. El Administrador ajusta textos/imágenes/colores desde
 * Elementor; esta hoja define la base que Elementor no toca.
 */

:root {
	--ogc-navy-950: #05070f;
	--ogc-navy-900: #0b1330;
	--ogc-navy-800: #101b45;
	--ogc-navy-700: #16224f;
	--ogc-blue-600: #1b2c5c;
	--ogc-ice-300: #bfeff5;
	--ogc-ice-400: #8fe0ee;
	--ogc-ice-500: #63c9dd;
	--ogc-pink-200: #f3d9e1;
	--ogc-pink-300: #e9c3ce;
	--ogc-cream-100: #f6efe4;
	--ogc-cream-200: #eee3d2;

	--ogc-success: #7fd8a8;
	--ogc-warning: #f0c96b;
	--ogc-danger: #e98b8b;

	--ogc-radius-lg: 20px;
	--ogc-radius-md: 14px;
	--ogc-radius-sm: 10px;
	--ogc-shadow-card: 0 12px 40px rgba(3, 6, 16, 0.45);
	--ogc-shadow-soft: 0 4px 18px rgba(3, 6, 16, 0.28);
	--ogc-border-glass: 1px solid rgba(191, 239, 245, 0.14);

	--ogc-font-display: 'Cinzel', 'Georgia', serif;
	--ogc-font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/*
 * Respaldo: si la sección/contenedor de Elementor que envuelve los
 * widgets no trae su propio fondo oscuro configurado (el Administrador
 * normalmente lo pone al maquetar en Elementor), que la página igual se
 * vea oscura y no deje huecos blancos entre tarjetas.
 */
body:has(.ogc-card) {
	background: var(--ogc-navy-950);
}

.ogc-root,
.ogc-card {
	font-family: var(--ogc-font-body);
	color: var(--ogc-cream-100);
	box-sizing: border-box;
}

.ogc-card *,
.ogc-card *::before,
.ogc-card *::after {
	box-sizing: border-box;
}

/* ------------------------------------------------------------------ */
/* Tarjeta base                                                        */
/* ------------------------------------------------------------------ */

.ogc-card {
	--ogc-accent: var(--ogc-ice-400);
	position: relative;
	background:
		linear-gradient(155deg, rgba(22, 34, 79, 0.75), rgba(11, 19, 48, 0.92)),
		var(--ogc-navy-900);
	border: var(--ogc-border-glass);
	border-radius: var(--ogc-radius-lg);
	padding: 28px 30px;
	box-shadow: var(--ogc-shadow-card);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	overflow: hidden;
	margin: 0 0 20px;
}

.ogc-card::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle at 85% -10%, rgba(143, 224, 238, 0.16), transparent 55%);
}

.ogc-card h3,
.ogc-card h4 {
	font-family: var(--ogc-font-display);
	font-weight: 600;
	letter-spacing: 0.02em;
	margin: 0 0 12px;
	color: var(--ogc-cream-100);
}

.ogc-card h3 {
	font-size: clamp(1.15rem, 1.6vw, 1.5rem);
}

.ogc-card h4 {
	font-size: 1.05rem;
	color: var(--ogc-ice-300);
}

.ogc-card p {
	margin: 0 0 10px;
	line-height: 1.55;
	color: rgba(246, 239, 228, 0.85);
}

.ogc-card--placeholder {
	border-style: dashed;
	border-color: rgba(233, 195, 206, 0.35);
	color: rgba(246, 239, 228, 0.6);
	font-style: italic;
}

/* ------------------------------------------------------------------ */
/* Hero — Próxima clase                                                */
/* ------------------------------------------------------------------ */

.ogc-card--hero {
	padding: 36px 34px 32px;
	background:
		radial-gradient(circle at 12% 0%, rgba(143, 224, 238, 0.18), transparent 45%),
		radial-gradient(circle at 100% 100%, rgba(233, 195, 206, 0.14), transparent 50%),
		linear-gradient(155deg, rgba(22, 34, 79, 0.85), rgba(5, 7, 15, 0.95));
}

.ogc-hero__title {
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 0.22em;
	color: var(--ogc-ice-300);
	opacity: 0.8;
	margin-bottom: 6px;
}

.ogc-hero__group {
	font-family: var(--ogc-font-display);
	font-size: clamp(1.4rem, 3vw, 2.1rem);
	margin-bottom: 4px;
}

.ogc-hero__datetime {
	color: var(--ogc-cream-200);
	font-size: 0.95rem;
	margin-bottom: 22px;
}

/* ------------------------------------------------------------------ */
/* CTA                                                                  */
/* ------------------------------------------------------------------ */

.ogc-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--ogc-font-body);
	font-weight: 700;
	font-size: 0.92rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 28px;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	color: var(--ogc-navy-950);
	background: linear-gradient(135deg, var(--ogc-ice-300), var(--ogc-ice-500));
	box-shadow: 0 10px 28px rgba(143, 224, 238, 0.28);
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.ogc-cta:hover:not(:disabled) {
	transform: translateY(-1px);
	filter: brightness(1.05);
	box-shadow: 0 14px 34px rgba(143, 224, 238, 0.36);
}

.ogc-cta:active:not(:disabled) {
	transform: translateY(0);
}

.ogc-cta:disabled,
.ogc-cta[disabled] {
	cursor: not-allowed;
	color: rgba(246, 239, 228, 0.55);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: none;
}

.ogc-cta--bloqueado {
	background: rgba(233, 139, 139, 0.16);
	color: var(--ogc-danger);
}

.ogc-cta--pagar {
	background: linear-gradient(135deg, var(--ogc-pink-200), var(--ogc-pink-300));
	color: var(--ogc-navy-950);
	box-shadow: 0 10px 28px rgba(233, 195, 206, 0.24);
}

.ogc-cta--descargar-manual,
.ogc-cta--solicitar-grabacion,
.ogc-cta--justificar-falta {
	background: rgba(191, 239, 245, 0.1);
	color: var(--ogc-ice-300);
	box-shadow: none;
	border: 1px solid rgba(191, 239, 245, 0.3);
}

.ogc-cta--descargar-manual:hover,
.ogc-cta--solicitar-grabacion:hover,
.ogc-cta--justificar-falta:hover {
	background: rgba(191, 239, 245, 0.18);
}

/* ------------------------------------------------------------------ */
/* Estado de pago                                                      */
/* ------------------------------------------------------------------ */

.ogc-payment__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(127, 216, 168, 0.14);
	color: var(--ogc-success);
	margin-bottom: 14px;
}

.ogc-payment--pronto_pago .ogc-payment__label,
.ogc-payment--normal .ogc-payment__label {
	background: rgba(127, 216, 168, 0.14);
	color: var(--ogc-success);
}

.ogc-payment--recargo .ogc-payment__label {
	background: rgba(240, 201, 107, 0.16);
	color: var(--ogc-warning);
}

.ogc-payment--bloqueado .ogc-payment__label,
.ogc-payment--en_revision .ogc-payment__label {
	background: rgba(233, 139, 139, 0.16);
	color: var(--ogc-danger);
}

.ogc-payment__amount {
	font-family: var(--ogc-font-display);
	font-size: 1.6rem;
	margin-bottom: 4px;
}

.ogc-payment__due {
	color: rgba(246, 239, 228, 0.6);
	font-size: 0.85rem;
	margin-bottom: 20px;
}

/* ------------------------------------------------------------------ */
/* Grabaciones / manuales / asistencias — listas                       */
/* ------------------------------------------------------------------ */

.ogc-recordings__credits {
	font-size: 0.95rem;
	color: var(--ogc-ice-300);
}

.ogc-recordings__select {
	width: 100%;
	padding: 12px 14px;
	margin: 10px 0 16px;
	border-radius: var(--ogc-radius-sm);
	border: 1px solid rgba(191, 239, 245, 0.25);
	background: rgba(5, 7, 15, 0.5);
	color: var(--ogc-cream-100);
	font-family: var(--ogc-font-body);
}

.ogc-manuales__list,
.ogc-asistencias__list {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ogc-manuales__list li,
.ogc-asistencias__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 16px;
	border-radius: var(--ogc-radius-sm);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 0.92rem;
}

.ogc-manuales__download {
	color: var(--ogc-ice-300);
	text-decoration: none;
	font-weight: 600;
	white-space: nowrap;
}

.ogc-asistencias__item--presente {
	border-left: 3px solid var(--ogc-success);
}

.ogc-asistencias__item--falta {
	border-left: 3px solid var(--ogc-danger);
}

.ogc-asistencias__item--falta_justificada {
	border-left: 3px solid var(--ogc-ice-400);
}

.ogc-asistencias__warning {
	background: rgba(233, 139, 139, 0.14);
	border: 1px solid rgba(233, 139, 139, 0.35);
	color: var(--ogc-danger);
	padding: 12px 16px;
	border-radius: var(--ogc-radius-sm);
	font-weight: 600;
	font-size: 0.9rem;
}

/* ------------------------------------------------------------------ */
/* Viaje Nórdico                                                       */
/* ------------------------------------------------------------------ */

.ogc-card--viaje-nordico.is-locked {
	filter: saturate(0.6);
}

.ogc-viaje-nordico__locked {
	color: rgba(246, 239, 228, 0.55);
}

.ogc-viaje-nordico__item + .ogc-viaje-nordico__item {
	margin-top: 18px;
	padding-top: 18px;
	border-top: var(--ogc-border-glass);
}

/* ------------------------------------------------------------------ */
/* Aula en vivo                                                        */
/* ------------------------------------------------------------------ */

.ogc-card--aula {
	padding: 0;
	overflow: hidden;
}

.ogc-aula__meet {
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(155deg, var(--ogc-navy-800), var(--ogc-navy-950));
	padding: 24px;
	text-align: center;
}

.ogc-aula__meet--pendiente p {
	max-width: 32em;
	color: rgba(246, 239, 228, 0.7);
}

.ogc-card--aula .ogc-cta {
	margin: 22px 30px 30px;
}

/* ------------------------------------------------------------------ */
/* Avisos — modal secuencial (regla 90-M)                              */
/* ------------------------------------------------------------------ */

.ogc-avisos-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(5, 7, 15, 0.72);
	backdrop-filter: blur(6px);
}

.ogc-avisos-modal[hidden] {
	display: none;
}

.ogc-avisos-modal__box {
	max-width: 420px;
	width: calc(100% - 40px);
	background: linear-gradient(155deg, var(--ogc-navy-800), var(--ogc-navy-950));
	border: var(--ogc-border-glass);
	border-radius: var(--ogc-radius-lg);
	padding: 30px;
	box-shadow: var(--ogc-shadow-card);
	text-align: center;
}

.ogc-avisos-modal__title {
	font-family: var(--ogc-font-display);
	color: var(--ogc-cream-100);
	margin: 0 0 12px;
}

.ogc-avisos-modal__body {
	color: rgba(246, 239, 228, 0.85);
	margin-bottom: 22px;
	line-height: 1.5;
}

.ogc-avisos-modal__close {
	font-family: var(--ogc-font-body);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.85rem;
	padding: 10px 26px;
	border: 1px solid rgba(191, 239, 245, 0.35);
	border-radius: 999px;
	background: transparent;
	color: var(--ogc-ice-300);
	cursor: pointer;
}

/* ------------------------------------------------------------------ */
/* Banner Keymaster                                                    */
/* ------------------------------------------------------------------ */

.ogc-keymaster-banner {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 10px 20px;
	background: linear-gradient(90deg, #5c1b2c, #7a2438);
	color: #fff;
	font-family: var(--ogc-font-body);
	font-size: 0.85rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.ogc-keymaster-banner__stop {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.78rem;
	padding: 6px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.35);
	cursor: pointer;
}

.ogc-keymaster-banner__stop:hover {
	background: rgba(255, 255, 255, 0.26);
}

/* ------------------------------------------------------------------ */
/* Responsive (regla: 390px / 768px / 1024px / 1440px+)                */
/* ------------------------------------------------------------------ */

@media (max-width: 480px) {
	.ogc-card {
		padding: 22px 20px;
		border-radius: var(--ogc-radius-md);
	}

	.ogc-card--hero {
		padding: 26px 22px 24px;
	}

	.ogc-cta {
		width: 100%;
	}

	.ogc-manuales__list li,
	.ogc-asistencias__item {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
}

/* ==================================================================== */
/* HOME PÚBLICA (regla 5A) — misma paleta y tipografía que el campus.    */
/* Elementor pone la clase (_css_classes en widgets, css_classes sin     */
/* guion en contenedores — confirmado leyendo el código fuente de la     */
/* versión instalada) en el DIV envolvente del widget, no en la etiqueta */
/* real (h1/p/a) — de ahí los selectores descendientes de abajo.         */
/* ==================================================================== */

.ogc-home-hero,
.ogc-home-niveles,
.ogc-home-cta,
body:has(.ogc-home-hero) {
	background: var(--ogc-navy-950);
}

/* ==================================================================== */
/* BUG SISTÉMICO RAÍZ (encontrado con getComputedStyle en vivo a 1920px, */
/* explica "se ve vacía en desktop" mejor que ningún ajuste puntual):    */
/* CADA sección de nivel superior envuelve a su único hijo real (la      */
/* "-inner") en el .e-con-inner que Elementor genera automáticamente —   */
/* pero ese wrapper, a diferencia de los que ya se corrigieron para      */
/* flex/grid, trae su PROPIO `max-width: min(100%, 1140px)` por defecto  */
/* de Elementor. Confirmado: forzar width:100% incluso con estilo inline */
/* + !important directamente en .ogc-home-hero-inner NO cambiaba nada,   */
/* porque el límite real estaba en su padre (.e-con-inner), no en él —   */
/* cualquier max-width que se le pusiera a .ogc-*-inner (900/1100/1180/  */
/* 1200/1360px) quedaba sin efecto porque el 100% de esos divs se        */
/* resolvía contra un padre ya limitado a 1140px. Esto afectaba TODAS    */
/* las secciones por igual, no sólo el Hero.                             */
/* ==================================================================== */
.ogc-home-hero > .e-con-inner,
.ogc-home-niveles > .e-con-inner,
.ogc-features > .e-con-inner,
.ogc-split > .e-con-inner,
.ogc-metodo > .e-con-inner,
.ogc-sobre > .e-con-inner,
.ogc-home-cta > .e-con-inner,
.ogc-footer > .e-con-inner {
	max-width: none !important;
	width: 100% !important;
}

.ogc-home-hero {
	position: relative;
	padding: 110px 20px 90px;
	text-align: center;
	background:
		radial-gradient(circle at 20% 15%, rgba(143, 224, 238, 0.14), transparent 45%),
		radial-gradient(circle at 82% 85%, rgba(233, 195, 206, 0.12), transparent 50%),
		var(--ogc-navy-950);
	overflow: hidden;
}

/* .ogc-home-hero is also an Elementor container (e-con), whose own
   ::before (background-overlay feature) matches at equal specificity
   and loads after campus.css — forced here so it isn't silently blanked. */
.ogc-home-hero::before {
	content: '' !important;
	position: absolute !important;
	inset: 0 !important;
	background-image: radial-gradient(rgba(191, 239, 245, 0.35) 1px, transparent 1px) !important;
	background-size: 46px 46px !important;
	opacity: 0.12 !important;
	pointer-events: none !important;
}

.ogc-home-eyebrow p {
	font-family: var(--ogc-font-body) !important;
	font-size: 0.78rem !important;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: var(--ogc-ice-300) !important;
	opacity: 0.75;
	margin: 0 0 18px !important;
}

.ogc-home-title,
.ogc-home-title .elementor-heading-title {
	font-family: var(--ogc-font-display) !important;
	font-size: clamp(2.6rem, 7vw, 5rem) !important;
	font-weight: 600 !important;
	letter-spacing: 0.04em;
	color: var(--ogc-cream-100) !important;
	margin: 0 0 14px !important;
	line-height: 1.1 !important;
	text-shadow: 0 0 40px rgba(143, 224, 238, 0.25);
}

.ogc-home-subtitle,
.ogc-home-subtitle .elementor-heading-title {
	font-family: var(--ogc-font-body) !important;
	font-size: clamp(0.85rem, 1.6vw, 1.05rem) !important;
	font-weight: 600 !important;
	letter-spacing: 0.32em !important;
	text-transform: uppercase;
	color: var(--ogc-ice-400) !important;
	margin: 0 0 34px !important;
}

.ogc-home-intro {
	max-width: 42em;
	margin: 0 auto 40px;
}

.ogc-home-intro p {
	margin: 0;
	color: rgba(246, 239, 228, 0.78) !important;
	font-size: 1.05rem !important;
	line-height: 1.7 !important;
}

/* Elementor wraps a container's real children in its own .e-con-inner —
   the flex/grid rules below must target that wrapper, confirmed live:
   without this, every one of these rows was stacking as a vertical
   column instead of laying out side by side on desktop. */
.ogc-home-hero-actions > .e-con-inner {
	display: flex !important;
	flex-direction: row !important;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.ogc-home-hero-actions {
	position: relative;
	z-index: 1;
}

/* These target only the INNER .elementor-button (the actual rendered
   link), never the bare .ogc-cta — that class lands on the Elementor
   widget's OUTER wrapper div (regla Elementor: _css_classes), and giving
   it the same padding/border-radius/border nested a second pill shape
   around the real button. */
.ogc-cta .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--ogc-font-body) !important;
	font-weight: 700 !important;
	font-size: 0.92rem !important;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none !important;
	padding: 14px 28px !important;
	border-radius: 999px !important;
	color: var(--ogc-navy-950) !important;
	background: linear-gradient(135deg, var(--ogc-ice-300), var(--ogc-ice-500)) !important;
	box-shadow: 0 10px 28px rgba(143, 224, 238, 0.28);
	transition: transform 0.18s ease, filter 0.18s ease;
}

.ogc-cta .elementor-button:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
}

.ogc-cta--ghost .elementor-button {
	background: transparent !important;
	color: var(--ogc-ice-300) !important;
	border: 1px solid rgba(191, 239, 245, 0.35) !important;
	box-shadow: none !important;
}

.ogc-cta--ghost .elementor-button:hover {
	background: rgba(191, 239, 245, 0.1) !important;
}

/* The earlier .ogc-cta rule (used directly on plain <a class="ogc-cta">
   buttons in the campus dashboard widgets) also matches this same class
   on the Elementor wrapper div, since Elementor puts _css_classes on the
   OUTER widget wrapper. Reset it here so the wrapper stays an invisible
   block and only the inner .elementor-button renders as the pill. */
.ogc-cta.elementor-widget-button {
	display: block !important;
	padding: 0 !important;
	border: none !important;
	border-radius: 0 !important;
	background: none !important;
	box-shadow: none !important;
}

.ogc-home-niveles {
	padding: 80px 20px;
}

.ogc-home-section-title,
.ogc-home-section-title .elementor-heading-title {
	font-family: var(--ogc-font-display) !important;
	text-align: center;
	color: var(--ogc-cream-100) !important;
	font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
	margin: 0 0 12px !important;
}

.ogc-home-section-lead {
	max-width: 36em;
	margin: 0 auto 56px;
}

.ogc-home-section-lead p {
	text-align: center;
	color: rgba(246, 239, 228, 0.65) !important;
	margin: 0 !important;
}

.ogc-home-niveles-row {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	max-width: 1140px;
	margin: 0 auto;
}

@media (max-width: 900px) {
	.ogc-home-niveles-row {
		grid-template-columns: 1fr;
	}
}

/* Elementor's own .e-con sets `width: var(--width)` (its boxed content-width,
   1140px by default) directly on every container element — confirmed live
   via getComputedStyle that our max-width WON but width stayed at 1140px
   regardless, because an explicit `width` smaller than `max-width` is not
   constrained further by it. Every one of our "-inner"/grid wrappers needs
   its own `width: 100% !important` or it silently clamps to 1140px no
   matter what max-width we set. */
.ogc-home-hero-inner,
.ogc-home-cta-inner {
	width: 100% !important;
	max-width: 900px;
	margin: 0 auto !important;
	position: relative;
	z-index: 1;
}

.ogc-home-nivel {
	background: linear-gradient(155deg, rgba(22, 34, 79, 0.7), rgba(11, 19, 48, 0.92));
	border: var(--ogc-border-glass);
	border-radius: var(--ogc-radius-lg);
	padding: 34px 30px;
	height: 100%;
	box-shadow: var(--ogc-shadow-soft);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ogc-home-nivel:hover {
	transform: translateY(-4px);
	box-shadow: var(--ogc-shadow-card);
}

.ogc-home-nivel-number,
.ogc-home-nivel-number .elementor-heading-title {
	font-family: var(--ogc-font-display) !important;
	color: var(--ogc-ice-400) !important;
	font-size: 0.85rem !important;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin: 0 0 10px !important;
}

.ogc-home-nivel-title,
.ogc-home-nivel-title .elementor-heading-title {
	font-family: var(--ogc-font-display) !important;
	color: var(--ogc-cream-100) !important;
	font-size: 1.4rem !important;
	margin: 0 0 14px !important;
}

.ogc-home-nivel-desc p {
	color: rgba(246, 239, 228, 0.72) !important;
	font-size: 0.95rem !important;
	line-height: 1.6 !important;
	margin: 0 !important;
}

.ogc-home-nivel--locked {
	opacity: 0.6;
}

.ogc-home-nivel-badge,
.ogc-home-nivel-badge .elementor-heading-title {
	display: inline-block !important;
	margin-top: 16px !important;
	font-size: 0.72rem !important;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ogc-pink-300) !important;
	border: 1px solid rgba(233, 195, 206, 0.4);
	border-radius: 999px;
	padding: 4px 12px !important;
}

.ogc-home-cta {
	padding: 90px 20px 110px;
	text-align: center;
	background:
		radial-gradient(circle at 50% 0%, rgba(233, 195, 206, 0.1), transparent 55%),
		var(--ogc-navy-950);
}

.ogc-home-cta .ogc-home-section-title {
	margin-bottom: 30px !important;
}

.ogc-home-cta-actions > .e-con-inner {
	display: flex !important;
	flex-direction: row !important;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ==================================================================== */
/* NAV — transparente sobre el hero, oscuro+blur al hacer scroll         */
/* ==================================================================== */

.ogc-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 32px;
	transition: background 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.ogc-nav.is-scrolled {
	background: rgba(5, 7, 15, 0.82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
	padding: 12px 32px;
}

.ogc-nav__brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.ogc-nav__brand img {
	width: 44px !important;
	height: 44px !important;
	max-width: 44px !important;
	object-fit: contain;
	display: block;
	transition: width 0.25s ease, height 0.25s ease;
}

.ogc-nav.is-scrolled .ogc-nav__brand img {
	width: 36px !important;
	height: 36px !important;
	max-width: 36px !important;
}

.ogc-nav__brand span {
	font-family: var(--ogc-font-display);
	color: var(--ogc-cream-100);
	font-size: 1.05rem;
	letter-spacing: 0.06em;
	white-space: nowrap;
}

.ogc-nav__links {
	display: flex;
	align-items: center;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ogc-nav__links a {
	color: rgba(246, 239, 228, 0.82);
	text-decoration: none;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 600;
	transition: color 0.15s ease;
}

.ogc-nav__links a:hover {
	color: var(--ogc-ice-300);
}

.ogc-nav__cta {
	display: inline-flex;
	align-items: center;
	padding: 10px 22px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--ogc-ice-300), var(--ogc-ice-500));
	color: var(--ogc-navy-950) !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	font-size: 0.8rem !important;
	letter-spacing: 0.04em;
}

.ogc-nav__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.ogc-nav__toggle span {
	width: 24px;
	height: 2px;
	background: var(--ogc-cream-100);
	display: block;
}

@media (max-width: 900px) {
	.ogc-nav__links {
		position: fixed !important;
		inset: 0 0 0 30% !important;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		padding: 40px;
		gap: 26px;
		background: rgba(5, 7, 15, 0.97);
		backdrop-filter: blur(16px);
		transform: translateX(100%) !important;
		transition: transform 0.3s ease;
	}

	.ogc-nav__links.is-open {
		transform: translateX(0) !important;
	}

	.ogc-nav__links a {
		font-size: 1.1rem;
	}

	.ogc-nav__toggle {
		display: flex;
	}

	.ogc-nav__brand span {
		display: none;
	}
}

/* ==================================================================== */
/* HERO — atmósfera generativa (paleta del logo, sin foto de fondo)     */
/* ==================================================================== */

.ogc-home-hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	padding: 140px 20px 100px !important;
}

/* ==================================================================== */
/* HERO — visual asimétrico desktop (contenido ~54% / motivo ~46%)      */
/* Evita el "lado derecho vacío" sin depender de una fotografía: un     */
/* árbol-de-vida/anillo-rúnico generativo en SVG (paleta del logo), con */
/* su propio glow radial interno que se funde con el fondo. Oculto en   */
/* mobile/tablet — ahí el hero conserva el tratamiento centrado sobre   */
/* el fondo atmosférico.                                                 */
/* ==================================================================== */

@media (min-width: 981px) {
	.ogc-home-hero .ogc-home-hero-inner {
		width: 100% !important;
		max-width: 1360px;
		margin: 0 auto !important;
		text-align: left;
	}

	/* Elementor wraps a container's real children in its own .e-con-inner
	   layer, so THAT is the actual flex row — not .ogc-home-hero-inner
	   itself (confirmed by inspecting the live DOM: .ogc-home-hero-inner
	   > .e-con-inner > [.ogc-home-hero-content, the visual's widget]). */
	.ogc-home-hero .ogc-home-hero-inner > .e-con-inner {
		display: flex !important;
		flex-direction: row !important;
		align-items: center;
		justify-content: space-between;
		gap: 24px;
	}

	.ogc-home-hero-content {
		flex: 0 0 54%;
		max-width: 54%;
		text-align: left;
	}

	.ogc-home-hero-content .ogc-home-logo-mark {
		justify-content: flex-start;
		margin: 0 0 22px;
	}

	.ogc-home-hero-content .ogc-home-logo-mark img {
		width: 88px !important;
		max-width: 88px !important;
	}

	.ogc-home-hero-content .ogc-home-intro {
		margin: 0 0 34px;
		max-width: 34em;
	}

	.ogc-home-hero-content .ogc-home-hero-actions {
		justify-content: flex-start;
	}

	/* Same wrapper-collapse issue as .ogc-home-hero__bg: this html widget's
	   only child needs the flex-basis/height on the WRAPPER, not just the
	   inner div, or the wrapper sizes to auto/content instead of 46%. */
	.ogc-home-hero-inner > .e-con-inner > .elementor-widget-html:has(> .ogc-home-hero-visual) {
		flex: 0 0 50% !important;
		max-width: 50% !important;
		height: min(78vh, 780px) !important;
		margin-left: -48px !important;
		margin-right: -80px !important;
		position: relative !important;
		z-index: 1 !important;
	}

	.ogc-home-hero-visual {
		position: relative;
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
	}

	.ogc-hero-tree {
		width: 100%;
		height: 100%;
		overflow: visible;
	}
}

/* ==================================================================== */
/* HERO MOBILE — composición propia, NO el desktop encogido (regla 6):   */
/* banda visual full-bleed arriba (~40vh) que se funde con degradado     */
/* hacia el fondo oscuro, contenido debajo. El mismo SVG generativo del  */
/* desktop, reencuadrado con "slice" para que actúe como banda ancha.    */
/* ==================================================================== */

@media (max-width: 980px) {
	.ogc-home-hero {
		padding-top: 0 !important;
		align-items: stretch;
		min-height: 0;
	}

	.ogc-home-hero .ogc-home-hero-inner {
		padding: 0;
		max-width: none;
	}

	.ogc-home-hero .ogc-home-hero-inner > .e-con-inner {
		display: flex !important;
		flex-direction: column !important;
	}

	.ogc-home-hero-inner > .e-con-inner > .elementor-widget-html:has(> .ogc-home-hero-visual) {
		order: -1;
		display: block !important;
		position: relative !important;
		width: 100vw !important;
		max-width: 100vw !important;
		height: 42vh !important;
		margin-left: calc(-50vw + 50%) !important;
		margin-right: calc(-50vw + 50%) !important;
	}

	.ogc-home-hero-visual {
		position: absolute;
		inset: 0;
	}

	.ogc-home-hero-visual::after {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, transparent 45%, var(--ogc-navy-950) 96%);
	}

	.ogc-hero-tree {
		width: 100%;
		height: 100%;
	}

	.ogc-home-hero-content {
		padding: 30px 26px 50px;
	}

	.ogc-home-hero-content .ogc-home-logo-mark,
	.ogc-home-hero-content .ogc-home-eyebrow,
	.ogc-home-hero-content .ogc-home-title,
	.ogc-home-hero-content .ogc-home-intro {
		text-align: center;
	}

	.ogc-home-logo-mark {
		margin: 0 auto 18px;
	}
}

.ogc-home-logo-mark {
	position: relative;
	z-index: 1;
	margin: 0 auto 26px;
	display: flex;
	justify-content: center;
}

.ogc-home-logo-mark img {
	width: 132px !important;
	max-width: 132px !important;
	height: auto;
	filter: drop-shadow(0 0 30px rgba(143, 224, 238, 0.35));
}

/* ==================================================================== */
/* Reveal al hacer scroll (regla 24: elegante, sin exceso)               */
/* ==================================================================== */

.ogc-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.ogc-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.ogc-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ==================================================================== */
/* Formaciones — tarjetas grandes con imagen/composición propia          */
/* ==================================================================== */

.ogc-formacion {
	position: relative;
	border-radius: var(--ogc-radius-lg);
	overflow: hidden;
	min-height: 540px;
	display: flex;
	align-items: flex-end;
	border: var(--ogc-border-glass);
	box-shadow: var(--ogc-shadow-soft);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ogc-formacion:hover {
	transform: translateY(-6px) scale(1.01);
	box-shadow: var(--ogc-shadow-card);
}

.ogc-formacion:hover .ogc-formacion__art {
	transform: scale(1.05);
}

/* Same wrapper-collapse issue as .ogc-home-hero__bg / .ogc-home-hero-visual:
   this html widget's only child is absolutely positioned, so its wrapper
   has no in-flow content and its auto height collapses to 0 — stretch the
   WRAPPER itself to fill the card. */
.ogc-formacion > .e-con-inner > .elementor-widget-html:has(> .ogc-formacion__art) {
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
}

/* Composición generativa a pantalla completa de la tarjeta (regla 8:      */
/* paneles cinematográficos grandes, no cajas de solo texto).             */
.ogc-formacion__art {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	transition: transform 0.5s ease;
}

/* Igual que .ogc-formacion__art: Elementor pone su propio position:relative
   por defecto en cada .e-con, y sin !important gana por orden de carga —
   confirmado en vivo (el scrim quedaba con height:20px pegado arriba de la
   tarjeta en vez de cubrirla entera). */
.ogc-formacion__scrim {
	position: absolute !important;
	inset: 0 !important;
	background: linear-gradient(0deg, rgba(5, 7, 15, 0.94) 12%, rgba(5, 7, 15, 0.4) 58%, rgba(5, 7, 15, 0.05) 100%);
	z-index: 0;
}

.ogc-formacion__body {
	position: relative;
	z-index: 1;
	padding: 32px 30px;
}

.ogc-formacion-numero,
.ogc-formacion-numero .elementor-heading-title {
	font-family: var(--ogc-font-display) !important;
	font-size: 0.8rem !important;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--ogc-ice-400) !important;
	margin: 0 0 8px !important;
}

.ogc-formacion-titulo,
.ogc-formacion-titulo .elementor-heading-title {
	font-family: var(--ogc-font-display) !important;
	font-size: 1.7rem !important;
	color: var(--ogc-cream-100) !important;
	margin: 0 0 12px !important;
	line-height: 1.2 !important;
}

.ogc-formacion-desc p {
	color: rgba(246, 239, 228, 0.75) !important;
	font-size: 0.92rem !important;
	line-height: 1.55 !important;
	margin: 0 0 18px !important;
}

.ogc-formacion-estado,
.ogc-formacion-estado .elementor-heading-title {
	display: inline-block !important;
	font-size: 0.7rem !important;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ogc-pink-300) !important;
	border: 1px solid rgba(233, 195, 206, 0.4);
	border-radius: 999px;
	padding: 5px 14px !important;
	margin: 0 0 16px !important;
}

.ogc-formaciones-grid {
	width: 100% !important;
	max-width: 1200px;
	margin: 0 auto !important;
}

/* Elementor wraps a container's real children in its own .e-con-inner
   layer (confirmed live: the 3 cards were landing there, not as direct
   grid items of .ogc-formaciones-grid, so the grid rules never reached
   them) — the grid must be applied to THAT wrapper, not the container
   itself. Same fix as the hero row layout. */
.ogc-formaciones-grid > .e-con-inner {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

/* Mobile/tablet: carrusel horizontal con "peek" de la siguiente tarjeta
   (regla 16) en vez de tres cards enormes apiladas verticalmente — se
   siente como una plataforma digital, no como el desktop encogido. */
@media (max-width: 980px) {
	.ogc-formaciones-grid {
		max-width: 100%;
	}
	.ogc-formaciones-grid > .e-con-inner {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap;
		grid-template-columns: none;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 16px;
		padding: 4px 12vw 22px 20px;
		margin: 0 -20px;
	}
	.ogc-formaciones-grid > .e-con-inner::-webkit-scrollbar {
		display: none;
	}
	.ogc-formaciones-grid > .e-con-inner > .ogc-formacion {
		flex: 0 0 82vw;
		scroll-snap-align: center;
	}
	.ogc-formacion {
		min-height: 460px;
	}
}

@media (max-width: 480px) {
	.ogc-formaciones-grid > .e-con-inner > .ogc-formacion {
		flex-basis: 86vw;
	}
}

/* ==================================================================== */
/* Feature grid ("Así se vive Oracle Gypsies")                           */
/* ==================================================================== */

.ogc-features {
	padding: 90px 20px;
	background: var(--ogc-navy-950);
}

/* Mosaico editorial: una foto grande + dos secundarias + una tarjeta de
   texto — evita las seis cajas de ícono+párrafo repetidas. */
.ogc-mosaic {
	width: 100% !important;
	max-width: 1180px;
	margin: 0 auto !important;
}

/* Same .e-con-inner wrapping issue as .ogc-formaciones-grid — the grid
   must target the wrapper Elementor actually renders the 4 tiles into. */
.ogc-mosaic > .e-con-inner {
	display: grid !important;
	grid-template-columns: 1.3fr 1fr 1fr;
	grid-template-rows: 260px 260px;
	gap: 18px;
}

.ogc-mosaic__tile {
	position: relative;
	border-radius: var(--ogc-radius-lg);
	overflow: hidden;
	border: var(--ogc-border-glass);
}

.ogc-mosaic__tile--big { grid-column: 1; grid-row: 1 / 3; }
.ogc-mosaic__tile:nth-of-type(2) { grid-column: 2; grid-row: 1; }
.ogc-mosaic__tile:nth-of-type(3) { grid-column: 3; grid-row: 1; }

.ogc-mosaic__tile--text {
	grid-column: 2 / 4;
	grid-row: 2;
	background: linear-gradient(155deg, rgba(22, 34, 79, 0.6), rgba(11, 19, 48, 0.9));
	padding: 26px 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Same wrapper-collapse issue as .ogc-formacion__art: Elementor's own
   .elementor-widget-html wrapper around this raw <img> is itself
   position:relative with no in-flow content, so it collapses to 0
   height and becomes the img's actual containing block instead of the
   tile. Stretch the wrapper itself to fill the tile. */
.ogc-mosaic__tile > .e-con-inner > .elementor-widget-html:has(> img) {
	position: absolute !important;
	inset: 0 !important;
}

.ogc-mosaic__tile img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.ogc-mosaic__tile:hover img {
	transform: scale(1.05);
}

.ogc-mosaic__tile:not(.ogc-mosaic__tile--text)::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(5, 7, 15, 0.92) 5%, rgba(5, 7, 15, 0.15) 60%, transparent 100%);
	pointer-events: none;
}

.ogc-mosaic__caption {
	position: relative;
	z-index: 1;
	padding: 22px;
	margin-top: auto;
}

.ogc-mosaic__tile--big .ogc-mosaic__caption {
	padding: 30px;
}

.ogc-mosaic__caption-title,
.ogc-mosaic__caption-title .elementor-heading-title {
	font-family: var(--ogc-font-display) !important;
	color: var(--ogc-cream-100) !important;
	margin: 0 0 6px !important;
}

.ogc-mosaic__tile--big .ogc-mosaic__caption-title,
.ogc-mosaic__tile--big .ogc-mosaic__caption-title .elementor-heading-title {
	font-size: 1.5rem !important;
}

.ogc-mosaic__tile:not(.ogc-mosaic__tile--big) .ogc-mosaic__caption-title,
.ogc-mosaic__tile:not(.ogc-mosaic__tile--big) .ogc-mosaic__caption-title .elementor-heading-title {
	font-size: 1.05rem !important;
}

.ogc-mosaic__caption-text p {
	color: rgba(246, 239, 228, 0.78) !important;
	font-size: 0.88rem !important;
	line-height: 1.5 !important;
	margin: 0 !important;
}

@media (max-width: 900px) {
	.ogc-mosaic > .e-con-inner {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 260px 200px 200px;
	}
	.ogc-mosaic__tile--big { grid-column: 1 / 3; grid-row: 1; }
	.ogc-mosaic__tile:nth-of-type(2) { grid-column: 1; grid-row: 2; }
	.ogc-mosaic__tile:nth-of-type(3) { grid-column: 2; grid-row: 2; }
	.ogc-mosaic__tile--text { grid-column: 1 / 3; grid-row: 3; }
}

@media (max-width: 600px) {
	.ogc-mosaic > .e-con-inner {
		grid-template-columns: 1fr;
		grid-template-rows: 300px 220px 220px auto;
	}
	.ogc-mosaic__tile--big { grid-column: 1; grid-row: 1; }
	.ogc-mosaic__tile:nth-of-type(2) { grid-column: 1; grid-row: 2; }
	.ogc-mosaic__tile:nth-of-type(3) { grid-column: 1; grid-row: 3; }
	.ogc-mosaic__tile--text { grid-column: 1; grid-row: 4; }
}

/* ==================================================================== */
/* Secciones grandes con imagen (Clases en vivo / Manuales / Viaje)      */
/* ==================================================================== */

.ogc-split {
	padding: 90px 20px;
	position: relative;
	overflow: hidden;
}

.ogc-split-inner {
	width: 100% !important;
	max-width: 1180px;
	margin: 0 auto !important;
}

.ogc-split-inner > .e-con-inner {
	display: grid !important;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 56px;
	align-items: center;
}

.ogc-split--reverse .ogc-split-inner > .e-con-inner {
	direction: rtl;
}

.ogc-split--reverse .ogc-split-inner > .e-con-inner > * {
	direction: ltr;
}

@media (max-width: 900px) {
	.ogc-split-inner > .e-con-inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.ogc-split--reverse .ogc-split-inner > .e-con-inner {
		direction: ltr;
	}
}

.ogc-split-eyebrow p {
	font-family: var(--ogc-font-body) !important;
	font-size: 0.75rem !important;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--ogc-ice-400) !important;
	margin: 0 0 14px !important;
}

.ogc-split-title,
.ogc-split-title .elementor-heading-title {
	font-family: var(--ogc-font-display) !important;
	font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
	color: var(--ogc-cream-100) !important;
	margin: 0 0 18px !important;
	line-height: 1.2 !important;
}

.ogc-split-text p {
	color: rgba(246, 239, 228, 0.75) !important;
	font-size: 1rem !important;
	line-height: 1.65 !important;
	margin: 0 0 26px !important;
}

.ogc-split-media {
	position: relative;
	border-radius: var(--ogc-radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	box-shadow: var(--ogc-shadow-card);
	border: var(--ogc-border-glass);
}

.ogc-split-media img {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	object-fit: cover;
}

.ogc-split-media svg {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
}

/* Galería de 3 fotos para Viaje Nórdico: una grande + dos apiladas. */
.ogc-split-gallery {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 14px;
	aspect-ratio: 4 / 3;
}

.ogc-split-gallery__main {
	grid-column: 1;
	grid-row: 1 / 3;
	position: relative;
	border-radius: var(--ogc-radius-lg);
	overflow: hidden;
	box-shadow: var(--ogc-shadow-card);
	border: var(--ogc-border-glass);
}

.ogc-split-gallery__sub {
	position: relative;
	border-radius: var(--ogc-radius-md);
	overflow: hidden;
	box-shadow: var(--ogc-shadow-soft);
	border: var(--ogc-border-glass);
}

.ogc-split-gallery img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	object-fit: cover;
}

@media (max-width: 560px) {
	.ogc-split-gallery {
		grid-template-columns: 1fr 1fr;
		aspect-ratio: auto;
		grid-template-rows: 200px 140px;
	}
}

.ogc-split-media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(155deg, rgba(143, 224, 238, 0.12), transparent 60%);
	pointer-events: none;
}

.ogc-split--tinted {
	background:
		radial-gradient(circle at 15% 20%, rgba(143, 224, 238, 0.08), transparent 45%),
		var(--ogc-navy-900);
}

/* Landing pública de una formación (regla 26): primera sección de la
   página, así que necesita espacio para no quedar debajo del nav fijo. */
.ogc-formacion-landing {
	padding-top: 170px;
	min-height: 100vh;
	background: var(--ogc-navy-950);
	display: flex;
	align-items: center;
}

@media (max-width: 900px) {
	.ogc-formacion-landing {
		padding-top: 130px;
		min-height: 0;
	}
}

/* ==================================================================== */
/* Metodología — pasos progresivos                                       */
/* ==================================================================== */

.ogc-metodo {
	padding: 90px 20px;
	background: var(--ogc-navy-950);
}

.ogc-metodo-grid {
	width: 100% !important;
	max-width: 1100px;
	margin: 0 auto !important;
	counter-reset: metodo;
}

.ogc-metodo-grid > .e-con-inner {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 4px;
}

@media (max-width: 900px) {
	.ogc-metodo-grid > .e-con-inner {
		grid-template-columns: 1fr 1fr;
		gap: 22px;
	}
}

@media (max-width: 560px) {
	.ogc-metodo-grid > .e-con-inner {
		grid-template-columns: 1fr;
	}
}

.ogc-metodo-paso {
	text-align: center;
	padding: 0 18px;
	position: relative;
}

.ogc-metodo-paso::before {
	counter-increment: metodo;
	/* Elementor's own .e-con::before (background-overlay feature) matches
	   this same element at equal specificity and loads after campus.css,
	   so it wins the `content` property and blanks the counter unless
	   forced here. */
	content: counter(metodo, decimal-leading-zero) !important;
	display: block;
	font-family: var(--ogc-font-display);
	font-size: 1.3rem;
	color: var(--ogc-ice-400);
	opacity: 0.6;
	margin-bottom: 10px;
}

.ogc-metodo-titulo,
.ogc-metodo-titulo .elementor-heading-title {
	font-family: var(--ogc-font-display) !important;
	font-size: 1.05rem !important;
	color: var(--ogc-cream-100) !important;
	margin: 0 0 8px !important;
}

.ogc-metodo-desc p {
	color: rgba(246, 239, 228, 0.65) !important;
	font-size: 0.85rem !important;
	line-height: 1.5 !important;
	margin: 0 !important;
}

/* ==================================================================== */
/* Sobre la academia                                                     */
/* ==================================================================== */

.ogc-sobre {
	padding: 90px 20px;
	text-align: center;
}

.ogc-sobre-inner {
	width: 100% !important;
	max-width: 780px;
	margin: 0 auto !important;
}

.ogc-sobre-eyebrow p {
	font-family: var(--ogc-font-body) !important;
	font-size: 0.75rem !important;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--ogc-ice-400) !important;
	margin: 0 0 16px !important;
}

.ogc-sobre-titulo,
.ogc-sobre-titulo .elementor-heading-title {
	font-family: var(--ogc-font-display) !important;
	font-size: clamp(1.7rem, 3vw, 2.3rem) !important;
	color: var(--ogc-cream-100) !important;
	margin: 0 0 22px !important;
}

.ogc-sobre-texto p {
	color: rgba(246, 239, 228, 0.78) !important;
	font-size: 1.05rem !important;
	line-height: 1.75 !important;
	margin: 0 0 16px !important;
}

/* ==================================================================== */
/* Footer                                                                 */
/* ==================================================================== */

.ogc-footer {
	padding: 60px 20px 30px;
	background: var(--ogc-navy-950);
	border-top: var(--ogc-border-glass);
}

.ogc-footer-inner {
	width: 100% !important;
	max-width: 1180px;
	margin: 0 auto !important;
}

.ogc-footer-inner > .e-con-inner {
	display: grid !important;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
}

@media (max-width: 780px) {
	.ogc-footer-inner > .e-con-inner {
		grid-template-columns: 1fr 1fr;
	}
}

.ogc-footer-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.ogc-footer-brand img {
	width: 40px !important;
	height: 40px !important;
	max-width: 40px !important;
	object-fit: contain;
}

.ogc-footer-brand-text,
.ogc-footer-brand-text .elementor-heading-title {
	font-family: var(--ogc-font-display) !important;
	color: var(--ogc-cream-100) !important;
	font-size: 1rem !important;
	margin: 0 !important;
}

.ogc-footer-tagline p {
	color: rgba(246, 239, 228, 0.55) !important;
	font-size: 0.85rem !important;
	margin: 0 !important;
}

.ogc-footer-heading,
.ogc-footer-heading .elementor-heading-title {
	font-family: var(--ogc-font-body) !important;
	font-size: 0.78rem !important;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ogc-ice-400) !important;
	margin: 0 0 16px !important;
}

.ogc-footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ogc-footer-links a {
	color: rgba(246, 239, 228, 0.7);
	text-decoration: none;
	font-size: 0.88rem;
}

.ogc-footer-links a:hover {
	color: var(--ogc-ice-300);
}

.ogc-footer-bottom {
	max-width: 1180px;
	margin: 40px auto 0;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	text-align: center;
	color: rgba(246, 239, 228, 0.4);
	font-size: 0.78rem;
}

/* ==================================================================== */
/* Responsive general home                                               */
/* ==================================================================== */

@media (max-width: 480px) {
	.ogc-home-hero {
		min-height: 0;
		padding: 0 0 60px !important;
	}
	.ogc-home-hero-inner > .e-con-inner > .elementor-widget-html:has(> .ogc-home-hero-visual) {
		height: 38vh !important;
	}
	.ogc-home-logo-mark img {
		width: 96px !important;
		max-width: 96px !important;
	}
	.ogc-split,
	.ogc-features,
	.ogc-metodo,
	.ogc-sobre,
	.ogc-home-niveles,
	.ogc-home-cta {
		padding-left: 18px;
		padding-right: 18px;
	}
}
