/* =========================================================
   Nuevo Home — Header Las Condes
   ========================================================= */

/* ---- FONTS: CYGRE ---- */
@font-face {
	font-family: 'Cygre';
	src: url('../fonts/Cygre-Bold.woff2') format('woff2'),
		url('../fonts/Cygre-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Cygre';
	src: url('../fonts/Cygre-Medium.woff2') format('woff2'),
		url('../fonts/Cygre-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Cygre';
	src: url('../fonts/Cygre-Regular.woff2') format('woff2'),
		url('../fonts/Cygre-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Cygre';
	src: url('../fonts/Cygre-Light.woff2') format('woff2'),
		url('../fonts/Cygre-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
button,
input,
select,
textarea,
label,
.elementor,
.elementor * {
	font-family: var(--lc-font);
}

/* ---- PROTECCIÓN Y SOBRESCRITURA PARA FONTAWESOME Y OTROS ÍCONOS ---- */
html body .fa,
html body .fas,
html body .far,
html body .fab,
html body .fal,
html body .fad,
html body .fa-solid,
html body i.fa-solid,
html body .fa-regular,
html body i.fa-regular,
html body .fa-light,
html body i.fa-light,
html body [class^="fa-"],
html body [class*=" fa-"],
html body i[class*="fa-"],
html body i[class*="fa-"]::before,
html body [class*="fa-"]::before,
html body .fa-solid::before,
html body .fa-regular::before,
html body .fa-light::before {
	font-family: "Font Awesome 6 Free", "FontAwesome" !important;
}

html body .fa-brands,
html body i.fa-brands,
html body .fa-x-twitter,
html body i.fa-x-twitter,
html body [class*="fa-brands"]::before,
html body .fa-brands::before {
	font-family: "Font Awesome 6 Brands" !important;
}

body.new-home {
	margin: 0;
	padding: 0;
}

/* ---- VARIABLES ---- */
:root {
	--lc-font: 'Cygre', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--lc-blue: #1664c0;
	--lc-dark: #343a41;
	--lc-gold: #efb810;
	--lc-white: #ffffff;
	--lc-max-w: 1280px;
	/*1280*/
}

/* ---- TOP BAR ---- */
.nh-topbar {
	background: var(--lc-dark);
	color: var(--lc-white);
	font-size: 12px;
}

.nh-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--lc-max-w);
	margin: 0 auto;
	padding: 6px 0px;
	gap: 16px;
}

/* Social */
.nh-topbar__social {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.nh-topbar__siguenos {
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	font-weight: 400;
}

.nh-topbar__social-link {
	color: var(--lc-white) !important;
	display: flex;
	align-items: center;
	font-size: 15px;
	transition: opacity .2s;
}

.nh-topbar__social-link:hover {
	opacity: .7;
}

/* Links de transparencia */
.nh-topbar__links {
	display: flex;
	align-items: center;
	gap: 4px;
}

.nh-topbar__link-group {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 4px 14px;
	text-decoration: none;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
	line-height: 1.3;
	transition: background .2s;
}

.nh-topbar__link-group:last-of-type {
	border-right: none;
}

.nh-topbar__link-group:hover {
	background: rgba(255, 255, 255, 0.07);
}

.nh-topbar__link-label {
	color: var(--lc-gold);
	font-size: 13px;
	font-weight: 400;
}

.nh-topbar__link-name {
	color: var(--lc-white);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .03em;
}

/* Buscador Expandible en el Topbar */
html body .nh-topbar__links {
	position: relative !important;
}

html body .nh-topbar__search-wrap {
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	margin-left: 4px !important;
	z-index: 50 !important;
}

html body .nh-topbar__search-trigger {
	background: none !important;
	border: none !important;
	cursor: pointer !important;
	color: var(--lc-gold) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 6px 10px !important;
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s !important;
	position: relative !important;
	z-index: 60 !important;
}

html body .nh-topbar__search-trigger:hover {
	opacity: 0.85 !important;
}

html body .nh-topbar__search-wrap.is-active .nh-topbar__search-trigger {
	opacity: 0 !important;
	pointer-events: none !important;
	visibility: hidden !important;
	transform: scale(0.8) !important;
}

html body .nh-topbar__search-form {
	position: absolute !important;
	right: 0 !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 0 !important;
	opacity: 0 !important;
	overflow: hidden !important;
	pointer-events: none !important;
	transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease !important;
	display: flex !important;
	align-items: center !important;
	background: var(--lc-dark) !important;
	z-index: 55 !important;
	border-radius: 30px !important;
	padding: 0 !important;
	box-sizing: border-box !important;
	white-space: nowrap !important;
}

html body .nh-topbar__search-wrap.is-active .nh-topbar__search-form {
	width: 460px !important;
	opacity: 1 !important;
	pointer-events: auto !important;
	padding: 4px 6px 4px 16px !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
	border: 1px solid rgba(239, 184, 16, 0.5) !important;
}

html body .nh-topbar__search-icon {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin-right: 10px !important;
	flex-shrink: 0 !important;
}

html body .nh-topbar__search-icon svg {
	display: block !important;
}

html body .nh-topbar__search-input {
	flex: 1 !important;
	background: transparent !important;
	border: none !important;
	color: var(--lc-white) !important;
	font-family: var(--lc-font) !important;
	font-size: 14px !important;
	outline: none !important;
	padding: 6px 12px 6px 0 !important;
}

html body .nh-topbar__search-input::placeholder {
	color: rgba(255, 255, 255, 0.6) !important;
}

html body .nh-topbar__search-submit {
	background-color: var(--lc-gold) !important;
	color: var(--lc-dark) !important;
	border: none !important;
	border-radius: 20px !important;
	font-family: var(--lc-font) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	padding: 6px 16px !important;
	cursor: pointer !important;
	transition: background-color 0.2s, transform 0.2s !important;
	flex-shrink: 0 !important;
}

html body .nh-topbar__search-submit:hover {
	background-color: #ffd034 !important;
	transform: scale(1.03) !important;
}

/* ---- MAIN BAR ---- */
.nh-mainbar {
	background: var(--lc-blue);
}

.nh-mainbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--lc-max-w);
	margin: 0 auto;
	padding: 6px 0px;
	min-height: 68px;
	height: auto;
	gap: 24px;
}

/* Logo */
.nh-mainbar__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
}

.nh-mainbar__logo img {
	height: 48px !important;
	width: auto !important;
	display: block;
}

.nh-mainbar__logo-text {
	display: flex;
	flex-direction: column;
	color: var(--lc-white);
	line-height: 1.1;
}

.nh-mainbar__logo-text strong {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: .05em;
}

.nh-mainbar__logo-text small {
	font-size: 10px;
	font-weight: 400;
	letter-spacing: .12em;
	opacity: .85;
}

.nh-header {
	position: relative;
	z-index: 100;
	box-shadow: 0 6px 32px rgba(0, 0, 0, 0.18);
}

/* Nav principal */
.nh-mainnav {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	justify-content: center;
}

.nh-mainnav__item {
	background: transparent !important;
	border: none !important;
	cursor: pointer !important;
	color: var(--lc-white) !important;
	text-decoration: none !important;
	font-family: inherit !important;
	font-size: 13px !important;
	line-height: 13px !important;
	font-weight: 700 !important;
	letter-spacing: .04em !important;
	padding: 8px 0px !important;
	border-radius: 4px !important;
	white-space: nowrap !important;
	transition: background .2s, color .2s !important;
	display: flex !important;
	align-items: center !important;
	gap: 4px !important;
}

.nh-mainnav__item:focus {
	outline: none !important;
}

.nh-mainnav__item:hover,
.nh-mainnav__item.is-active {
	background: rgba(255, 255, 255, 0.15);
}

.nh-mainnav__arrow {
	width: 10px;
	height: 5px;
	transition: transform .25s ease;
	flex-shrink: 0;
	margin-top: 3px;
}

.nh-mainnav__item.is-active .nh-mainnav__arrow {
	transform: rotate(180deg);
}

/* Mega Menú Panel */
.nh-megamenu-panel {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: var(--lc-dark);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
	z-index: 99;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nh-megamenu-panel.is-active {
	display: block;
	animation: nhMegamenuFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes nhMegamenuFadeIn {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.nh-megamenu-panel__inner {
	max-width: var(--lc-max-w);
	margin: 0 auto;
	padding: 36px 0;
}

.nh-megamenu-grid {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0;
}

.nh-megamenu-col {
	flex: 1;
	min-width: 220px;
	padding: 0 36px;
	border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.nh-megamenu-col:first-child {
	padding-left: 0;
}

.nh-megamenu-col:last-child {
	border-right: none;
	padding-right: 0;
}

.nh-megamenu-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--lc-white);
	margin-bottom: 14px;
	display: block;
	text-decoration: none;
	letter-spacing: .02em;
}

.nh-megamenu-title:hover {
	color: var(--lc-gold);
}

.nh-megamenu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nh-megamenu-list a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	transition: color .2s, transform .2s;
	display: inline-block;
	line-height: 1.4;
}

.nh-megamenu-list a:hover {
	color: var(--lc-gold);
	transform: translateX(3px);
}

/* Teléfono 1402 */
.nh-mainbar__phone {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	text-decoration: none;
	flex-shrink: 0;
	padding: 0;
	transition: opacity .2s;
}

.nh-mainbar__phone:hover {
	opacity: 0.85;
}

.nh-mainbar__phone-img {
	height: 48px;
	width: auto;
	display: block;
}

/* --- Header --- */
.nh-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
}

.nh-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	height: 72px;
}

