﻿:root {
  --primary: #0d6efd;
  --secondary: #6c757d;
  --mkf2-primary: #6d28d9;
  --mkf2-secondary: #0ea5e9;
  --mkf2-accent: #14b8a6;
  --mkf2-ink: #0b1020;
  --mkf2-muted: #64748b;
  --mkf2-soft: #f8fafc;
  --mkf2-border: rgba(2, 6, 23, 0.08);
  --mkf2-r-sm: 10px;
  --mkf2-r-md: 16px;
  --mkf2-r-lg: 20px;
  --mkf2-elev-1: 0 6px 16px rgba(2, 6, 23, 0.08);
  --mkf2-elev-2: 0 14px 36px rgba(2, 6, 23, 0.14);
}
* {
  box-sizing: border-box;
}
.wrapper {
  flex-grow: 1;
}
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
header {
  flex: 0 0 auto;
}
footer {
  flex: 0 0 auto;
}
a {
  text-decoration: none;
}
.row {
  clear: both;
}
/*.row > * {
    padding: 0px !important;
}
*/
@media (min-width: 768px) {
  .text-md-right {
    text-align: right;
  }
}
section.keditor-sub-container {
  margin: 20px !important;
}
#content-area {
  padding: 0px;
  min-height: 100%;
}
@media (max-width: 768px) {
  #content-area {
    margin-bottom: 50px;
  }
}
.image {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.navbar-brand img {
  max-height: 80px;
}
.modal .cm-scroller {
  max-height: 55% !important;
}
.btn-container-move {
  padding-top: 5px;
  padding-bottom: 5px;
}
.carousel-item-bg {
  width: 100%;
  height: 50vh;
  background-size: cover;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
img {
  max-width: 100%;
}
.img-circle img {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.mkmanager-container {
  height: 100vh;
}
.calendario .mes-calendario {
  margin-bottom: 2rem;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 1rem;
  background: #fafbff;
}
.calendario .calendario-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.calendario .nombre-mes {
  text-align: center;
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: capitalize;
}
.calendario .dia-calendario {
  min-height: 65px;
  border-radius: 8px;
  background: #f5f5f7;
  position: relative;
  padding: 3px 2px 2px 2px;
  display: flex;
  flex-direction: column;
  /* este min-width es clave para que los hijos puedan reducirse */
  min-width: 0;
}
@media (max-width: 768px) {
  .calendario .dia-calendario {
    min-height: 50px;
  }
}
.calendario .reserva-bloque {
  display: block;
  width: 100%;
  color: #333 !important;
  font-size: 0.82rem;
  border-radius: 6px;
  padding: 2px 4px;
  margin-bottom: 2px;
  text-decoration: none;
  box-shadow: 0 1px 3px #0001;
  /* text-shadow: 0 1px 1px #fff8; */
  /* Si quieres sombra blanca */
  min-width: 0;
  overflow: hidden;
  /* recortar texto sobrante */
  white-space: nowrap;
  /* sin saltos de línea */
  text-overflow: ellipsis;
  /* muestra “…” */
  box-sizing: border-box;
  /* que el padding no aumente el ancho */
}
.calendario .reserva-bloque:hover {
  filter: brightness(1.1);
}
.calendario .num-dia {
  position: absolute;
  top: 2px;
  right: 6px;
  font-size: 0.73rem;
  color: #666;
}
.calendario .grid-header {
  font-size: 0.9em;
  text-align: center;
  color: #666;
  font-weight: bold;
}
.calendario .ellipsis {
  /* Hacer que el bloque no crezca más allá de su contenedor */
  overflow: hidden;
  /* Evitar salto de línea */
  /*        white-space: nowrap;
*/
  /* Mostrar puntos suspensivos al recortar */
  text-overflow: ellipsis;
  /* O bien: max-width: 100%; */
  display: inline-block;
  /* o block, según tu diseño */
}
/* -----------------------------
   ESTILOS PARA SNIPPETS CHATGPT
------------------------------ */
/* =========================================================
   mkfactory.snippets.v2.less
   Look & feel renovado para snippets con Bootstrap 5
   ========================================================= */
/* -----------------------------
   Mixins
------------------------------ */
/* -----------------------------
   Utilidades base
------------------------------ */
.bg-body-tertiary {
  background: var(--mkf2-soft);
}
.object-fit-cover {
  object-fit: cover;
}
.ratio {
  position: relative;
  display: block;
  width: 100%;
}
.ratio > * {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.ratio-16x9 {
  aspect-ratio: 16 / 9;
}
.ratio-1x1 {
  aspect-ratio: 1 / 1;
}
.rounded-2xl {
  border-radius: var(--mkf2-r-lg);
}
.text-soft {
  color: var(--mkf2-muted);
}
/* -----------------------------
   Modo edición (resaltado)
------------------------------ */
.mkf-editing [data-type="container"],
.mkf-editing [data-type="component-text"] {
  position: relative;
}
.mkf-editing [data-type="container"] {
  outline: 1px solid var(--mkf2-border);
}
.mkf-editing [data-type="container"]:hover {
  outline-color: rgba(var(--mkf2-primary), 0.45);
}
.mkf-editing [data-type="container"]::after {
  content: "container";
  position: absolute;
  top: -10px;
  left: 8px;
  font-size: 0.7rem;
  background: #fff;
  color: var(--mkf2-muted);
  border: 1px solid var(--mkf2-border);
  border-radius: 6px;
  padding: 0 6px;
}
.mkf-editing [data-type="container"].col {
  outline: 1px dashed var(--mkf2-border);
}
.mkf-editing [data-type="container"].col:hover {
  outline-color: rgba(var(--mkf2-secondary), 0.45);
}
.mkf-editing [data-type="container"].col::after {
  content: "container";
  position: absolute;
  top: -10px;
  left: 8px;
  font-size: 0.7rem;
  background: #fff;
  color: var(--mkf2-muted);
  border: 1px dashed var(--mkf2-border);
  border-radius: 6px;
  padding: 0 6px;
}
.mkf-editing [data-type="component-text"] {
  outline: 1px dashed rgba(var(--mkf2-primary), 0.35);
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mkf-editing [data-type="component-text"]:hover {
  box-shadow: 0 0 0 3px rgba(var(--mkf2-primary), 0.25) inset;
}
.mkf-editing [data-type="component-text"]::after {
  content: "text";
  position: absolute;
  top: -10px;
  left: 8px;
  font-size: 0.7rem;
  background: #fff;
  color: var(--mkf2-muted);
  border: 1px dashed var(--mkf2-border);
  border-radius: 6px;
  padding: 0 6px;
}
/* -----------------------------
   Botones mejorados
------------------------------ */
.btn-elevated {
  box-shadow: var(--mkf2-elev-1);
  transition: box-shadow 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-elevated:hover {
  box-shadow: var(--mkf2-elev-2);
}
.btn-gradient {
  color: #fff !important;
  border: 0;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  background-image: linear-gradient(135deg, var(--mkf2-secondary), var(--mkf2-primary));
  transition: filter 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  /* Evitar que el filter afecte al texto: usa cambio de background en vez de filter */
  transition: background-position 0.18s ease, box-shadow 0.18s ease;
  background-size: 120% 120%;
  background-position: 0% 50%;
}
.btn-gradient:hover,
.btn-gradient:focus,
.btn-gradient:active,
.btn-gradient:active:focus,
.btn-gradient:visited {
  color: #fff !important;
  text-decoration: none;
}
.btn-gradient:hover {
  /* “animación” del gradiente sin tocar el color del texto */
  filter: brightness(1.05);
  background-position: 100% 50%;
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.14);
}
/* -----------------------------
   HERO
------------------------------ */
.mkf2-hero {
  padding-block: 3.5rem;
}
.mkf2-hero .mkf2-hero-title {
  letter-spacing: -0.02em;
}
.mkf2-hero .mkf2-hero-media {
  border-radius: var(--mkf2-r-md);
  overflow: hidden;
  box-shadow: var(--mkf2-elev-2);
  position: relative;
  width: 100%;
  /* Fallback de ratio 16:9 con pseudo-elemento (funciona incluso sin aspect-ratio) */
  /* La imagen ocupa todo el cuadro */
}
.mkf2-hero .mkf2-hero-media::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.mkf2-hero .mkf2-hero-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* -----------------------------
   FEATURES GRID
------------------------------ */
.mkf2-feature-card {
  background: #fff;
  border: 1px solid var(--mkf2-border);
  border-radius: var(--mkf2-r-md);
  box-shadow: var(--mkf2-elev-1);
  padding: 1.5rem;
  position: relative;
  transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mkf2-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(var(--mkf2-primary), 0.12), transparent 60%);
  opacity: 0.5;
}
.mkf2-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mkf2-elev-2);
}
.mkf2-pricing {
  background: linear-gradient(180deg, #fbfdff, #ffffff);
}
.mkf2-pricing .mkf2-pricing-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 1.75rem;
}
.mkf2-price-row {
  align-items: stretch;
}
.mkf2-price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--mkf2-r-md);
  background: #fff;
  border: 1px solid var(--mkf2-border);
  box-shadow: var(--mkf2-elev-1);
  transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.18s;
}
.mkf2-price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mkf2-elev-2);
}
.mkf2-price-card .mkf2-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  flex: 1;
}
.mkf2-price-card .mkf2-head {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--mkf2-muted);
  margin-bottom: 0.25rem;
}
.mkf2-price-card .mkf2-price-title {
  margin: 0 0 0.25rem;
  letter-spacing: -0.01em;
}
.mkf2-price-card .mkf2-price {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  line-height: 1;
}
.mkf2-price-card .mkf2-price .cur {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: var(--mkf2-muted);
}
.mkf2-price-card .mkf2-price .amt {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.mkf2-price-card .mkf2-price .per {
  font-size: 0.95rem;
  color: var(--mkf2-muted);
  margin-bottom: 0.15rem;
}
.mkf2-price-card .mkf2-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
}
.mkf2-price-card .mkf2-list li {
  position: relative;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: #43505e;
  margin: 0.35rem 0;
}
.mkf2-price-card .mkf2-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mkf2-accent), var(--mkf2-secondary));
  margin-top: 0.15rem;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.04) inset;
}
.mkf2-price-card .mkf2-list li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 0.1rem;
  font-size: 12px;
  color: #fff;
  font-weight: 800;
}
.mkf2-price-card .mkf2-cta {
  margin-top: auto;
}
/* Ejemplo de vars que espera este bloque */
:root {
  --mkf2-primary: #6d28d9;
  --mkf2-secondary: #0ea5e9;
  --mkf2-elev-2: 0 14px 36px rgba(2, 6, 23, 0.14);
}
/* Destacada — versión clara */
.mkf2-price-card.is-featured {
  /* borde degradado + relleno blanco */
  border: 2px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box, /* borde degradado (versión simple por si no hay color-mix) */ linear-gradient(135deg, var(--mkf2-secondary), var(--mkf2-primary)) border-box;
  box-shadow: var(--mkf2-elev-2);
  position: relative;
  border-radius: 1.25rem;
  /* o el que uses en tu card */
}
/* si el navegador soporta color-mix, hacemos el degradado semitransparente */
@supports (background: color-mix(in srgb, white 10%, black)) {
  .mkf2-price-card.is-featured {
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(135deg, color-mix(in srgb, var(--mkf2-secondary) 70%, transparent), color-mix(in srgb, var(--mkf2-primary) 70%, transparent)) border-box;
  }
}
/* brillo sutil */
.mkf2-price-card.is-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  /* versión base */
  background: linear-gradient(180deg, var(--mkf2-primary), transparent 65%);
  opacity: 0.1;
  /* simulamos el .10 */
}
/* versión más precisa con color-mix (opcional) */
@supports (background: color-mix(in srgb, white 10%, black)) {
  .mkf2-price-card.is-featured::before {
    background: linear-gradient(180deg, color-mix(in srgb, var(--mkf2-primary) 10%, transparent), transparent 65%);
    opacity: 1;
  }
}
/* badge */
.mkf2-price-card.is-featured .mkf2-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--mkf2-secondary), var(--mkf2-primary));
  color: #fff;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
