:root {
	--color-texto: #fcfcfc;
	--color-texto-titulo: #0f172a;
	--grosor-bordes: 1px;
	--redondeado-bordes: 10px;
	--color-boton: #0052CC;
	--color-boton-cancelar: #64B3FF;
	--color-borde-boton: color-mix(in srgb, var(--color-boton) 78%, #000000);
	--color-borde-boton-cancelar: color-mix(in srgb, var(--color-boton-cancelar) 78%, #000000);
	--color-borde: #64B3FF;
	--color-fondo: #FFF;
	--color-pie-cabecera: #121078;
	--color-fondo-card: #121078;
}

body {
    display: flex;
    height: 100%;
    margin: 0;
    flex-direction: column;
}

body.hes-body-private {
	background-color: var(--color-fondo);
}

body.hes-body-private .card,
body.hes-body-private .card[class*="border-"] {
	background-color: var(--color-fondo-card);
	border-color: var(--color-borde) !important;
	border-width: var(--grosor-bordes);
	border-style: solid;
	border-radius: var(--redondeado-bordes);
}

.horarios-calendar-column .horarios-view-switcher {
	width: min(100%, 12rem);
	margin-right: auto;
	margin-left: 0;
}

.horarios-calendar-column .horarios-view-switcher .form-select {
	width: 100%;
}

.hes-fondo-aliceblue {
    background-color: aliceblue !important;
}

.hes-fondo-blanco-sombreado {
	background-color: var(--color-fondo-card);
	border: var(--grosor-bordes) solid var(--color-borde);
	border-radius: var(--redondeado-bordes);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
	color: var(--color-texto);
}

.hes-fondo-blanco-sombreado .form-label,
.hes-fondo-blanco-sombreado h1,
.hes-fondo-blanco-sombreado h2,
.hes-fondo-blanco-sombreado h3 {
	color: var(--color-texto-titulo);
}

.hes-fondo-blanco-sombreado .form-control {
	border-color: var(--color-borde);
	border-width: var(--grosor-bordes);
	border-radius: var(--redondeado-bordes);
}

.hes-fondo-blanco-sombreado .form-control:focus {
	border-color: var(--color-boton);
	box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--color-boton) 20%, transparent);
}

.hes-asterisco {
	color: var(--color-boton-cancelar);
	font-weight: bold;
}

footer {
	background-color: var(--color-pie-cabecera);
    padding: 20px 0;
}

footer a {
    text-decoration: none;
    color: var(--color-boton);
}

footer a:hover {
    color: var(--color-boton-cancelar);
}

body.hes-body-private footer,
body.hes-body-private footer a,
body.hes-body-private footer a:hover {
	color: var(--color-texto);
}

.navbar-redes-sociales {
	display: flex;
	margin-right: 80px;
	text-align: center;
}

.navbar-contacto {
	text-align: center;
	margin-top: 20px;
	margin-bottom: 1rem;
}
.hes-btn-floating img {
	width: 2rem;
	height: 2rem;
}

.hes-btn-floating {
	padding: 0.3rem;
}
.hes-btn {
	flex: 1 1 auto;
	margin: 10px 0;
	padding: 20px;
	text-align: center;
	text-transform: uppercase;
	transition: 0.5s;
	background-size: 200% auto;
	color: var(--color-texto);
	border-radius: 50px;
	text-decoration: none;
	background-color: var(--color-boton);
	border: none;
	min-width: 140px;
	font-weight: bold;
}