.nh-header__logo img {
	height: 40px;
	width: auto;
	display: block;
}

.nh-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 32px;
}

.nh-nav__list a {
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	color: #333;
	transition: color 0.2s;
}

.nh-nav__list a:hover {
	color: #0055a5;
}

/* --- Main --- */
.nh-main {
	min-height: 60vh;
}

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

.nh-footer {
	background: #3B404E;
	color: var(--lc-white);
	font-size: 14px;
	margin-top: 80px;
}

.nh-footer__inner {
	max-width: var(--lc-max-w);
	margin: 0 auto;
	padding: 0 24px;
}

/* TOP */
html body .nh-footer__top .nh-footer__inner {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	align-items: flex-start !important;
	gap: 30px !important;
	padding-top: 40px !important;
	padding-bottom: 40px !important;
}

@media (max-width: 900px) {
	html body .nh-footer__top .nh-footer__inner {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 600px) {
	html body .nh-footer__top .nh-footer__inner {
		grid-template-columns: 1fr !important;
	}
}

html body .nh-footer__col {
	width: 100% !important;
	box-sizing: border-box !important;
}

/* Logo */
.nh-footer__logo {
	display: inline-block;
}

.nh-footer__logo img {
	height: 56px !important;
	width: auto !important;
	display: block;
}

.nh-footer__logo-text {
	display: flex;
	flex-direction: column;
	color: var(--lc-white);
	line-height: 1.1;
}

.nh-footer__logo-text strong {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: .05em;
}

.nh-footer__logo-text small {
	font-size: 11px;
	letter-spacing: .12em;
	opacity: .8;
}

/* Contacto */
.nh-footer__col--contacto {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nh-footer__col-label {
	color: var(--lc-gold);
	font-weight: 700;
	font-size: 14px;
	display: block;
	margin-bottom: 2px;
}

html body .nh-footer__contact-item {
	display: flex !important;
	align-items: flex-start !important;
	gap: 8px !important;
	color: var(--lc-white) !important;
	text-decoration: none !important;
	line-height: 1.5 !important;
}

html body .nh-footer__contact-item svg {
	flex-shrink: 0 !important;
	margin-top: 2px !important;
}

html body .nh-footer__contact-item i {
	color: var(--lc-gold) !important;
	font-size: 16px !important;
	flex-shrink: 0 !important;
	margin-top: 3px !important;
}

html body .nh-footer__contact-item:hover {
	color: rgba(255, 255, 255, .8) !important;
}

/* Social */
html body .nh-footer__col--social {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	text-align: center !important;
	gap: 10px !important;
}

html body .nh-footer__social-grid {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 14px !important;
	flex-wrap: wrap !important;
}

html body .nh-footer__social-link,
html body .nh-footer__social-link i {
	color: var(--lc-white) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-decoration: none !important;
	transition: opacity 0.2s ease !important;
}

html body .nh-footer__social-link:hover {
	opacity: 0.7 !important;
}

/* Alcaldesa */
.nh-footer__col--alcaldesa {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-left: 0;
}

.nh-footer__alcaldesa-img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	object-fit: cover;
	object-position: top;
	border: 2px solid rgba(255, 255, 255, .2);
}

.nh-footer__alcaldesa-placeholder {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	flex-shrink: 0;
}

.nh-footer__alcaldesa-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.nh-footer__alcaldesa-name {
	font-size: 15px;
	font-weight: 500;
	color: var(--lc-white);
	max-width: 140px;
	line-height: 1.3;
}

.nh-footer__alcaldesa-title {
	color: var(--lc-gold);
	font-weight: 700;
	font-size: 14px;
}

/* DIVISOR */
.nh-footer__hr {
	border: none;
	border-top: 1px solid var(--lc-gold);
	margin: 0 auto;
	opacity: .6;
	max-width: 690px;
}

/* BOTTOM */
.nh-footer__bottom .nh-footer__inner {
	padding-top: 24px;
	padding-bottom: 32px;
	text-align: center;
}

.nh-footer__bottom-label {
	color: var(--lc-gold);
	font-weight: 700;
	font-size: 14px;
	margin: 0 0 16px;
}

html body .nh-footer__bottom-nav {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 16px !important;
	margin: 0 auto !important;
	flex-wrap: wrap !important;
}

html body .nh-footer__bottom-nav a {
	flex: 1 1 0px !important;
	min-width: 130px !important;
	text-align: center !important;
	color: rgba(255, 255, 255, 0.8) !important;
	text-decoration: none !important;
	font-size: 14px !important;
	transition: color 0.2s ease !important;
	white-space: nowrap !important;
	font-weight: 400;
}

html body .nh-footer__bottom-nav a:hover {
	color: var(--lc-white) !important;
}

.nh-footer__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.nh-footer__logo img {
	height: 36px;
	width: auto;
	margin-bottom: 24px;
}

.nh-footer__list {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 16px 32px;
}

.nh-footer__list a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s;
}

.nh-footer__list a:hover {
	color: #fff;
}