/* Botones específicos del pricing (no tocan Bootstrap global) */
.mkf2-btn-primary {
  display: inline-block;
  width: 100%;
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  background-image: linear-gradient(135deg, var(--mkf2-secondary), var(--mkf2-primary));
  box-shadow: var(--mkf2-elev-1);
  text-align: center;
  transition: filter 0.18s, box-shadow 0.18s;
}
.mkf2-btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: var(--mkf2-elev-2);
  color: #fff;
  text-decoration: none;
}
.mkf2-btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--mkf2-primary), 0.25);
}
.mkf2-btn-outline {
  display: inline-block;
  width: 100%;
  background: #fff;
  color: var(--mkf2-primary);
  border: 2px solid var(--mkf2-primary);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  text-align: center;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
}
.mkf2-btn-outline:hover {
  background: rgba(var(--mkf2-primary), 0.1);
  color: var(--mkf2-primary);
  text-decoration: none;
}
.mkf2-btn-outline:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--mkf2-primary), 0.22);
}
/* Responsivo */
@media (max-width: 991.98px) {
  .mkf2-price-card .mkf2-card-body {
    padding: 1rem;
  }
  .mkf2-price-card .mkf2-price .amt {
    font-size: 2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mkf2-price-card {
    transition: none;
  }
  .mkf2-btn-primary,
  .mkf2-btn-outline {
    transition: none;
  }
}
/* Contenedor del módulo */
.mkf2-testimonials {
  padding-block: 2.5rem;
}
/* Tarjeta de testimonio */
.mkf2-t-card {
  background: #fff;
  border: 1px solid var(--mkf2-border);
  border-radius: var(--mkf2-r-md);
  box-shadow: var(--mkf2-elev-1);
  padding: 1.5rem;
  position: relative;
}
.mkf2-t-card .quote {
  font-size: 2.25rem;
  line-height: 1;
  opacity: 0.12;
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  user-select: none;
}
.mkf2-t-card blockquote {
  margin: 0 0 1rem 0;
  font-size: 1.05rem;
  line-height: 1.65;
}
.mkf2-t-card .t-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mkf2-t-card .avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 56px;
  box-shadow: 0 0 0 3px rgba(var(--mkf2-secondary), 0.12);
}
.mkf2-t-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mkf2-t-card .name {
  font-weight: 700;
  margin: 0;
}
.mkf2-t-card .role {
  margin: 0;
  color: var(--mkf2-muted);
  font-size: 0.95rem;
}
/* Estrellas (CSS only) — edita la nota con --rating: 0..5 */
.mkf2-stars {
  --rating: 4.8;
  --star-size: 1rem;
  --star-gap: 0.25ch;
  --star-color: #e2e8f0;
  /* gris base */
  --star-fill: #f59e0b;
  /* ámbar */
  position: relative;
  display: inline-block;
  font-size: var(--star-size);
  line-height: 1;
  letter-spacing: var(--star-gap);
}
.mkf2-stars::before {
  content: "★★★★★";
  color: var(--star-color);
}
.mkf2-stars::after {
  content: "★★★★★";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(var(--rating) / 5 * 100%);
  color: var(--star-fill);
  overflow: hidden;
  white-space: nowrap;
}
.mkf2-stars-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.mkf2-stars-wrap .score {
  color: var(--mkf2-muted);
  font-size: 0.95rem;
}
/* Controles del carrusel (mejor visibilidad) */
.mkf2-testimonials .carousel-control-prev,
.mkf2-testimonials .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--mkf2-border);
  box-shadow: var(--mkf2-elev-1);
  opacity: 0.95;
}
.mkf2-testimonials .carousel-control-prev {
  left: -10px;
}
.mkf2-testimonials .carousel-control-next {
  right: -10px;
}
.mkf2-testimonials .carousel-control-prev-icon,
.mkf2-testimonials .carousel-control-next-icon {
  filter: invert(0.2);
}
/* Indicadores (si los usas) */
.mkf2-testimonials .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: rgba(var(--mkf2-primary), 0.45);
}
.mkf2-testimonials .carousel-indicators .active {
  background-color: var(--mkf2-primary);
}
/* Responsive tweaks */
@media (max-width: 575.98px) {
  .mkf2-t-card {
    padding: 1.25rem;
  }
  .mkf2-stars {
    --star-size: 0.95rem;
  }
}
/* -----------------------------
   TIMELINE
------------------------------ */
.mkf2-timeline .mkf2-item {
  background: #fff;
  border: 1px solid var(--mkf2-border);
  border-radius: var(--mkf2-r-md);
  box-shadow: var(--mkf2-elev-1);
  padding: 1rem 1.25rem;
  position: relative;
}
.mkf2-timeline .mkf2-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background-image: linear-gradient(135deg, var(--mkf2-secondary), var(--mkf2-primary));
  border-top-left-radius: var(--mkf2-r-md);
  border-bottom-left-radius: var(--mkf2-r-md);
}
.mkf2-timeline .mkf2-item h5 {
  margin-bottom: 0.25rem;
}
.mkf2-timeline .mkf2-item p {
  margin: 0;
  color: var(--mkf2-muted);
}
/* -----------------------------
   CTA BAND
------------------------------ */
.mkf2-cta {
  padding-block: 3rem;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(135deg, var(--mkf2-secondary), var(--mkf2-primary));
}
.mkf2-cta .btn {
  padding-inline: 1.25rem;
}
/* -----------------------------
   Elementos clave
------------------------------ */
.mkf2-keyitems {
  padding-block: 2rem;
}
.mkf2-k-header .h2 {
  letter-spacing: -0.01em;
}
.mkf2-k-header .mkf2-k-legend {
  color: var(--mkf2-muted);
  margin: 0.25rem 0 0;
}
.mkf2-k-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--mkf2-border);
  border-radius: var(--mkf2-r-md);
  box-shadow: var(--mkf2-elev-1);
  height: 100%;
  overflow: hidden;
  transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.18s;
  /* barra de acento inferior (gradiente) */
}
.mkf2-k-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mkf2-elev-2);
}
.mkf2-k-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background-image: linear-gradient(90deg, var(--mkf2-secondary), var(--mkf2-primary), var(--mkf2-accent));
}
.mkf2-k-body {
  padding: 1rem 1.25rem;
}
.mkf2-k-item {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--mkf2-primary);
}
.mkf2-k-label {
  margin-top: 0.25rem;
  color: var(--mkf2-muted);
}
.mkf2-gradient-background {
  background: linear-gradient(135deg, var(---mkf2-primary), var(---mkf2-secondary));
}
/* Responsive */
@media (max-width: 575.98px) {
  .mkf2-k-body {
    padding: 0.9rem 1rem;
  }
  .mkf2-k-item {
    font-size: 1.15rem;
  }
}