/* Boton estandar para panel privado (se combina con clases Bootstrap). */
.hes-btn-private {
	background-color: var(--color-boton) !important;
	border-color: var(--color-borde-boton) !important;
	border-width: var(--grosor-bordes) !important;
	color: var(--color-texto) !important;
	border-radius: var(--redondeado-bordes);
	font-weight: 600;
	letter-spacing: 0.01em;
	padding: 0.5rem 1rem;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.hes-btn-private.btn-sm {
	border-radius: 8px;
	padding: 0.3rem 0.7rem;
}

.hes-btn-private:hover {
	background-color: color-mix(in srgb, var(--color-boton) 82%, #000000) !important;
	border-color: color-mix(in srgb, var(--color-borde-boton) 82%, #000000) !important;
	color: var(--color-texto) !important;
	transform: translateY(-1px);
}

.hes-btn-private:focus-visible {
	outline: 2px solid color-mix(in srgb, var(--color-boton) 55%, transparent);
	outline-offset: 1px;
}

.hes-btn-private:disabled,
.hes-btn-private.disabled {
	opacity: 0.65;
	transform: none;
	box-shadow: none;
}

/* Variante de peligro/eliminacion para botones privados. */
.hes-btn-private.hes-btn-private-danger {
	background-color: var(--color-boton-cancelar) !important;
	border-color: var(--color-borde-boton-cancelar) !important;
	color: var(--color-texto) !important;
}

.hes-btn-private.hes-btn-private-danger:hover {
	background-color: color-mix(in srgb, var(--color-boton-cancelar) 82%, #000000) !important;
	border-color: color-mix(in srgb, var(--color-borde-boton-cancelar) 82%, #000000) !important;
	color: var(--color-texto) !important;
}

.hes-btn-private.hes-btn-private-danger:focus-visible {
	outline-color: color-mix(in srgb, var(--color-boton-cancelar) 55%, transparent);
}

body.hes-body-private .btn:not(.hes-btn-private-danger):not(.btn-link):not(.btn-outline-danger):not(.btn-danger) {
	background-color: var(--color-boton) !important;
	border-color: var(--color-borde-boton) !important;
	border-width: var(--grosor-bordes) !important;
	border-radius: var(--redondeado-bordes) !important;
	color: var(--color-texto) !important;
}

body.hes-body-private .btn:not(.hes-btn-private-danger):not(.btn-link):not(.btn-outline-danger):not(.btn-danger):hover,
body.hes-body-private .btn:not(.hes-btn-private-danger):not(.btn-link):not(.btn-outline-danger):not(.btn-danger):focus {
	background-color: color-mix(in srgb, var(--color-boton) 82%, #000000) !important;
	border-color: color-mix(in srgb, var(--color-borde-boton) 82%, #000000) !important;
	color: var(--color-texto) !important;
}

body.hes-body-private .btn.hes-btn-private-danger,
body.hes-body-private .btn.btn-danger,
body.hes-body-private .btn.btn-outline-danger {
	background-color: var(--color-boton-cancelar) !important;
	border-color: var(--color-borde-boton-cancelar) !important;
	border-width: var(--grosor-bordes) !important;
	border-radius: var(--redondeado-bordes) !important;
	color: var(--color-texto) !important;
}

body.hes-body-private .btn.hes-btn-private-danger:hover,
body.hes-body-private .btn.hes-btn-private-danger:focus,
body.hes-body-private .btn.btn-danger:hover,
body.hes-body-private .btn.btn-danger:focus,
body.hes-body-private .btn.btn-outline-danger:hover,
body.hes-body-private .btn.btn-outline-danger:focus {
	background-color: color-mix(in srgb, var(--color-boton-cancelar) 82%, #000000) !important;
	border-color: color-mix(in srgb, var(--color-borde-boton-cancelar) 82%, #000000) !important;
	color: var(--color-texto) !important;
}

/* Tabla estandar para panel privado. */
.hes-table-private {
	--hes-table-border: color-mix(in srgb, var(--color-borde) 45%, transparent);
	--hes-table-head-bg: #f8fafc;
	--hes-table-row-alt: #f8fafc;
	--hes-table-row-hover: #eef4ff;
	border-collapse: separate;
	border-spacing: 0;
}

.hes-table-private > :not(caption) > * > * {
	padding: 0.62rem 0.75rem;
	vertical-align: middle;
	border-bottom: 1px solid var(--hes-table-border);
}

.hes-table-private > thead > tr > th {
	background-color: var(--hes-table-head-bg);
	color: #334155;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}

.hes-table-private.table-striped > tbody > tr:nth-of-type(odd) > * {
	background-color: var(--hes-table-row-alt);
}

.hes-table-private > tbody > tr:hover > * {
	background-color: var(--hes-table-row-hover);
}

.hes-table-private .hes-btn-private {
	white-space: nowrap;
}

.hes-table-empty-cell {
	color: #64748b;
	font-weight: 600;
}

/* Checkbox estandar para panel privado. */
.hes-input-checkbox-private {
	width: 1.05rem;
	height: 1.05rem;
	border: 2px solid #94a3b8;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.08);
}

.hes-input-checkbox-private:focus {
	border-color: #0d6efd;
	box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.18);
}

.hes-input-checkbox-private:checked {
	background-color: #0d6efd;
	border-color: #0d6efd;
}

/* Input numerico estandar para panel privado. */
.hes-input-number-private {
	border-radius: 10px;
	font-weight: 600;
	min-height: 40px;
	border-color: #cbd5e1;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hes-input-number-private:focus {
	border-color: #0d6efd;
	box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.18);
}

/* Input de fecha estandar para panel privado. */
.hes-input-date-private {
	border-radius: 10px;
	font-weight: 600;
	min-height: 40px;
	border-color: #cbd5e1;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hes-input-date-private:focus {
	border-color: #0d6efd;
	box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.18);
}

/* Input de texto estandar para panel privado. */
.hes-input-text-private {
	border-radius: 10px;
	font-weight: 600;
	min-height: 40px;
	border-color: #cbd5e1;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hes-input-text-private:focus {
	border-color: #0d6efd;
	box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.18);
}

/* Select nativo con acabado consistente y accesible. */
select.form-select,
select.form-control,
.hes-select-private {
	appearance: none;
	background-color: #ffffff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 5.25 7 9l4-3.75' stroke='%23475569' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: right 0.8rem center;
	background-repeat: no-repeat;
	background-size: 14px 14px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), inset 0 1px 1px rgba(15, 23, 42, 0.025);
	color: #172033;
	cursor: pointer;
	font-weight: 600;
	line-height: 1.35;
	min-height: 42px;
	padding: 0.58rem 2.55rem 0.58rem 0.8rem;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

select.form-select:hover:not(:disabled),
select.form-control:hover:not(:disabled),
.hes-select-private:hover:not(:disabled) {
	border-color: #94a3b8;
}

select.form-select:focus,
select.form-control:focus,
.hes-select-private:focus {
	background-color: #ffffff;
	border-color: var(--color-boton, #0d6efd);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-boton, #0d6efd) 20%, transparent), 0 1px 2px rgba(15, 23, 42, 0.08);
	color: #172033;
	outline: 0;
}

body.hes-body-private select.form-select,
body.hes-body-private select.form-control,
body.hes-body-private .hes-select-private {
	background-color: color-mix(in srgb, var(--color-fondo-card, #ffffff) 5%, #ffffff);
	border-color: color-mix(in srgb, var(--color-borde, #cbd5e1) 68%, #cbd5e1);
}

body.hes-body-private select.form-select:hover:not(:disabled),
body.hes-body-private select.form-control:hover:not(:disabled),
body.hes-body-private .hes-select-private:hover:not(:disabled) {
	border-color: var(--color-borde, #94a3b8);
}

select.form-select:disabled,
select.form-control:disabled,
.hes-select-private:disabled {
	background-color: #f1f5f9;
	color: #64748b;
	cursor: not-allowed;
	opacity: 0.72;
}

select.form-select option,
select.form-control option,
.hes-select-private option,
.hes-select-private optgroup {
	background-color: #ffffff;
	color: #172033;
}

select.form-select.form-select-sm,
select.form-control.form-select-sm,
.hes-select-private.form-select-sm,
.hes-select-private.hes-select-private-sm {
	background-position: right 0.62rem center;
	font-size: 0.875rem;
	min-height: 34px;
	padding: 0.36rem 2.15rem 0.36rem 0.66rem;
}

select.form-select.form-select-lg,
.hes-select-private.form-select-lg {
	font-size: 1rem;
	min-height: 48px;
	padding: 0.7rem 2.7rem 0.7rem 0.9rem;
}

select.form-select[multiple],
select.form-control[multiple],
.hes-select-private[multiple] {
	appearance: auto;
	background-image: none;
	cursor: default;
	min-height: 8rem;
	padding: 0.45rem;
}

select.form-select[multiple] option,
select.form-control[multiple] option,
.hes-select-private[multiple] option {
	border-radius: 4px;
	padding: 0.42rem 0.55rem;
}

/* Los campos del panel usan el borde configurado para el tema. */
body.hes-body-private .form-control,
body.hes-body-private .form-select,
body.hes-body-private .hes-select-private {
	border-color: var(--color-borde);
	border-width: var(--grosor-bordes);
	border-radius: var(--redondeado-bordes);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

body.hes-body-private .form-control:focus,
body.hes-body-private .form-select:focus,
body.hes-body-private .hes-select-private:focus {
	border-color: color-mix(in srgb, var(--color-borde) 78%, #000000);
	box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--color-borde) 24%, transparent), 0 1px 2px rgba(15, 23, 42, 0.08);
	outline: 0;
}

body.hes-body-private input.form-control[type="color"] {
	background-color: var(--hes-color-input-value, #000000);
	border-color: color-mix(in srgb, var(--hes-color-input-value, #000000) 78%, #000000);
}

body.hes-body-private input.form-control[type="color"]:focus {
	border-color: color-mix(in srgb, var(--hes-color-input-value, #000000) 65%, #000000);
	box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--hes-color-input-value, #000000) 24%, transparent), 0 1px 2px rgba(15, 23, 42, 0.08);
}

/* Titulos homogeneos para panel privado. */
.hes-private-title {
	font-family: 'Londrina Solid', cursive;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.2;
	color: var(--color-texto-titulo);
	margin: 0;
}

.hes-private-text {
	color: var(--color-texto);
}

.hes-private-label {
	color: var(--color-texto);
}

body.hes-body-private .hes-private-text {
	color: var(--color-texto) !important;
}

body.hes-body-private .hes-private-label {
	color: var(--color-texto) !important;
}

body.hes-body-private .hes-private-text.text-muted,
body.hes-body-private .text-muted.hes-private-text {
	color: color-mix(in srgb, var(--color-texto) 62%, transparent) !important;
}

.hes-private-title--h1 {
	font-size: 2.05rem;
}

.hes-private-title--h2 {
	font-size: 1.6rem;
}

.hes-private-title--h3 {
	font-size: 1.22rem;
}

@media only screen and (min-width: 768px) {
	.hes-private-title--h1 {
		font-size: 2.35rem;
	}

	.hes-private-title--h2 {
		font-size: 1.85rem;
	}

	.hes-private-title--h3 {
		font-size: 1.32rem;
	}
}
a::after {
	color: var(--color-texto);
}
.hes-seccion-menu {
	margin-left: 5%;
	border-style: none none solid;
	border-bottom-color: var(--color-fondo-card);
}
.hes-footer {
	padding-right: 5%;
	width: 100%;
	padding-left: 5%;
	max-width: 100%;
}

.hes-seccion-menu:hover,
.hes-seccion-menu:hover > a,
.hes-seccion-menu-active,
.hes-seccion-menu-active > a {
	--tw-border-opacity: 1;
	--tw-text-opacity: 1;
	border-bottom-color: var(--color-borde) !important;
}

.hes-promo {
	position: relative;
}

.hes-menu-navegacion {
	background-color: var(--color-pie-cabecera);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 2px solid #dbdbdb;
}

body.hes-body-private .hes-menu-navegacion {
	background-color: var(--color-pie-cabecera);
	border-bottom-color: var(--color-borde);
}


/* ---- Nueva Web ---- */

.hes-nueva-web-color-1 {
	color: var(--color-boton) !important;
}

.hes-nueva-web-color-2 {
	color: var(--color-boton-cancelar) !important;
}

/* Contenedor principal */
.hes-nueva-web-container {
	max-width: 100%;
	margin: 0 auto;
	padding: 2rem 1rem;
}

/* Margen superior específico de escritorio */
.hes-nueva-web-desktop-margin-top {
	margin-top: 1rem;
}

.hes-nueva-web-textos-centrados {
    max-width: 1100px;
    text-align: center;
    margin: auto;
}

/* ====== TIPOGRAFÍA Y TÍTULOS ====== */

.hes-nueva-web-title {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	color: #0d0d0d;
	margin-bottom: 1.5rem;
	margin-top: 1.5rem;
	text-align: center;
}

.hes-nueva-web-title-blue {
	color: var(--color-boton);
}

.hes-nueva-web-title-black {
	color: #0d0d0d;
}

/* ====== SUBTÍTULO Y DESCRIPCIONES ====== */

.hes-nueva-web-subtitle {
	font-size: 1.25rem;
	font-weight: 600;
	color: #0d0d0d;
	margin-bottom: 1rem !important;
    margin: auto;
    max-width: 1100px;
}

.hes-nueva-web-subtitle em {
	font-style: italic;
}

.hes-nueva-web-description {
	font-size: 1.125rem;
	font-weight: 500;
	color: #1a1a1a;
	margin-bottom: 2rem;
	max-width: 1100px;
	line-height: 1.6;
}

/* ====== BOTÓN ====== */

.hes-nueva-web-btn {
	display: inline-block;
	background-color: var(--color-boton);
	color: #ffffff;
	padding: 0.9rem 1.8rem;
	border-radius: 9999px;
	font-weight: 600;
	text-decoration: none;
	font-size: 1rem;
	transition: background-color 0.25s ease, transform 0.15s ease;
}

.hes-nueva-web-btn:hover {
	background-color: var(--color-boton-cancelar);
	transform: translateY(-2px);
}

.hes-nueva-web-btn:active {
	background-color: #0045a3;
	transform: translateY(0);
}

.hes-nueva-web-separator {
	border: none;
	border-bottom: 2px solid #000000;
	margin-top: 2.5rem;
	margin-bottom: 2.5rem;
	width: 100%;
}


/* ====== SECCIÓN SOBRE MÍ ====== */
.hes-btn:hover {
    background-color: var(--color-boton-cancelar);   
}

.hes-nueva-web-about-section {
	padding: 0rem;
}

/* Contenedor general (imagen + texto) */
.hes-nueva-web-about-container {
	display: flex;
	justify-content: center;
	align-items: flex-start;	 /* La imagen queda alineada arriba */
	gap: 3rem;
	max-width: 1100px;
	margin: 0 auto;
	margin-bottom: 3rem;
	padding-left: 1rem;
    padding-right: 1rem;
}

/* Imagen = 50% del ancho */
.hes-nueva-web-about-image {
	flex: 0 0 50%;			/* Ocupa exactamente el 50% */
	max-width: 50%;
	border-radius: 16px;
	object-fit: cover;
	box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

/* Texto = 50% del ancho */
.hes-nueva-web-about-text {
	flex: 0 0 50%;
	max-width: 50%;
    text-align: justify;
}


.hes-nueva-web-about-name {
	font-size: 1.5rem;
	font-weight: 800;
	color: #0d0d0d;
	margin-bottom: 1rem;
}

.hes-nueva-web-about-paragraph {
	font-size: 1.1rem;
	color: #1a1a1a;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.hes-nueva-web-about-paragraph strong {
	font-weight: 700;
}

/* ====== SECCIÓN SERVICIOS ====== */

.hes-nueva-web-services-section {
	padding: 0rem;
	text-align: center;
}

/* ====== GRID ====== */

.hes-nueva-web-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* SIEMPRE tres columnas */
	gap: 2.5rem;
	max-width: 1100px;
	margin: 0 auto;
}

/* ====== TARJETA ====== */

.hes-nueva-web-service-card {
	background: transparent;
	text-align: center;
}

.hes-nueva-web-service-image {
	width: 100%;
	border-radius: 12px;
	margin-bottom: 1.2rem;
	object-fit: cover;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.hes-nueva-web-service-title {
	font-size: 1.2rem;
	font-weight: 800;
	color: #0d0d0d;
	margin-bottom: 0.6rem;
}

.hes-nueva-web-service-text {
	font-size: 1rem;
	color: #1a1a1a;
	line-height: 1.6;
	max-width: 320px;
	margin: 0 auto;
}

/* ====== SECCIÓN METODOLOGÍA ====== */

.hes-nueva-web-method-section {
	padding: 0rem;
	text-align: center;
}

.hes-nueva-web-method-title {
	color: var(--color-boton-cancelar);
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 3rem;
}

/* ====== GRID DE PASOS ====== */

.hes-nueva-web-method-steps {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 2rem;
	max-width: 1100px;
	margin: 0 auto 3rem auto;
}

/* ====== TARJETA DE PASO ====== */

.hes-nueva-web-method-card {
	position: relative;
	background: #fff;
	border: 2px solid #DA33BF;
	border-top-width: 6px;
	border-radius: 8px;
	width: 300px;
	padding: 2rem 1rem 1rem 1rem;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.hes-nueva-web-step-1 {
	border-color: var(--color-boton);
}

.hes-nueva-web-step-2 {
	border-color: var(--color-boton-cancelar);
}

.hes-nueva-web-step-3 {
	border-color: var(--color-fondo);
}

/* Círculo numerado */
.hes-nueva-web-step-number {
	position: absolute;
	top: -24px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #0059c9;
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	width: 45px;
	height: 45px;
	line-height: 34px;
	border-radius: 50%;
	border: 3px solid #fff;
}

/* Título y texto */
.hes-nueva-web-method-card-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #0d0d0d;
	margin-bottom: 0.6rem;
}

.hes-nueva-web-method-card-text {
	font-size: 1rem;
	color: #1a1a1a;
	line-height: 1.6;
}

/* Frase final */
.hes-nueva-web-method-quote-1 {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-boton);
	border-left: 3px solid var(--color-boton);
	padding-left: 0.8rem;
	text-align: left;
	max-width: 1100px;
    margin: auto;
}

.hes-nueva-web-method-quote-2 {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-boton-cancelar);
	border-left: 3px solid var(--color-boton-cancelar);
	padding-left: 0.8rem;
	text-align: left;
	max-width: 1100px;
    margin: auto;
}


/* ====== SECCIÓN RESULTADOS ====== */

.hes-nueva-web-results-section {
	padding: 0rem;	
	text-align: center;
}

.hes-nueva-web-results-title {
	color: #0d0d0d;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 3rem;
	text-align: left;
}

/* ====== GRID ====== */

.hes-nueva-web-results-grid {
	display: grid;
	/* Usar 3 columnas en escritorio, 2 en tablet, 1 en móvil */
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	max-width: 1100px;
	margin: 0 auto;
	padding-bottom: 2rem;
}

.hes-nueva-web-results-grid-2 {
	display: grid;
	/* Usar 3 columnas en escritorio, 2 en tablet, 1 en móvil */
	grid-template-columns: repeat(2, 1fr);
	gap: .5rem;
	max-width: 1100px;
	margin: 0 auto;
	padding-bottom: 2rem;
}


/* ====== TARJETA ====== */

.hes-nueva-web-result-card {
	text-align: center;
}

.hes-nueva-web-result-card li {
    text-align: left;
}

.hes-nueva-web-result-image {
	width: 240px;
	height: 240px;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 1.2rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.hes-nueva-web-result-title {
	font-size: 1.1rem;
	font-weight: 800;
	color: #0d0d0d;
	margin-bottom: 0.6rem;
}

.hes-nueva-web-result-text {
	font-size: 1rem;
	color: #1a1a1a;
	line-height: 1.6;
	max-width: 280px;
	margin: 0 auto;
}

/* ====== SECCIÓN PLANES Y TARIFAS ====== */

.hes-nueva-web-pricing-section {
	padding: 0rem;
}

.hes-nueva-web-pricing-title {
	color: var(--color-fondo);
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 3rem;
	text-align: left;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

/* Contenedor general */
.hes-nueva-web-pricing-container {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	max-width: 1100px;
	margin: 0 auto;
}

/* Cada plan */
.hes-nueva-web-pricing-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
}

/* Icono lateral */
.hes-nueva-web-pricing-icon {
	min-width: 90px;
	height: 120px;
	border: 2px solid var(--color-fondo);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hes-nueva-web-plan-dual .hes-nueva-web-pricing-icon {
	border-color: var(--color-fondo);
}

.hes-nueva-web-plan-grupos .hes-nueva-web-pricing-icon {
	border-color: #e040fb;
}

/* Logo dentro del icono */
.hes-nueva-web-pricing-logo {
	width: 45px;
	height: auto;
}

/* Contenido */
.hes-nueva-web-pricing-content {
	flex: 1;
}

.hes-nueva-web-pricing-name {
	font-size: 1.25rem;
	font-weight: 800;
	color: #0d0d0d;
	margin-bottom: 0.5rem;
}

.hes-nueva-web-pricing-desc {
	font-size: 1rem;
	color: #1a1a1a;
	margin-bottom: 0.5rem;
}

.hes-nueva-web-pricing-list {
	list-style-type: disc;
	margin-left: 3rem;
	color: #0d0d0d;
	line-height: 1.6;
}

.hes-nueva-web-pricing-list strong {
	font-weight: 700;
}

/* ====== BANNER DE DESCUENTO ====== */

.hes-nueva-web-discount-banner {
	background-color: aliceblue;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	max-width: 900px;
	margin: 2rem auto;
	font-size: 1rem;
}

.hes-nueva-web-discount-icon {
	font-size: 1.2rem;
	color: #0059c9;
    width: 2rem;
}

.hes-nueva-web-discount-text {
	color: #0d0d0d;
	margin: 0;
	font-weight: 500;
}

.hes-nueva-web-discount-text strong {
	font-weight: 700;
}

/* ====== SECCIÓN FAQ ====== */

.hes-nueva-web-faq-section {
	padding: 0rem;
}

.hes-nueva-web-faq-title {
	color: var(--color-fondo);
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 3rem;
	text-align: left;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

/* ====== GRID ====== */

.hes-nueva-web-faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 1.5rem;
	max-width: 1100px;
	margin: 0 auto;
}

/* ====== TARJETAS ====== */

.hes-nueva-web-faq-card {
	background-color: #fff;
	border: 2px solid var(--color-fondo);
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
	border-left-width: 0.5rem;
}

.hes-nueva-web-faq-blue {
	border-color: var(--color-boton);
}

.hes-nueva-web-faq-lightblue {
	border-color: var(--color-boton-cancelar);
}

.hes-nueva-web-faq-pink {
	border-color: #DA33BF;
}

/* ====== CONTENIDO ====== */

.hes-nueva-web-faq-question {
	font-size: 1.125rem;
	font-weight: 800;
	color: #0d0d0d;
	margin-bottom: 0.6rem;
}

.hes-nueva-web-faq-answer {
	font-size: 1rem;
	color: #1a1a1a;
	line-height: 1.6;
}


/* ====== SECCIÓN CONTACTO ====== */

.hes-nueva-web-contact-section {
	padding: 0rem;
}

.hes-nueva-web-contact-title {
	color: var(--color-fondo);
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 2.5rem;
	text-align: left;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

/* Contenedor principal */
.hes-nueva-web-contact-container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2rem;
	max-width: 1100px;
	margin: 0 auto;
	flex-wrap: wrap;
}

/* ====== Columna de texto ====== */

.hes-nueva-web-contact-info {
	flex: 1;
	min-width: 320px;
}

.hes-nueva-web-contact-subtitle {
	font-size: 1.25rem;
	font-weight: 800;
	color: #0d0d0d;
	margin-bottom: 0.75rem;
}

.hes-nueva-web-contact-text {
	font-size: 1.05rem;
	color: #1a1a1a;
	margin-bottom: 1.25rem;
	line-height: 1.6;
}

/* Lista de contacto */
.hes-nueva-web-contact-list {
	list-style: none;
	padding: 0;
	margin-bottom: 2rem;
}

.hes-nueva-web-contact-list li {
	font-size: 1rem;
	color: #0d0d0d;
	margin-bottom: 0.5rem;
}

.hes-nueva-web-contact-list strong {
	font-weight: 700;
}

/* Botón */
.hes-nueva-web-contact-btn {
	background-color: var(--color-boton);
	color: #fff;
	padding: 0.8rem 1.6rem;
	border-radius: 9999px;
	text-decoration: none;
	font-weight: 600;
	display: inline-block;
	transition: background-color 0.25s ease, transform 0.15s ease;
}

.hes-nueva-web-contact-btn:hover {
	background-color: var(--color-boton-cancelar);
	transform: translateY(-2px);
}

/* ====== Imagen ====== */

.hes-nueva-web-contact-image {
	flex: 1;
	min-width: 320px;
	max-width: 450px;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ====== SECCIÓN GALERÍA ====== */

.hes-nueva-web-gallery-section {
	background-color: #f8f9fc;
	padding: 3rem 1rem;
}

.hes-nueva-web-gallery-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	max-width: 1100px;
	margin: 0 auto;
}

/* ====== IMÁGENES ====== */

.hes-nueva-web-gallery-image {
	width: 100%;
	height: 80%;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.modal-footer {
	border-top: 0 !important;
}

/* Lo ultimo */
.hes-nueva-web-values-section {
	padding: 5rem 0;
	/*display: flex;*/
	display: none;
	justify-content: center;
}

.hes-nueva-web-values-container {
	position: relative;
	width: 650px;
	height: 380px;
}

/* círculos base */

.hes-nueva-web-value-circle {
	position: absolute;
	border-radius: 50%;
	color: #fff;
	font-weight: 700;
	display:flex;
	justify-content:center;
	align-items:center;
}

.redes-sociales {
	background-color: var(--color-boton) !important;
    border-color: var(--color-borde) !important;
    border-width: var(--grosor-bordes) !important;
    border-radius: var(--redondeado-bordes) !important;
    color: var(--color-texto) !important;
}

/* colores */

.hes-nueva-web-value-light { background: var(--color-boton); }
.hes-nueva-web-value-mid	 { background: var(--color-boton-cancelar); }
.hes-nueva-web-value-dark	{ background: var(--color-fondo); }

/* tamaños */

.hes-nueva-web-value-small	{ width:130px; height:130px; }
.hes-nueva-web-value-medium { width:180px; height:180px; }
.hes-nueva-web-value-large	{ width:260px; height:260px; }

/* posiciones individuales */

.hes-nueva-web-value-1 { top:0; left:230px; }
.hes-nueva-web-value-2 { top:80px; left:340px; }
.hes-nueva-web-value-3 { top:120px; left:110px; }
.hes-nueva-web-value-4 { top:210px; left:260px; }
.hes-nueva-web-value-5 { top:120px; left:470px; }


.hes-nueva-web-section-title {
	color: var(--color-boton-cancelar);
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 2.5rem !important;
	text-align: left;
	margin: auto;
    max-width: 1100px;
}

.invisible-en-desktop {
    display: inherit;
}

.empleados-details > summary {
    cursor: pointer;
    list-style: none;
}

.empleados-details > summary::-webkit-details-marker {
    display: none;
}

.hes-calendar {
    max-width: 100%;
}

.hes-calendar__weekday {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
    padding-bottom: 6px;
}

.hes-calendar__weekday--weekend {
    color: #adb5bd;
}

.hes-calendar__week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.hes-calendar__day {
    border: 1px solid #e9ecef;
    min-height: 84px;
    padding: 6px 8px;
    font-size: 0.9rem;
    color: #212529;
    background: #fff;
}

.hes-calendar__day--empty {
    background: #f8f9fa;
    border-color: #f0f0f0;
}

.hes-calendar__day--weekend {
    background: #fafafa;
    color: #adb5bd;
}

.hes-calendar__day--today .hes-calendar__day-number {
    background: #0f4c5c;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    font-weight: 700;
}

.hes-calendar__day-number {
    display: inline-block;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
}

.hes-calendar__events {
    margin-top: 6px;
}

.hes-calendar__event-item {
    display: inline-block;
    font-size: 0.72rem;
    line-height: 1.15;
    padding: 4px 6px;
    border-radius: 999px;
    background: #e7f2f5;
    color: #0f4c5c;
    font-weight: 600;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 0;
    text-align: left;
}

.hes-calendar__event-item--low {
    background: #fff3cd;
    color: #7a5a00;
}

.hes-calendar__event-more {
    display: inline-block;
    font-size: 0.68rem;
    color: #6c757d;
    margin-top: 2px;
}

.mis-citas-event {
	border-radius: 7px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
	display: flex;
	flex-direction: column;
	font-size: 0.68rem;
	gap: 0.08rem;
	line-height: 1.14;
	min-width: 0;
	overflow: hidden;
	padding: 0.28rem 0.36rem;
}

.mis-citas-event__top,
.mis-citas-event__details {
	display: flex;
	gap: 0.28rem;
	justify-content: space-between;
	min-width: 0;
}

.mis-citas-event__title {
	flex: 1 1 auto;
	font-weight: 800;
	min-width: 0;
	overflow-wrap: anywhere;
}

.mis-citas-event--expanded {
	gap: 0.35rem;
}

.mis-citas-event .citas-week-event__action svg {
	display: block;
}

.mis-citas-event__details {
	align-items: center;
	font-weight: 700;
	white-space: nowrap;
}

.mis-citas-event__status {
	margin-left: auto;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mis-citas-event__monitor,
.mis-citas-event__state {
	opacity: 0.92;
	overflow-wrap: anywhere;
}

.mis-citas-event__state {
	font-size: 0.64rem;
}

.mis-citas-event__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.22rem;
	margin-top: 0.16rem;
}

.mis-citas-event__actions .btn {
	font-size: 0.62rem;
	line-height: 1.1;
	min-height: 1.55rem;
	padding: 0.22rem 0.38rem;
}

.mis-citas-calendar-empty,
.mis-citas-history-empty {
	color: color-mix(in srgb, var(--color-texto, #64748b) 66%, transparent);
	padding: 1.5rem;
	text-align: center;
}

.mis-citas-calendar-empty {
	grid-column: 1 / -1;
}

.mis-citas-history-list {
	border-top: 1px solid color-mix(in srgb, var(--color-borde, #cbd5e1) 45%, transparent);
}

.mis-citas-history-item {
	align-items: center;
	border-bottom: 1px solid color-mix(in srgb, var(--color-borde, #cbd5e1) 38%, transparent);
	color: var(--color-texto, #172033);
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(122px, 0.65fr) minmax(180px, 2fr) auto;
	padding: 0.82rem 0.35rem;
	transition: background-color 0.15s ease;
}

.mis-citas-history-item:hover {
	background-color: color-mix(in srgb, var(--color-boton, #0d6efd) 6%, transparent);
}

.mis-citas-history-item__date {
	display: flex;
	flex-direction: column;
	font-size: 0.78rem;
	gap: 0.14rem;
}

.mis-citas-history-item__date strong,
.mis-citas-history-item__title {
	font-weight: 800;
}

.mis-citas-history-item__title {
	font-size: 0.95rem;
	overflow-wrap: anywhere;
}

.mis-citas-history-item__meta {
	font-size: 0.78rem;
	opacity: 0.72;
	overflow-wrap: anywhere;
}

.mis-citas-history-item__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	justify-content: flex-end;
}

@media (max-width: 767px) {
	.mis-citas-history-item {
		align-items: start;
		gap: 0.45rem;
		grid-template-columns: 1fr;
		padding: 0.8rem 0.2rem;
	}

	.mis-citas-history-item__date {
		flex-direction: row;
		gap: 0.5rem;
	}

	.mis-citas-history-item__badges {
		justify-content: flex-start;
	}
}

.hes-calendar--citas-week .hes-calendar__weekdays {
	display: none;
}

.citas-week-grid-wrap {
	border: 1px solid rgba(15, 23, 42, 0.14);
	border-radius: 8px;
	overflow-x: auto;
}

.citas-week-grid {
	display: grid;
	grid-template-columns: 52px repeat(7, minmax(132px, 1fr));
	min-width: 976px;
}

.citas-week-time,
.citas-week-head {
	background: #f8f9fa;
	border-bottom: 1px solid rgba(15, 23, 42, 0.11);
	border-right: 1px solid rgba(15, 23, 42, 0.11);
	font-size: 0.82rem;
	font-weight: 700;
	padding: 0.42rem 0.5rem;
}

.citas-week-time {
	color: #495057;
	text-align: right;
}

.citas-week-time--unused {
	background: #eef0f3;
	color: #8a94a3;
}

.citas-week-head {
	min-height: 58px;
	text-align: center;
}

.citas-week-head--weekend {
	background: #fafafa;
	color: #8a94a3;
}

.citas-week-head--today {
	background: color-mix(in srgb, #0f4c5c 12%, #ffffff);
	color: #0f4c5c;
}

.citas-week-cell {
	background: #ffffff;
	border-bottom: 1px solid rgba(15, 23, 42, 0.11);
	border-right: 1px solid rgba(15, 23, 42, 0.11);
	min-height: 38px;
	padding: 0.18rem;
	position: relative;
}

.citas-week-cell--weekend {
	background: #fafafa;
}

.citas-week-cell--unused {
	background: #f1f3f5;
}

.citas-week-cell--today {
	background: color-mix(in srgb, #0f4c5c 6%, #ffffff);
}

.citas-week-cell--today.citas-week-cell--unused {
	background: color-mix(in srgb, #0f4c5c 4%, #f1f3f5);
}

.citas-week-event {
	border: 0;
	border-radius: 7px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
	display: flex;
	flex-direction: column;
	font-size: 0.68rem;
	gap: 0.05rem;
	height: calc(((100% + 1px) * var(--citas-event-span, 1)) - 0.32rem);
	left: 0.18rem;
	line-height: 1.12;
	overflow: hidden;
	padding: 0.2rem 0.32rem;
	position: absolute;
	right: 0.18rem;
	text-align: left;
	top: 0.16rem;
	z-index: 3;
}

.citas-week-event--expanded {
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
	cursor: default;
	gap: 0.35rem;
	height: auto;
	max-height: 360px;
	min-height: 110px;
	overflow: auto;
	padding: 0.42rem 0.5rem;
	right: auto;
	width: min(390px, calc(100vw - 2rem));
	z-index: 14;
}

.citas-week-event--expanded-left {
	left: auto;
	right: 0.18rem;
}

.citas-week-event__top {
	align-items: flex-start;
	display: flex;
	gap: 0.35rem;
	justify-content: space-between;
	min-width: 0;
}

.citas-week-event__expanded-title {
	flex: 1 1 auto;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.18;
	min-width: 0;
	overflow-wrap: anywhere;
}

.citas-week-event__action {
	align-items: center;
	background: color-mix(in srgb, currentColor 10%, transparent);
	border: 1px solid color-mix(in srgb, currentColor 32%, transparent);
	border-radius: 999px;
	color: inherit;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 1.18rem;
	height: 1.18rem;
	justify-content: center;
	line-height: 1;
	margin-left: auto;
	padding: 0;
	width: 1.18rem;
}

.citas-week-event__action:hover,
.citas-week-event__action:focus {
	background: color-mix(in srgb, currentColor 18%, transparent);
	outline: none;
}

.citas-reserve-form-content {
	color: inherit;
	display: block;
	font-size: 0.78rem;
	padding: 0.48rem;
}

body.citas-reserve-form-content .form-label {
	color: inherit !important;
	font-size: 0.72rem;
	margin-bottom: 0.16rem;
}

.citas-reserve-form-content .form-select,
.citas-reserve-form-content .btn {
	font-size: 0.78rem;
	min-height: 2rem;
	padding-bottom: 0.28rem;
	padding-top: 0.28rem;
}

.citas-reserve-form-content .form-select {
	background-color: color-mix(in srgb, currentColor 10%, transparent);
	border-color: color-mix(in srgb, currentColor 32%, transparent);
	color: inherit;
}

.citas-reserve-form-content .btn {
	background: color-mix(in srgb, currentColor 14%, transparent);
	border-color: color-mix(in srgb, currentColor 42%, transparent);
	color: inherit;
}

.citas-week-event__title {
	font-weight: 800;
	overflow-wrap: anywhere;
}

.citas-week-event__meta,
.citas-week-event__spots {
	display: block;
	font-weight: 700;
	overflow-wrap: anywhere;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 600px) {
	.hes-nueva-web-services-grid {
		grid-template-columns: 1fr;
	}
	.hes-nueva-web-results-grid {
		grid-template-columns: 1fr;
	}
	.hes-nueva-web-results-grid-2 {
		grid-template-columns: 1fr;
	}
	
	.hes-nueva-web-method-steps {
    	display: grid;
    }
    
    .hes-nueva-web-faq-grid {
        grid-template-columns: inherit;   
    }
    
    .invisible-en-mobile {
	    display: none !important;
	}
}

@media (min-width: 600px) {
    .invisible-en-desktop {
        display: none !important;
    }
}

@media (max-width: 376px) {
	.hes-nueva-web-section-title {
		font-size: 1.75rem;
	}
	
	.hes-nueva-web-method-card {
		width: 100%;
		max-width: 350px;
	}
	
	.hes-nueva-web-pricing-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.hes-nueva-web-pricing-icon {
		margin-bottom: 0.8rem;
	}

	.hes-nueva-web-pricing-title {
		text-align: center;
	}
	
	.hes-nueva-web-results-title {
		font-size: 1.5rem;
	}

	.hes-nueva-web-results-grid {
		gap: 2rem;
	}
	.hes-nueva-web-results-grid-2 {
		gap: 2rem;
	}
	.hes-nueva-web-result-image {
		width: 140px;
		height: 140px;
	}
	
	.hes-nueva-web-faq-title {
		text-align: center;
	}
	.hes-nueva-web-about-container {
	    flex-direction: column;
		text-align: center;
	}

	.hes-nueva-web-about-image,
	.hes-nueva-web-about-text {
		width: 90%;
	}

	.hes-nueva-web-contact-title {
		text-align: center;
	}

	.hes-nueva-web-contact-container {
	flex-direction: column;
		align-items: center;
	}

	.hes-nueva-web-contact-info {
		text-align: center;
	}

	.hes-nueva-web-contact-btn {
		margin: 0 auto;
	}

	.hes-nueva-web-contact-image {
		max-width: 90%;
	}
	.hes-nueva-web-gallery-container {
		grid-template-columns: 1fr;
	}

	.hes-nueva-web-gallery-image {
		height: 35%;
	}
}



@media (max-width: 992px) {
	.hes-nueva-web-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.hes-nueva-web-results-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.hes-nueva-web-results-grid-2 {
		grid-template-columns: repeat(2, 1fr);
	}
    .hes-nueva-web-section-title {
		text-align: center;
	}
    .hes-nueva-web-subtitle {
        text-align: center;
    }
    
    .hes-nueva-web-pricing-list {
    	margin-left: 6rem;
    }
}


@media (max-width: 768px) {
    .navbar-redes-sociales {
	    display: block;
	    margin: 2rem;
    }

    .hes-nueva-web-pricing-list {
    	margin-left: 0px;
    	padding-left: 0px;
    }
    
    
    .hes-nueva-web-about-container {
        display: block;
    }
	
	.hes-nueva-web-about-text {
    	max-width: 100%;
	    text-align: center;
    }
    
    .hes-nueva-web-service-image {
    	max-width: 50%;
    }

	.hes-nueva-web-services-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.hes-nueva-web-results-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.hes-nueva-web-results-grid-2 {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.hes-nueva-web-contact-container {
	    text-align: center;
    }
    
    .hes-nueva-web-result-card {
    	text-align: center;
    }
    
    .hes-nueva-web-result-card li {
        text-align: center;
        list-style-position: inside;
        list-style-type: none;
    }
    
    .hes-nueva-web-contact-image {
        margin: auto;
    }
}

/*-- Horarios --*/
.horarios-scheduler-shell {
	--horarios-sticky-offset: 120px;
}

.horarios-session-panel-column {
	align-self: flex-start;
	position: sticky;
	top: var(--horarios-sticky-offset);
}

.horarios-session-panel {
	max-height: calc(100vh - var(--horarios-sticky-offset) - 1rem);
	overflow-y: auto;
}

.horarios-session-chip-help {
	line-height: 1.35;
}

.horarios-session-chip-row {
	align-items: stretch;
	display: flex;
	gap: 0;
	width: 100%;
}

.horarios-session-chip {
	align-items: center;
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.14);
	border-radius: 8px;
	color: #1f2937;
	cursor: grab;
	display: flex;
	gap: 0.65rem;
	min-height: 44px;
	padding: 0.55rem 0.7rem;
	text-align: left;
	width: 100%;
}

.horarios-session-chip-row .horarios-session-chip {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-left: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	flex: 1 1 auto;
	min-width: 0;
}

.horarios-session-chip:active {
	cursor: grabbing;
}

.horarios-session-chip--new {
	border-style: dashed;
	cursor: pointer;
	font-weight: 700;
}

.horarios-session-chip-add {
	align-items: center;
	background: #f8f9fa;
	border: 1px solid rgba(15, 23, 42, 0.14);
	border-left: 0;
	border-radius: 8px;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	color: #0f4c5c;
	cursor: grab;
	display: inline-flex;
	flex: 0 0 38px;
	font-size: 1.05rem;
	font-weight: 800;
	justify-content: center;
	min-height: 44px;
	padding: 0;
	width: 38px;
}

.horarios-session-chip-row--editable .horarios-session-chip-add {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}

.horarios-session-chip-edit {
	align-items: center;
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.14);
	border-radius: 8px;
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
	color: #495057;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 38px;
	justify-content: center;
	min-height: 44px;
	padding: 0;
	width: 38px;
}

.horarios-session-chip-add:active {
	cursor: grabbing;
}

.horarios-session-chip-add:hover,
.horarios-session-chip-add:focus,
.horarios-session-chip-edit:hover,
.horarios-session-chip-edit:focus {
	background: #eaf7f8;
	border-color: rgba(15, 76, 92, 0.35);
}

.horarios-session-chip__swatch {
	border: 1px solid rgba(15, 23, 42, 0.16);
	border-radius: 999px;
	flex: 0 0 16px;
	height: 16px;
	width: 16px;
}

.horarios-session-chip__swatch--new {
	align-items: center;
	background: #f8f9fa;
	display: inline-flex;
	font-size: 0.8rem;
	justify-content: center;
}

.horarios-session-chip__text {
	flex: 1 1 auto;
	min-width: 0;
	overflow-wrap: anywhere;
}

.horarios-session-chip__meta {
	color: #6b7280;
	display: block;
	font-size: 0.78rem;
	font-weight: 500;
	margin-top: 0.1rem;
}

.horarios-week-grid-wrap {
	border: 1px solid rgba(15, 23, 42, 0.14);
	border-radius: 8px;
	overflow-x: auto;
}

.horarios-week-grid {
	display: grid;
	grid-template-columns: var(--horarios-week-columns, 52px repeat(7, minmax(132px, 1fr)));
	min-width: var(--horarios-week-min-width, 1000px);
}

.horarios-room-control {
	width: 100%;
}

.horarios-week-nav {
	align-items: center;
	display: flex;
	gap: 0.75rem;
	justify-content: center;
}

.horarios-week-title {
	min-width: min(100%, 320px);
}

.horarios-week-time,
.horarios-week-head,
.horarios-week-cell {
	border-bottom: 1px solid rgba(15, 23, 42, 0.11);
	border-right: 1px solid rgba(15, 23, 42, 0.11);
}

.horarios-week-time,
.horarios-week-head {
	background: #f8f9fa;
	font-size: 0.82rem;
	font-weight: 700;
	padding: 0.42rem 0.5rem;
}

.horarios-week-time {
	color: #495057;
	text-align: right;
}

.horarios-week-time--unused {
	background: #eef0f3;
	color: #8a94a3;
}

.horarios-week-head {
	min-height: 58px;
	text-align: center;
}

.horarios-week-head--closed {
	background: var(--horarios-closed-bg);
	color: #ffffff;
}

.horarios-week-cell {
	background: #ffffff;
	min-height: 38px;
	padding: 0.18rem;
	position: relative;
	transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.horarios-week-cell--closed {
	background: var(--horarios-closed-bg);
}

.horarios-week-cell--unused {
	background: #f1f3f5;
}

.horarios-week-cell--today {
	background: color-mix(in srgb, var(--horarios-closed-bg) 25%, #ffffff);
}

.horarios-week-cell--closed.horarios-week-cell--today {
	background: var(--horarios-closed-bg);
}

.horarios-week-cell--today.horarios-week-cell--unused {
	background: color-mix(in srgb, var(--horarios-closed-bg) 4%, #f1f3f5);
}

.horarios-week-cell--drop {
	background: color-mix(in srgb, var(--horarios-closed-bg) 75%, #ffffff);
}

.horarios-week-cell--closed.horarios-week-cell--drop {
	box-shadow: none;
}

.horarios-trash-zone {
	align-items: center;
	background: color-mix(in srgb, var(--color-boton-cancelar, #ef4444) 12%, #ffffff);
	border: 2px dashed color-mix(in srgb, var(--color-boton-cancelar, #ef4444) 68%, #7f1d1d);
	border-radius: 12px;
	color: #7f1d1d;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	justify-content: center;
	min-height: 92px;
	padding: 0.75rem;
	text-align: center;
	transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.horarios-trash-zone__icon {
	line-height: 1;
}

.horarios-trash-zone__label {
	font-weight: 700;
}

.horarios-trash-zone__hint {
	font-size: 0.8rem;
	line-height: 1.2;
}

.horarios-trash-zone--active {
	background: color-mix(in srgb, var(--color-boton-cancelar, #ef4444) 26%, #ffffff);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-boton-cancelar, #ef4444) 25%, transparent);
	transform: scale(1.01);
}

.horarios-trash-zone--attendance-mode {
	background: color-mix(in srgb, var(--horarios-theme-base, #0f4c5c) 8%, #ffffff);
	border-color: color-mix(in srgb, var(--horarios-theme-base, #0f4c5c) 55%, #475569);
	color: color-mix(in srgb, var(--horarios-theme-base, #0f4c5c) 72%, #111827);
}

.horarios-trash-zone--attendance {
	background: color-mix(in srgb, var(--color-boton-cancelar, #ef4444) 18%, #ffffff);
	border-color: color-mix(in srgb, var(--color-boton-cancelar, #ef4444) 72%, #7f1d1d);
	color: #7f1d1d;
}

#horariosSessionToolsPanel.d-none,
.horarios-attendance-side-panel.d-none {
	display: none;
}

.horarios-schedule-comment {
	align-items: flex-start;
	background: color-mix(in srgb, currentColor 10%, transparent);
	border-radius: 8px;
	display: flex;
	gap: 0.5rem;
	justify-content: space-between;
	margin: 0.45rem 0;
	padding: 0.5rem;
}

.horarios-schedule-comment__text {
	font-size: 0.78rem;
	line-height: 1.3;
	overflow-wrap: anywhere;
	white-space: pre-wrap;
}

.horarios-schedule-comment__edit {
	align-items: center;
	background: color-mix(in srgb, currentColor 12%, transparent);
	border: 1px solid color-mix(in srgb, currentColor 35%, transparent);
	border-radius: 6px;
	color: inherit;
	display: inline-flex;
	flex: 0 0 auto;
	height: 1.75rem;
	justify-content: center;
	padding: 0;
	width: 1.75rem;
}

.horarios-schedule-comment__edit:hover,
.horarios-schedule-comment__edit:focus-visible {
	background: color-mix(in srgb, currentColor 22%, transparent);
}

.horarios-schedule-comment--editing {
	display: block;
}

.horarios-schedule-comment--editing .form-control {
	background: #ffffff;
	color: #172033;
}

.horarios-attendance-side-panel {
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.horarios-attendance-candidates-status {
	min-height: 1.1rem;
	overflow-wrap: anywhere;
}

.horarios-attendance-candidates-list {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.horarios-attendance-candidate,
.horarios-attendance-candidate-empty {
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.14);
	border-radius: 7px;
	color: #1f2937;
	line-height: 1.2;
	padding: 0.55rem 0.65rem;
}

.horarios-attendance-candidate {
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
	cursor: grab;
	display: flex;
	flex-direction: column;
	gap: 0.12rem;
	user-select: none;
}

.horarios-attendance-candidate:active,
.horarios-attendance-user:active {
	cursor: grabbing;
}

.horarios-attendance-candidate--dragging,
.horarios-attendance-user--dragging {
	opacity: 0.55;
}

.horarios-attendance-candidate__label {
	font-size: 0.88rem;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.horarios-attendance-candidate__meta {
	color: #6b7280;
	font-size: 0.76rem;
	overflow-wrap: anywhere;
}

.horarios-attendance-candidate-empty {
	color: #6b7280;
	font-size: 0.84rem;
}

.horarios-week-event {
	border-radius: 7px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
	display: flex;
	flex-direction: column;
	font-size: 0.68rem;
	gap: 0.05rem;
	height: calc(((100% + 1px) * var(--citas-event-span, 1)) - 0.32rem);
	left: 0.18rem;
	line-height: 1.12;
	margin-bottom: 0.15rem;
	overflow: hidden;
	padding: 0.16rem 0.3rem;
	position: absolute;
	right: 0.18rem;
	top: 0.16rem;
	z-index: 3;
}

.horarios-week-event--busy {
	background-color: #111827;
	border: 1px dashed rgba(248, 250, 252, 0.55);
	color: #f8fafc;
	opacity: 0.94;
	pointer-events: none;
	z-index: 2;
}

.horarios-week-event--expanded {
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
	cursor: default;
	gap: 0.35rem;
	height: auto;
	max-height: 280px;
	min-height: 148px;
	overflow: auto;
	padding: 0.42rem 0.5rem;
	right: auto;
	width: min(360px, calc(100vw - 2rem));
	z-index: 14;
}

.horarios-week-event--expanded-left {
	left: auto;
	right: 0.18rem;
}

.horarios-week-event--user-drop {
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.84), 0 0 0 6px color-mix(in srgb, currentColor 42%, transparent), 0 14px 30px rgba(15, 23, 42, 0.22);
}

.horarios-week-event__top {
	align-items: flex-start;
	display: flex;
	gap: 0.25rem;
	justify-content: space-between;
	min-width: 0;
}

.horarios-week-event__top--expanded {
	gap: 0.5rem;
}

.horarios-week-event__title {
	flex: 1 1 auto;
	font-weight: 800;
	min-width: 0;
	overflow-wrap: anywhere;
}

.horarios-week-event__expanded-title {
	flex: 1 1 auto;
	font-size: 0.74rem;
	font-weight: 800;
	line-height: 1.18;
	min-width: 0;
	overflow-wrap: anywhere;
}

.horarios-week-event__action {
	align-items: center;
	background: color-mix(in srgb, currentColor 10%, transparent);
	border: 1px solid color-mix(in srgb, currentColor 32%, transparent);
	border-radius: 999px;
	color: inherit;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 1.18rem;
	height: 1.18rem;
	justify-content: center;
	line-height: 1;
	margin-left: auto;
	padding: 0;
	width: 1.18rem;
}

.horarios-week-event__action:hover,
.horarios-week-event__action:focus {
	background: color-mix(in srgb, currentColor 18%, transparent);
	outline: none;
}

.horarios-week-event__action svg {
	display: block;
}

.horarios-week-event__details {
	align-items: center;
	display: flex;
	gap: 0.25rem;
	justify-content: space-between;
	white-space: nowrap;
}

.horarios-week-event__occupancy,
.horarios-week-event__time {
	font-weight: 700;
}

.horarios-week-event__occupancy {
	margin-left: auto;
	text-align: right;
}

.horarios-week-event__monitor {
	opacity: 0.92;
	overflow-wrap: anywhere;
}

.horarios-attendance-list {
	display: flex;
	flex-direction: column;
	gap: 0.22rem;
}

.horarios-attendance-state {
	background: color-mix(in srgb, currentColor 9%, transparent);
	border: 1px solid color-mix(in srgb, currentColor 20%, transparent);
	border-radius: 6px;
	font-size: 0.76rem;
	line-height: 1.25;
	padding: 0.35rem 0.45rem;
}

.horarios-attendance-state--error {
	background: color-mix(in srgb, #ef4444 18%, transparent);
	border-color: color-mix(in srgb, #ef4444 45%, transparent);
}

.horarios-attendance-user {
	background: color-mix(in srgb, currentColor 8%, transparent);
	border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
	border-radius: 6px;
	cursor: grab;
	display: flex;
	flex-direction: column;
	gap: 0.02rem;
	padding: 0.3rem 0.4rem;
	user-select: none;
}

.horarios-attendance-user:hover,
.horarios-attendance-candidate:hover {
	border-color: color-mix(in srgb, currentColor 32%, transparent);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.1);
}

.horarios-attendance-user__label {
	font-size: 0.74rem;
	font-weight: 800;
	line-height: 1.15;
}

.horarios-attendance-user__meta {
	font-size: 0.68rem;
	line-height: 1.15;
	opacity: 0.82;
}

.horarios-week-event span {
	display: block;
	overflow-wrap: anywhere;
}

.horarios-session-badges .horarios-session-badge span {
	display: inline-block;
	overflow-wrap: anywhere;
    margin: 0.2rem;
}

@media (max-width: 991.98px) {
	.horarios-session-panel-column {
		position: static;
	}

	.horarios-session-panel {
		max-height: none;
		overflow-y: visible;
		position: static;
	}

	.horarios-week-nav {
		flex-wrap: wrap;
	}
}