.nh-footer__copy {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

/* =========================================================
   Hero Section
   ========================================================= */

.nh-hero {
	max-width: var(--lc-max-w);
	margin: 35px auto 0;
	display: grid;
	grid-template-columns: 1fr 550px;
	height: 360px;
	gap: 15px;
}

/* ---- CARRUSEL HIGH SPECIFICITY & FLUID HEIGHT ---- */
html body .nh-hero .nh-carousel {
	position: relative !important;
	overflow: hidden !important;
	background: #343a41 !important;
	border-radius: 0px !important;
	width: 100% !important;
	height: 100% !important;
	display: flex !important;
	flex-direction: column !important;
}

html body .nh-hero .nh-carousel__track {
	display: flex !important;
	height: 100% !important;
	flex: 1 1 auto !important;
	transition: transform .5s ease !important;
}

html body .nh-hero .nh-carousel__slide {
	position: relative !important;
	min-width: 100% !important;
	width: 100% !important;
	height: 100% !important;
	flex-shrink: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: space-between !important;
	overflow: hidden !important;
	background: #343a41 !important;
}

html body .nh-hero .nh-carousel__img-wrap {
	position: relative !important;
	flex: 1 1 auto !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 0 !important;
	overflow: hidden !important;
}

html body .nh-hero .nh-carousel__img {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	min-width: 0 !important;
	min-height: 0 !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center !important;
	display: block !important;
}

/* Overlay / Barra Inferior Oscura */
html body .nh-hero .nh-carousel__overlay {
	flex: 0 0 auto !important;
	position: relative !important;
	width: 100% !important;
	background: var(--lc-dark) !important;
	padding: 18px 24px !important;
	margin: 0 !important;
	z-index: 5 !important;
	box-sizing: border-box !important;
}

html body .nh-hero .nh-carousel__overlay-content {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 16px !important;
	width: 100% !important;
}

html body .nh-hero .nh-carousel__title {
	color: #ffffff !important;
	font-size: 26px !important;
	font-weight: 800 !important;
	margin: 0 0 4px 0 !important;
	line-height: 1.1 !important;
	font-family: var(--lc-font) !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

html body .nh-hero .nh-carousel__subtitle {
	color: rgba(255, 255, 255, 0.9) !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	margin: 0 !important;
	line-height: 1.3 !important;
	font-family: var(--lc-font) !important;
}

html body .nh-hero .nh-carousel__cta {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	background: transparent !important;
	color: #ffffff !important;
	text-decoration: none !important;
	font-weight: 400 !important;
	font-size: 18px !important;
	font-family: var(--lc-font) !important;
	white-space: nowrap !important;
	flex-shrink: 0 !important;
	transition: opacity .2s !important;
	padding: 0 !important;
	border-radius: 0 !important;
}

html body .nh-hero .nh-carousel__cta span {
	margin: 0 !important;
	padding: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	position: relative;
	top: -3px;
}

html body .nh-hero .nh-carousel__cta:hover {
	opacity: .85 !important;
	background: transparent !important;
}

html body .nh-hero .nh-carousel__cta-arrow {
	width: 26px !important;
	height: 26px !important;
	flex-shrink: 0 !important;
}

/* Botones prev/next centrados dinámicamente sobre la imagen */
html body .nh-hero .nh-carousel__btn {
	position: absolute !important;
	top: calc(50% - 35px) !important;
	transform: translateY(-50%) !important;
	background: transparent !important;
	border: none !important;
	color: #ffffff !important;
	width: 40px !important;
	height: 40px !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	z-index: 10 !important;
	padding: 0 !important;
	opacity: 0.9 !important;
	transition: opacity 0.2s !important;
}

html body .nh-hero .nh-carousel__btn:hover {
	opacity: 1 !important;
	background: transparent !important;
}

html body .nh-hero .nh-carousel__btn--prev {
	left: 14px !important;
	border-radius: 0 !important;
}

html body .nh-hero .nh-carousel__btn--next {
	right: 14px !important;
	border-radius: 0 !important;
}

/* Dots flotantes dinámicamente sobre la barra inferior */
html body .nh-hero .nh-carousel__dots {
	position: absolute !important;
	bottom: calc(90px + 12px) !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	display: flex !important;
	gap: 8px !important;
	z-index: 10 !important;
	margin: 0 !important;
	padding: 0 !important;
}

html body .nh-hero .nh-carousel__dot {
	width: 12px !important;
	height: 12px !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.4) !important;
	border: none !important;
	cursor: pointer !important;
	padding: 0 !important;
	transition: background .2s, transform 0.2s !important;
}

html body .nh-hero .nh-carousel__dot.is-active {
	background: #ffffff !important;
	transform: scale(1.1) !important;
}

.nh-carousel__slide--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, .5);
	font-size: 14px;
}

/* ---- PANEL DERECHO HIGH SPECIFICITY ---- */
html body .nh-hero .nh-hero__panel {
	background-color: var(--lc-dark) !important;
	background-image: url('../images/escudo-bg.svg') !important;
	background-repeat: no-repeat !important;
	background-position: 125% 140% !important;
	background-size: auto !important;
	padding: 40px !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	gap: 28px !important;
	box-sizing: border-box !important;
	position: relative !important;
	overflow: hidden !important;
	height: 100% !important;
}

/* Buscador tipo Cápsula / Pill */
html body .nh-hero .nh-search {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

html body .nh-hero .nh-search__inner {
	display: flex !important;
	align-items: center !important;
	background: #ffffff !important;
	border-radius: 50px !important;
	overflow: hidden !important;
	padding: 0 20px !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

html body .nh-hero .nh-search__input {
	flex: 1 !important;
	border: none !important;
	outline: none !important;
	font-size: 14px !important;
	padding: 10px 0 !important;
	background: transparent !important;
	color: #2b2b2b !important;
	font-family: var(--lc-font) !important;
	box-shadow: none !important;
}

html body .nh-hero .nh-search__input::placeholder {
	color: #2b2b2b !important;
	opacity: 0.9 !important;
	font-family: var(--lc-font) !important;
}

html body .nh-hero .nh-search__btn {
	background: none !important;
	border: none !important;
	cursor: pointer !important;
	color: #2b2b2b !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 4px 0 !important;
	transition: opacity .2s !important;
}

html body .nh-hero .nh-search__btn:hover {
	opacity: 0.75 !important;
}

html body .nh-hero .nh-search__btn svg {
	width: 22px !important;
	height: 22px !important;
}

/* Quick links pills */
html body .nh-hero .nh-quicklinks {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	gap: 10px 10px !important;
	margin: 0 !important;
	padding: 0 !important;
}

html body .nh-hero .nh-quicklinks__pill {
	background: #0073e6 !important;
	color: #ffffff !important;
	text-decoration: none !important;
	font-size: 12px !important;
	font-weight: 400 !important;
	font-family: var(--lc-font) !important;
	height: 25px !important;
	line-height: 22px !important;
	padding: 0 12px !important;
	border-radius: 30px !important;
	transition: background .2s, transform .2s !important;
	white-space: nowrap !important;
	display: inline-block !important;
	text-align: center !important;
	vertical-align: middle !important;
	box-sizing: border-box !important;
}

html body .nh-hero .nh-quicklinks__pill:hover {
	background: #0056c6 !important;
	transform: translateY(-1px) !important;
}

/* =========================================================
   Sección "Las Condes al día" (Noticias)
   ========================================================= */

html body .nh-news-section {
	max-width: var(--lc-max-w) !important;
	margin: 50px auto 40px !important;
	padding: 0 !important;
	box-sizing: border-box !important;
}

html body .nh-news-section__header {
	margin-bottom: 30px !important;
	position: relative !important;
	display: flex !important;
	align-items: flex-end !important;
	justify-content: space-between !important;
	width: 100% !important;
	gap: 16px !important;
}

html body .nh-news-section__title {
	font-family: var(--lc-font) !important;
	font-size: 28px !important;
	font-weight: 700 !important;
	color: #1a1a1a !important;
	margin: 0 0 6px 0 !important;
	line-height: 1.2 !important;
	display: inline-block !important;
}

html body .nh-news-section__underline {
	width: 170px !important;
	height: 4px !important;
	background-color: var(--lc-gold) !important;
	border-radius: 2px !important;
}

html body .nh-news-section__link {
	font-family: var(--lc-font) !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	color: var(--lc-blue) !important;
	text-decoration: none !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	margin-left: auto !important;
	white-space: nowrap !important;
	transition: opacity 0.2s ease !important;
	margin-bottom: 2px !important;
}

html body .nh-news-section__link:hover {
	opacity: 0.8 !important;
	text-decoration: underline !important;
}

/* Grid de 3 Tarjetas */
html body .nh-news-section__grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 30px !important;
	align-items: stretch !important;
}

@media (max-width: 900px) {
	html body .nh-news-section__grid {
		grid-template-columns: 1fr !important;
	}
}

/* Tarjeta individual */
html body .nh-news-card {
	display: flex !important;
	flex-direction: column !important;
	background-color: var(--lc-blue) !important;
	border-radius: 20px !important;
	overflow: hidden !important;
	text-decoration: none !important;
	transition: transform 0.25s ease, box-shadow 0.25s ease !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06) !important;
}

html body .nh-news-card:hover {
	transform: translateY(-5px) !important;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
}

/* Imagen superior con Placeholder CSS puro */
html body .nh-news-card__img-wrap {
	width: 100% !important;
	height: 230px !important;
	position: relative !important;
	overflow: hidden !important;
	background-color: #e2e8f0 !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	flex-shrink: 0 !important;
}

html body .nh-news-card__img {
	position: relative !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	display: block !important;
	transition: transform 0.3s ease !important;
}

html body .nh-news-card:hover .nh-news-card__img {
	transform: scale(1.03) !important;
}

/* Cuerpo central azul con el título */
html body .nh-news-card__body {
	padding: 24px 20px !important;
	background-color: var(--lc-blue) !important;
	flex: 1 1 auto !important;
	display: flex !important;
	align-items: center !important;
}

html body .nh-news-card__title {
	font-family: var(--lc-font) !important;
	font-size: 17px !important;
	font-weight: 400 !important;
	color: #ffffff !important;
	margin: 0 !important;
	line-height: 1.35 !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 3 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

/* Barra inferior amarilla (CTA) */
html body .nh-news-card__cta {
	background-color: var(--lc-gold) !important;
	padding: 12px 20px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	flex-shrink: 0 !important;
	border-radius: 0 0 20px 20px !important;
}

html body .nh-news-card__cta span {
	font-family: var(--lc-font) !important;
	font-size: 16px !important;
	font-weight: 500 !important;
	color: var(--lc-blue) !important;
}

html body .nh-news-card__icon {
	width: 22px !important;
	height: 22px !important;
	flex-shrink: 0 !important;
}

/* =========================================================
   Sección de Accesos Directos (Barra azul con íconos)
   ========================================================= */

html body .nh-shortcuts-section {
	background-color: var(--lc-blue) !important;
	border-bottom: 5px solid var(--lc-gold) !important;
	width: 100% !important;
	margin: 50px 0 0 0 !important;
	padding: 35px 0 !important;
	box-sizing: border-box !important;
}

html body .nh-shortcuts-section__wrapper {
	position: relative !important;
	max-width: var(--lc-max-w) !important;
	margin: 0 auto !important;
	display: flex !important;
	align-items: center !important;
}

html body .nh-shortcuts-section__arrow {
	display: none !important;
}

html body .nh-shortcuts-section__inner {
	width: 100% !important;
	padding: 0 24px !important;
	display: flex !important;
	justify-content: space-around !important;
	align-items: flex-start !important;
	gap: 20px !important;
	flex-wrap: wrap !important;
}

html body .nh-shortcut-item {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	text-decoration: none !important;
	color: var(--lc-white) !important;
	width: 120px !important;
	margin: 0 auto !important;
	text-align: center !important;
	transition: transform 0.25s ease, opacity 0.25s ease !important;
}

html body .nh-shortcut-item:hover {
	transform: translateY(-4px) !important;
	opacity: 0.9 !important;
}

html body .nh-shortcut-item__icon-wrap {
	width: 64px !important;
	height: 64px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin-bottom: 12px !important;
}

html body .nh-shortcut-item__icon {
	max-width: 100% !important;
	max-height: 100% !important;
	width: auto !important;
	height: auto !important;
	display: block !important;
}

html body .nh-shortcut-item__title {
	font-family: var(--lc-font) !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	color: var(--lc-white) !important;
	line-height: 1.25 !important;
	text-align: center !important;
	word-wrap: break-word !important;
	height: 17.5px;
}

/* Dots Noticias (Ocultos en Desktop) */
html body .nh-news-section__dots {
	display: none !important;
}

/* =========================================================
   Sección Banner Tarjeta Vecino
   ========================================================= */

html body .nh-banner-vecino {
	width: 100% !important;
	background-color: var(--lc-dark) !important;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	padding: 50px 24px !important;
	box-sizing: border-box !important;
	margin: 45px 0 0 0 !important;
	position: relative !important;
}

html body .nh-banner-vecino__inner {
	max-width: var(--lc-max-w) !important;
	margin: 0 auto !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 50px !important;
	flex-wrap: wrap !important;
}

html body .nh-banner-vecino__card {
	flex-shrink: 0 !important;
	max-width: none !important;
}

html body .nh-banner-vecino__card img {
	max-width: 100% !important;
	width: auto !important;
	height: auto !important;
	display: block !important;
}

html body .nh-banner-vecino__content {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	text-align: center !important;
	max-width: 350px !important;
}

html body .nh-banner-vecino__logo {
	margin-bottom: 16px !important;
	max-width: 260px !important;
}

html body .nh-banner-vecino__logo img {
	width: 100% !important;
	height: auto !important;
	display: block !important;
}

html body .nh-banner-vecino__text {
	font-family: var(--lc-font) !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	color: var(--lc-white) !important;
	margin: 0 0 24px 0 !important;
	line-height: 1.4 !important;
	text-align: center !important;
}

html body .nh-banner-vecino__btn {
	display: inline-flex !important;
	align-items: center !important;
	gap: 10px !important;
	background-color: var(--lc-blue) !important;
	color: var(--lc-white) !important;
	font-family: var(--lc-font) !important;
	font-size: 16px !important;
	font-weight: 500 !important;
	padding: 10px 24px !important;
	border-radius: 30px !important;
	text-decoration: none !important;
	transition: background-color 0.25s ease, transform 0.25s ease !important;
}

html body .nh-banner-vecino__btn:hover {
	background-color: #0056c6 !important;
	transform: translateY(-2px) !important;
}

/* =========================================================
   FontAwesome 6 Brands Override (soporte ícono X / Twitter)
   ========================================================= */

html body .fa-x-twitter,
html body i.fa-x-twitter,
html body .fa-brands,
html body i.fa-brands {
	font-family: "Font Awesome 6 Brands" !important;
	font-weight: 400 !important;
}

/* =========================================================
   MENÚ MÓVIL OFFCANVAS Y RESPONSIVE (Móviles y Tablets)
   ========================================================= */

@media (max-width: 1199px) {

	/* Ocultar barra superior en móviles */
	html body .nh-topbar {
		display: none !important;
	}

	/* Ajustar mainbar en móviles */
	html body .nh-mainbar__inner {
		padding: 12px 16px !important;
	}

	html body .nh-mainbar__logo img {
		height: 38px !important;
	}

	/* Ocultar navegación desktop y teléfono del header en mobile */
	html body .nh-mainnav,
	html body .nh-mainbar__phone {
		display: none !important;
	}

	/* Botones de acción móvil (Lupa + Hamburguesa) */
	html body .nh-mainbar__mobile-actions {
		display: flex !important;
		align-items: center !important;
		gap: 8px !important;
		z-index: 100 !important;
		position: relative !important;
	}

	html body .nh-mobile-search-toggle,
	html body .nh-mobile-menu-toggle {
		background: transparent !important;
		border: none !important;
		color: var(--lc-gold) !important;
		font-size: 22px !important;
		cursor: pointer !important;
		padding: 6px 10px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		border-radius: 4px !important;
		z-index: 101 !important;
		pointer-events: auto !important;
		transition: color 0.2s !important;
	}

	html body .nh-mobile-search-toggle:hover,
	html body .nh-mobile-menu-toggle:hover {
		color: #ffffff !important;
	}
}

@media (min-width: 1200px) {

	html body .nh-mainbar__mobile-actions,
	html body .nh-mobile-search-bar,
	html body .nh-offcanvas {
		display: none !important;
	}
}

/* Buscador Desplegable Móvil */
html body .nh-mobile-search-bar {
	display: none !important;
	background: var(--lc-dark) !important;
	padding: 12px 16px !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 1199px) {
	html body .nh-mobile-search-bar.is-active {
		display: block !important;
	}
}

html body .nh-mobile-search-form {
	display: flex !important;
	align-items: center !important;
	background: #ffffff !important;
	border-radius: 25px !important;
	overflow: hidden !important;
	padding: 2px 4px 2px 16px !important;
}

html body .nh-mobile-search-input {
	flex: 1 !important;
	border: none !important;
	outline: none !important;
	font-size: 14px !important;
	padding: 8px 0 !important;
	color: #333333 !important;
	font-family: var(--lc-font) !important;
	background: transparent !important;
}

html body .nh-mobile-search-submit {
	background: var(--lc-gold) !important;
	color: var(--lc-dark) !important;
	border: none !important;
	border-radius: 20px !important;
	padding: 6px 16px !important;
	font-weight: 700 !important;
	font-size: 13px !important;
	cursor: pointer !important;
	font-family: var(--lc-font) !important;
}

/* ---------------------------------------------------------
   Estructura Offcanvas
   --------------------------------------------------------- */
html body .nh-offcanvas {
	position: fixed !important;
	inset: 0 !important;
	z-index: 99999 !important;
	visibility: hidden !important;
	pointer-events: none !important;
	transition: visibility 0.3s ease !important;
}

html body .nh-offcanvas.is-active {
	visibility: visible !important;
	pointer-events: auto !important;
}

/* Backdrop */
html body .nh-offcanvas__backdrop {
	position: absolute !important;
	inset: 0 !important;
	background: rgba(0, 0, 0, 0.65) !important;
	backdrop-filter: blur(4px) !important;
	opacity: 0 !important;
	transition: opacity 0.3s ease !important;
}

html body .nh-offcanvas.is-active .nh-offcanvas__backdrop {
	opacity: 1 !important;
}

/* Panel Lateral Offcanvas - DESPLIEGUE DESDE LA IZQUIERDA */
html body .nh-offcanvas__panel {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: auto !important;
	bottom: 0 !important;
	width: 85% !important;
	max-width: 380px !important;
	height: 100% !important;
	height: 100dvh !important;
	background: var(--lc-blue) !important;
	color: var(--lc-white) !important;
	display: flex !important;
	flex-direction: column !important;
	transform: translateX(-100%) !important;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
	box-shadow: 4px 0 25px rgba(0, 0, 0, 0.5) !important;
	z-index: 2 !important;
	overflow: hidden !important;
}

html body .nh-offcanvas.is-active .nh-offcanvas__panel {
	transform: translateX(0) !important;
}

/* Header Offcanvas (Primera parte AZUL) */
html body .nh-offcanvas__header {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	padding: 16px 20px !important;
	background: var(--lc-blue) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
	flex-shrink: 0 !important;
	z-index: 20 !important;
}

html body .nh-offcanvas__close {
	background: transparent !important;
	border: none !important;
	color: var(--lc-white) !important;
	font-size: 22px !important;
	cursor: pointer !important;
	padding: 4px 8px !important;
	transition: color 0.2s !important;
}

html body .nh-offcanvas__close:hover {
	color: var(--lc-gold) !important;
}

/* Cuerpo Offcanvas (Contenedor estático para vistas) */
html body .nh-offcanvas__body {
	flex: 1 1 auto !important;
	position: relative !important;
	overflow: hidden !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Vistas de Offcanvas (Drilldown Main & Subpanels aislados) */
html body .nh-offcanvas__view {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	height: 100% !important;
	box-sizing: border-box !important;
	padding: 20px !important;
	overflow-y: auto !important;
	background: var(--lc-blue) !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 20px !important;
	-webkit-overflow-scrolling: touch !important;
}

html body .nh-offcanvas__view--main {
	z-index: 1 !important;
	transform: translateX(0) !important;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
}

html body .nh-offcanvas__body.has-sub-active .nh-offcanvas__view--main {
	transform: translateX(-20%) !important;
	opacity: 0.4 !important;
}

html body .nh-offcanvas__view--sub {
	z-index: 10 !important;
	transform: translateX(100%) !important;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
	visibility: hidden !important;
}

html body .nh-offcanvas__view--sub.is-active {
	transform: translateX(0) !important;
	visibility: visible !important;
}

/* Botón Volver */
html body .nh-offcanvas__back-btn {
	background: rgba(255, 255, 255, 0.12) !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	color: #ffffff !important;
	font-family: var(--lc-font) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	padding: 8px 14px !important;
	border-radius: 20px !important;
	cursor: pointer !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	align-self: flex-start !important;
	transition: background 0.2s !important;
	margin-bottom: 4px !important;
}

html body .nh-offcanvas__back-btn:hover {
	background: rgba(255, 255, 255, 0.25) !important;
}

/* Sub-header */
html body .nh-offcanvas__sub-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
	padding-bottom: 12px !important;
	margin-bottom: 4px !important;
}

html body .nh-offcanvas__sub-header h3 {
	color: #ffffff !important;
	font-family: var(--lc-font) !important;
	font-size: 20px !important;
	font-weight: 700 !important;
	margin: 0 0 4px 0 !important;
}

html body .nh-offcanvas__cat-main-link {
	color: var(--lc-gold) !important;
	font-size: 13px !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	display: inline-block !important;
}

html body .nh-offcanvas__cat-main-link:hover {
	text-decoration: underline !important;
}

/* Botón Drilldown (Nivel 1 -> Nivel 2 & Nivel 2 -> Nivel 3) */
html body .nh-offcanvas__drilldown-btn {
	width: 100% !important;
	background: transparent !important;
	border: none !important;
	color: #ffffff !important;
	font-family: var(--lc-font) !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	padding: 12px 0 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	cursor: pointer !important;
	text-align: left !important;
	transition: color 0.2s !important;
}

html body .nh-offcanvas__drilldown-btn:hover {
	color: var(--lc-gold) !important;
}

html body .nh-offcanvas__drilldown-btn i {
	font-size: 12px !important;
	opacity: 0.7 !important;
}

/* Títulos de Sección */
html body .nh-offcanvas__section-title {
	font-family: var(--lc-font) !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	color: var(--lc-gold) !important;
	margin-bottom: 12px !important;
	display: block !important;
}

/* Menú Navegación List */
html body .nh-offcanvas__menu {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 4px !important;
}

html body .nh-offcanvas__item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

html body .nh-offcanvas__link {
	color: var(--lc-white) !important;
	text-decoration: none !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	padding: 12px 0 !important;
	display: block !important;
	transition: color 0.2s !important;
}

html body .nh-offcanvas__link:hover {
	color: var(--lc-gold) !important;
}

html body .nh-offcanvas__toggle-sub,
html body .nh-offcanvas__toggle-sub2 {
	background: transparent !important;
	border: none !important;
	color: rgba(255, 255, 255, 0.6) !important;
	font-size: 14px !important;
	padding: 10px !important;
	cursor: pointer !important;
	transition: transform 0.3s ease, color 0.2s !important;
}

html body .nh-offcanvas__item.is-open>.nh-offcanvas__item-head .nh-offcanvas__toggle-sub,
html body .nh-offcanvas__subitem.is-open>.nh-offcanvas__subitem-head .nh-offcanvas__toggle-sub2 {
	transform: rotate(180deg) !important;
	color: var(--lc-gold) !important;
}

/* Submenú Nivel 2 */
html body .nh-offcanvas__submenu {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 0 8px 14px !important;
	display: none !important;
	flex-direction: column !important;
	gap: 6px !important;
}

html body .nh-offcanvas__item.is-open>.nh-offcanvas__submenu {
	display: flex !important;
}

html body .nh-offcanvas__subitem-head {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
}

html body .nh-offcanvas__sublink,
html body .nh-offcanvas__sublink-text {
	color: rgba(255, 255, 255, 0.85) !important;
	text-decoration: none !important;
	font-size: 14px !important;
	padding: 6px 0 !important;
	flex: 1 !important;
}

html body .nh-offcanvas__sublink:hover {
	color: var(--lc-gold) !important;
}

/* Submenú Nivel 3 */
html body .nh-offcanvas__submenu-level3 {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 0 6px 12px !important;
	display: none !important;
	flex-direction: column !important;
	gap: 4px !important;
}

html body .nh-offcanvas__subitem.is-open>.nh-offcanvas__submenu-level3 {
	display: flex !important;
}

html body .nh-offcanvas__level3-link {
	color: rgba(255, 255, 255, 0.7) !important;
	text-decoration: none !important;
	font-size: 13px !important;
	padding: 4px 0 !important;
	display: block !important;
}

html body .nh-offcanvas__level3-link:hover {
	color: var(--lc-gold) !important;
}

/* 3. Menú Dark (Abajo del Menú Principal - Sección Fondo Oscuro Diferenciado) */
html body .nh-offcanvas__dark-menu {
	padding: 16px !important;
	background: #14181d !important;
	border-radius: 8px !important;
	border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

html body .nh-offcanvas__dark-links {
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
}

html body .nh-offcanvas__dark-links .nh-topbar__link-group {
	border-right: none !important;
	padding: 4px 0 !important;
}

/* 4. Redes Sociales & Teléfono Seguridad */
html body .nh-offcanvas__footer {
	padding-top: 16px !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
	margin-top: auto !important;
}

html body .nh-offcanvas__social {
	display: flex !important;
	align-items: center !important;
	gap: 16px !important;
	margin-bottom: 16px !important;
}

html body .nh-offcanvas__social a {
	color: var(--lc-white) !important;
	font-size: 18px !important;
	text-decoration: none !important;
	transition: color 0.2s !important;
}

html body .nh-offcanvas__social a:hover {
	color: var(--lc-gold) !important;
}

html body .nh-offcanvas__phone-btn {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	background: var(--lc-gold) !important;
	color: var(--lc-dark) !important;
	text-decoration: none !important;
	font-family: var(--lc-font) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	padding: 10px !important;
	border-radius: 8px !important;
	transition: background 0.2s !important;
}

html body .nh-offcanvas__phone-btn:hover {
	background: #ffd034 !important;
}

/* =========================================================
   HERO SECTION RESPONSIVE MÓVIL (< 992px)
   ========================================================= */

@media (max-width: 991px) {

	/* Grid vertical stack */
	html body .nh-hero {
		grid-template-columns: 1fr !important;
		height: auto !important;
		margin: 0 auto !important;
		gap: 0 !important;
		border-radius: 0 !important;
	}

	/* Carrusel altura responsiva */
	html body .nh-hero .nh-carousel {
		height: auto !important;
		min-height: 0 !important;
	}

	html body .nh-hero .nh-carousel__slide {
		height: auto !important;
	}

	/* Imagen en mobile con proporción nativa 901x340 */
	html body .nh-hero .nh-carousel__img-wrap {
		width: 100% !important;
		height: auto !important;
		aspect-ratio: 901 / 340 !important;
		min-height: 160px !important;
		position: relative !important;
		flex: none !important;
	}

	html body .nh-hero .nh-carousel__img {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		object-position: center !important;
	}

	/* Botones flechas prev/next centradas sobre la imagen */
	html body .nh-hero .nh-carousel__btn {
		top: calc(50% - 67px) !important;
		transform: translateY(-50%) !important;
		width: 36px !important;
		height: 36px !important;
		z-index: 12 !important;
	}

	html body .nh-hero .nh-carousel__btn--prev {
		left: 8px !important;
	}

	html body .nh-hero .nh-carousel__btn--next {
		right: 8px !important;
	}

	/* Dots flotantes justo 12px sobre la caja de texto de 135px */
	html body .nh-hero .nh-carousel__dots {
		position: absolute !important;
		bottom: calc(135px + 12px) !important;
		top: auto !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
		z-index: 12 !important;
		gap: 6px !important;
	}

	html body .nh-hero .nh-carousel__dot {
		width: 8px !important;
		height: 8px !important;
	}

	/* Barra inferior oscura de texto del slide (135px de alto según diseño) */
	html body .nh-hero .nh-carousel__overlay {
		background: #2b3036 !important;
		height: 135px !important;
		min-height: 135px !important;
		padding: 16px 20px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		box-sizing: border-box !important;
		text-align: center !important;
	}

	html body .nh-hero .nh-carousel__overlay-content {
		flex-direction: column !important;
		align-items: center !important;
		text-align: center !important;
		gap: 12px !important;
	}

	html body .nh-hero .nh-carousel__title {
		font-size: 16px !important;
		font-weight: 500 !important;
		line-height: 1.4 !important;
		color: #ffffff !important;
		margin: 0 !important;
		text-align: center !important;
	}

	html body .nh-hero .nh-carousel__subtitle {
		font-size: 14px !important;
		text-align: center !important;
		margin-top: 4px !important;
	}

	html body .nh-hero .nh-carousel__cta {
		font-size: 15px !important;
		font-weight: 500 !important;
		color: #ffffff !important;
		justify-content: center !important;
		margin-top: 4px !important;
	}

	/* Panel inferior (Buscador + Pills) */
	html body .nh-hero .nh-hero__panel {
		padding: 32px 20px 40px !important;
		gap: 20px !important;
		height: auto !important;
		margin: 20px 0;
		background-position: 175% 80px !important;
	}

	/* Input cápsula blanco */
	html body .nh-hero .nh-search__inner {
		background: #ffffff !important;
		border-radius: 30px !important;
		padding: 4px 18px !important;
		box-shadow: none !important;
	}

	html body .nh-hero .nh-search__input {
		font-size: 15px !important;
		color: #333333 !important;
		padding: 10px 0 !important;
	}

	html body .nh-hero .nh-search__input::placeholder {
		color: #555555 !important;
		font-size: 15px !important;
	}

	html body .nh-hero .nh-search__btn {
		color: #333333 !important;
	}

	/* Pills en mobile */
	html body .nh-hero .nh-quicklinks {
		gap: 10px 8px !important;
		justify-content: flex-start !important;
		align-items: center !important;
	}

	html body .nh-hero .nh-quicklinks__pill {
		background: #0073e6 !important;
		color: #ffffff !important;
		font-size: 12px !important;
		height: 25px !important;
		line-height: 22px !important;
		padding: 0 12px !important;
		border-radius: 25px !important;
		display: inline-block !important;
		text-align: center !important;
		vertical-align: middle !important;
		box-sizing: border-box !important;
	}

	/* =========================================================
	   SECCIÓN NOTICIAS (CARRUSEL MÓVIL 1 ITEM A LA VEZ)
	   ========================================================= */
	html body .nh-news-section {
		margin: 35px auto 30px !important;
		padding: 0 20px !important;
		box-sizing: border-box !important;
		overflow: hidden !important;
	}

	html body .nh-news-section__header {
		margin-bottom: 20px !important;
	}

	html body .nh-news-section__grid {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch !important;
		gap: 20px !important;
		padding: 4px 0 15px 0 !important;
		margin: 0 !important;
		scrollbar-width: none !important;
		-ms-overflow-style: none !important;
	}

	html body .nh-news-section__grid::-webkit-scrollbar {
		display: none !important;
	}

	html body .nh-news-card {
		flex: 0 0 100% !important;
		min-width: 100% !important;
		max-width: 100% !important;
		width: 100% !important;
		box-sizing: border-box !important;
		scroll-snap-align: start !important;
		scroll-snap-stop: always !important;
	}

	/* Dots para carrusel de Noticias */
	html body .nh-news-section__dots {
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		gap: 8px !important;
		margin-top: 15px !important;
	}

	html body .nh-news-section__dot {
		width: 9px !important;
		height: 9px !important;
		border-radius: 50% !important;
		background: #cbd5e1 !important;
		border: none !important;
		padding: 0 !important;
		cursor: pointer !important;
		transition: background 0.3s ease, transform 0.3s ease !important;
	}

	html body .nh-news-section__dot.is-active {
		background: var(--lc-blue) !important;
		transform: scale(1.25) !important;
	}

	/* =========================================================
	   ACCESOS DIRECTOS (SHORTCUTS CARRUSEL MÓVIL OWL CAROUSEL)
	   ========================================================= */
	html body .nh-shortcuts-section {
		padding: 25px 0 !important;
		margin-top: 30px !important;
		overflow: hidden !important;
	}

	html body .nh-shortcuts-section__wrapper {
		position: relative !important;
		width: 100% !important;
		display: block !important;
		overflow: hidden !important;
	}

	html body .nh-shortcuts-section__inner.owl-carousel {
		display: block !important;
		margin: 0 auto !important;
		width: 72% !important;
	}

	html body .nh-shortcuts-section__inner.owl-carousel .owl-item {
		display: flex !important;
		justify-content: center !important;
	}

	html body .nh-shortcuts-section__inner.owl-carousel .nh-shortcut-item {
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100% !important;
		flex: none !important;
		padding: 0 10px !important;
		box-sizing: border-box !important;
		margin: 0 auto !important;
	}

	html body .nh-shortcut-item:hover {
		transform: none !important;
	}

	/* Flechas CÍRCULO PERFECTO en Amarillo con Chevrón Azul */
	html body .nh-shortcuts-section__arrow {
		display: flex !important;
		position: absolute !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
		width: 34px !important;
		height: 34px !important;
		min-width: 34px !important;
		min-height: 34px !important;
		max-width: 34px !important;
		max-height: 34px !important;
		border-radius: 50% !important;
		aspect-ratio: 1 / 1 !important;
		padding: 0 !important;
		margin: 0 !important;
		background: var(--lc-gold) !important;
		border: none !important;
		color: var(--lc-blue) !important;
		align-items: center !important;
		justify-content: center !important;
		cursor: pointer !important;
		z-index: 10 !important;
		font-size: 14px !important;
		font-weight: 700 !important;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
		box-sizing: border-box !important;
		line-height: 1 !important;
		transition: background 0.2s, transform 0.2s !important;
	}

	html body .nh-shortcuts-section__arrow:hover {
		background: #ffd034 !important;
		transform: translateY(-50%) scale(1.08) !important;
	}

	html body .nh-shortcuts-section__arrow--prev {
		left: 10px !important;
	}

	html body .nh-shortcuts-section__arrow--next {
		right: 10px !important;
	}

	/* =============
	   BANNER VECINO
	   ============= */

	html body .nh-banner-vecino {
		position: relative !important;
		background-position: 23% center !important;
	}

	html body .nh-banner-vecino::before {
		content: "" !important;
		position: absolute !important;
		inset: 0 !important;
		background: rgba(0, 0, 0, 0.55) !important;
		z-index: 1 !important;
	}

	html body .nh-banner-vecino__inner {
		position: relative !important;
		z-index: 2 !important;
	}

	/* =========================================================
	   FOOTER RESPONSIVE MÓVIL (SEGÚN DISEÑO)
	   ========================================================= */
	html body .nh-footer {
		background: #2b3036 !important;
		padding: 40px 20px 40px !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
	}

	html body .nh-footer__top {
		padding: 0 !important;
		width: 100% !important;
	}

	html body .nh-footer__top .nh-footer__inner {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		text-align: center !important;
		gap: 32px !important;
		width: 100% !important;
		max-width: 400px !important;
		margin: 0 auto !important;
		padding: 0 !important;
	}

	/* 1. Bloque Alcaldesa */
	html body .nh-footer__col--alcaldesa {
		order: 1 !important;
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 16px !important;
		width: 100% !important;
		max-width: 420px !important;
		text-align: left !important;
		margin-bottom: 8px !important;
	}

	html body .nh-footer__alcaldesa-img {
		width: 105px !important;
		height: 105px !important;
		min-width: 105px !important;
		min-height: 105px !important;
		border-radius: 50% !important;
		object-fit: cover !important;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
	}

	html body .nh-footer__alcaldesa-info {
		display: flex !important;
		flex-direction: column !important;
		gap: 4px !important;
		text-align: left !important;
	}

	html body .nh-footer__alcaldesa-name {
		font-family: var(--lc-font) !important;
		font-size: 17px !important;
		font-weight: 400 !important;
		color: #ffffff !important;
		line-height: 1.2 !important;
		max-width: 150px !important;
	}

	html body .nh-footer__alcaldesa-title {
		font-family: var(--lc-font) !important;
		font-size: 15px !important;
		font-weight: 700 !important;
		color: var(--lc-gold) !important;
	}

	/* 2. Bloque Logo Municipalidad */
	html body .nh-footer__col--logo {
		order: 2 !important;
		width: 100% !important;
		display: flex !important;
		justify-content: center !important;
	}

	html body .nh-footer__logo img {
		height: 93px !important;
		width: auto !important;
		max-width: 260px !important;
	}

	/* 3. Bloque Contacto */
	html body .nh-footer__col--contacto {
		order: 3 !important;
		width: 100% !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		text-align: center !important;
		gap: 12px !important;
	}

	html body .nh-footer__col-label {
		font-family: var(--lc-font) !important;
		font-size: 18px !important;
		font-weight: 700 !important;
		color: var(--lc-gold) !important;
		margin-bottom: 4px !important;
		display: block !important;
		text-align: center !important;
	}

	html body .nh-footer__contact-item {
		color: #ffffff !important;
		font-family: var(--lc-font) !important;
		font-size: 15px !important;
		display: flex !important;
		align-items: flex-start !important;
		justify-content: flex-start !important;
		gap: 12px !important;
		line-height: 1.35 !important;
		text-align: left !important;
		width: 100% !important;
		max-width: 310px !important;
	}

	html body .nh-footer__contact-item i {
		color: var(--lc-gold) !important;
		font-size: 16px !important;
		flex-shrink: 0 !important;
		margin-top: 3px !important;
	}

	/* 4. Bloque Síguenos */
	html body .nh-footer__col--social {
		order: 4 !important;
		width: 100% !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		gap: 12px !important;
	}

	html body .nh-footer__social-grid {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 20px !important;
	}

	html body .nh-footer__social-link,
	html body .nh-footer__social-link i {
		color: #ffffff !important;
		font-size: 20px !important;
		text-decoration: none !important;
		transition: color 0.2s !important;
	}

	html body .nh-footer__social-link:hover,
	html body .nh-footer__social-link:hover i {
		color: var(--lc-gold) !important;
	}

	/* Ocultar divisor hr en mobile */
	html body .nh-footer__divider {
		display: none !important;
	}

	/* 5. Bloque Información de apoyo */
	html body .nh-footer__bottom {
		width: 100% !important;
		padding: 0 !important;
		background: transparent !important;
		margin-top: 32px !important;
	}

	html body .nh-footer__bottom .nh-footer__inner {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		gap: 12px !important;
		width: 100% !important;
	}

	html body .nh-footer__bottom-label {
		font-family: var(--lc-font) !important;
		font-size: 18px !important;
		font-weight: 700 !important;
		color: var(--lc-gold) !important;
		margin: 0 0 4px 0 !important;
		text-align: center !important;
		width: 100% !important;
	}

	html body .nh-footer__bottom-nav {
		width: 100% !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		text-align: center !important;
		gap: 8px !important;
	}

	html body .nh-footer__bottom-nav ul {
		list-style: none !important;
		margin: 0 !important;
		padding: 0 !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		gap: 8px !important;
		width: 100% !important;
	}

	html body .nh-footer__bottom-nav li {
		width: 100% !important;
		text-align: center !important;
	}

	html body .nh-footer__bottom-nav a {
		color: #ffffff !important;
		font-family: var(--lc-font) !important;
		font-size: 15px !important;
		font-weight: 400 !important;
		text-decoration: none !important;
		text-align: center !important;
		display: block !important;
		width: 100% !important;
		transition: color 0.2s !important;
	}

	html body .nh-footer__bottom-nav a:hover {
		color: var(--lc-gold) !important;
	}

}

/* =========================================================
   HERO SECTION RESPONSIVE TABLET (< 992px)
   ========================================================= */

@media (min-width: 992px) and (max-width: 1380px) {
	html body .nh-header .nh-topbar {
		padding: 0 20px !important;
	}

	html body .nh-hero {
		padding: 0 20px !important;
	}

	html body .nh-news-section {
		padding: 0 20px !important;
	}
}

/* =========================================================
   HEADER RESPONSIVE DESKTOP MEDIANO (1200px - 1380px)
   ========================================================= */

@media (min-width: 1200px) and (max-width: 1380px) {

	/* Ocultar el cuadro 1402 de la barra principal para liberar espacio */
	html body .nh-mainbar__phone {
		display: none !important;
	}

	/* Optimización de espacio y tipografía para el menú principal */
	html body .nh-mainbar__inner {
		justify-content: space-between !important;
		gap: 12px !important;
		padding: 0 15px !important;
	}

	html body .nh-mainnav {
		gap: 2px !important;
	}

	html body .nh-mainnav__item {
		font-size: 13.5px !important;
		padding: 6px 8px !important;
		letter-spacing: -0.01em !important;
	}

	html body .nh-mainbar__logo img {
		height: 42px !important;
	}
}

/* =========================================================
   BARRA FLOTANTE LATERAL (WhatsApp, Accesibilidad, Atención al Vecino)
   ========================================================= */
.lc-floating-bar {
	position: fixed;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 99990;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	transition: right 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

/* Desplazar la barra flotante a la izquierda cuando Pojo Toolbar se despliega */
.lc-floating-bar.is-pojo-open,
body:has(#pojo-a11y-toolbar.pojo-a11y-toolbar-open) .lc-floating-bar {
	right: 196px !important;
}

/* 1. Botón WhatsApp */
.lc-float-btn--whatsapp {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	text-decoration: none;
	box-sizing: border-box;
	flex-shrink: 0;
}

.lc-float-btn--whatsapp:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.lc-float-icon-wa {
	width: 30px;
	height: 30px;
}

/* 2. Botón Accesibilidad (Trigger Pojo) */
.lc-float-btn--pojo {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 50px !important;
	height: 50px !important;
	min-width: 50px !important;
	min-height: 50px !important;
	max-width: 50px !important;
	max-height: 50px !important;
	background-color: #1664C0 !important;
	border: none !important;
	border-radius: 50% !important;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
	transition: transform 0.25s ease, box-shadow 0.25s ease !important;
	cursor: pointer !important;
	padding: 15px !important;
	box-sizing: border-box !important;
	flex-shrink: 0 !important;
}

.lc-float-btn--pojo:hover {
	transform: scale(1.1) !important;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22) !important;
}

.lc-float-icon-a11y {
	width: 26px !important;
	height: 26px !important;
}

/* Ocultar el botón flotante toggle original de Pojo */
#pojo-a11y-toolbar .pojo-a11y-toolbar-toggle {
	display: none !important;
}

/* 3. Botón Atención al Vecino */
.lc-float-btn--vecino {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 50px;
	height: 200px;
	background-color: #ffb800;
	border-radius: 25px;
	padding: 16px 0;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	box-sizing: border-box;
	overflow: hidden;
	flex-shrink: 0;
}

.lc-float-btn--vecino:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.lc-float-btn__text-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.lc-float-btn__text {
	white-space: nowrap;
	transform: rotate(-90deg) translateY(-3px);
	transform-origin: center center;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.3px;
	font-family: inherit;
	display: inline-block;
}

.lc-float-btn__icon {
	width: 24px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	margin-bottom: 2px;
}

.lc-float-icon-chat {
	width: 24px;
	height: 24px;
}

@media (max-width: 768px) {
	.lc-floating-bar {
		position: fixed !important;
		bottom: 70px !important;
		top: auto !important;
		right: 12px !important;
		transform: none !important;
		gap: 10px !important;
		z-index: 99990 !important;
	}

	.lc-floating-bar.is-pojo-open,
	body:has(#pojo-a11y-toolbar.pojo-a11y-toolbar-open) .lc-floating-bar {
		right: 190px !important;
	}

	.lc-float-btn--whatsapp {
		width: 44px !important;
		height: 44px !important;
	}

	.lc-float-btn--pojo {
		width: 44px !important;
		height: 44px !important;
		min-width: 44px !important;
		min-height: 44px !important;
	}

	/* Barra horizontal inferior fija en móviles: "Atención al vecino" */
	.lc-float-btn--vecino {
		position: fixed !important;
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		top: auto !important;
		width: 100% !important;
		height: 56px !important;
		background-color: #efb810 !important;
		border-radius: 20px 20px 0 0 !important;
		padding: 0 20px !important;
		margin: 0 !important;
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 12px !important;
		box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15) !important;
		z-index: 99995 !important;
		transform: none !important;
	}

	.lc-float-btn--vecino:hover {
		transform: none !important;
		box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2) !important;
	}

	.lc-float-btn--vecino .lc-float-btn__icon {
		order: 1 !important;
		width: 32px !important;
		height: 32px !important;
		margin: 0 !important;
		flex-shrink: 0 !important;
	}

	.lc-float-btn--vecino .lc-float-btn__icon svg {
		width: 30px !important;
		height: 30px !important;
	}

	.lc-float-btn--vecino .lc-float-btn__text-wrap {
		order: 2 !important;
		flex: none !important;
		display: flex !important;
		align-items: center !important;
		justify-content: flex-start !important;
		width: auto !important;
	}

	.lc-float-btn--vecino .lc-float-btn__text {
		transform: none !important;
		font-size: 17px !important;
		font-weight: 700 !important;
		color: #ffffff !important;
		white-space: nowrap !important;
		letter-spacing: 0 !important;
		display: inline-block !important;
	}
}