@charset "UTF-8";
/* ── FONT ALIASES FOR WORK SANS ────────────────────────────────────────── */
@font-face {
  font-family: "Work_Sans:Regular";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Work Sans"), local("Work Sans Regular"), local("WorkSans-Regular"), url("https://fonts.gstatic.com/s/worksans/v24/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNig.ttf") format("truetype");
}
@font-face {
  font-family: "Work_Sans:Medium";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Work Sans Medium"), local("Work Sans"), local("WorkSans-Medium"), url("https://fonts.gstatic.com/s/worksans/v24/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNig.ttf") format("truetype");
}
@font-face {
  font-family: "Work_Sans:SemiBold";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local("Work Sans SemiBold"), local("Work Sans"), local("WorkSans-SemiBold"), url("https://fonts.gstatic.com/s/worksans/v24/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNig.ttf") format("truetype");
}
@font-face {
  font-family: "Work_Sans:Bold";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Work Sans Bold"), local("Work Sans"), local("WorkSans-Bold"), url("https://fonts.gstatic.com/s/worksans/v24/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNig.ttf") format("truetype");
}
@font-face {
  font-family: "Work_Sans:ExtraBold";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local("Work Sans ExtraBold"), local("Work Sans"), local("WorkSans-ExtraBold"), url("https://fonts.gstatic.com/s/worksans/v24/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nQNig.ttf") format("truetype");
}
:root {
  --background-color: #ffffff;
  --text-color: #1a1a1a;
  --header-bg: rgba(255, 255, 255, 0.8);
  --footer-bg: #f8f9fa;
  --border-color: #eeeeee;
  --link-color: #E63030;
  --card-bg: #ffffff;
  --shadow: 0 4px 6px rgba(0,0,0,0.05);
  /* Mentu Labs Institutional Colors */
  --ml-bg-beige: #f9f7f1;
  --ml-bg-beige-dark: #ece6d5;
  --ml-primary-cream: #f9f7f1;
  --ml-primary-dark: #002a28;
  --ml-primary-blue: #2773bf;
  --ml-primary-orange: #fe9a2a;
  --ml-estrategia-green: #246c2d;
  --ml-soluciones-purple: #673e91;
  --ml-academia-orange: #f0582e;
}

[data-theme=dark] {
  --background-color: #0f172a;
  --text-color: #f1f5f9;
  --header-bg: rgba(15, 23, 42, 0.8);
  --footer-bg: #1e293b;
  --border-color: #334155;
  --link-color: #f87171;
  --card-bg: #1e293b;
  --shadow: 0 4px 6px rgba(0,0,0,0.3);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  transition: background-color 0.3s, color 0.3s;
  overflow-x: hidden;
}

.wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--ml-bg-beige);
  border-bottom: 1px solid rgba(0, 42, 40, 0.062745098);
  padding: 1rem 0;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
  background: linear-gradient(45deg, #E63030, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-nav .trigger {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav .page-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.site-nav .page-link:hover {
  color: var(--link-color);
}

.lang-switcher {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.lang-switcher a {
  color: var(--text-color);
  text-decoration: none;
  opacity: 0.6;
}
.lang-switcher a.active {
  opacity: 1;
  font-weight: 700;
  color: var(--link-color);
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-color);
  transition: all 0.2s;
}
.theme-toggle:hover {
  background-color: var(--border-color);
}
.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.sun-icon {
  display: none;
}

.moon-icon {
  display: block;
}

[data-theme=light] .sun-icon {
  display: none;
}
[data-theme=light] .moon-icon {
  display: block;
}

[data-theme=dark] .sun-icon {
  display: block;
}
[data-theme=dark] .moon-icon {
  display: none;
}

.page-content {
  padding: 0;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.2;
}

.hero {
  text-align: center;
  padding: 4rem 0;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.8;
}

.site-footer {
  background-color: var(--footer-bg);
  padding: 4rem 0 2rem;
  border-top: none;
}
.site-footer .footer-col-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.site-footer h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.site-footer .footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.6;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .site-header .wrapper {
    flex-direction: column;
    gap: 1rem;
  }
}
/* Mentu Labs Global Components */
.ml-btn-dark {
  background-color: var(--ml-primary-dark);
  color: #f9f7f1 !important;
  padding: 12px 32px;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
  justify-content: center;
}

.ml-btn-dark:hover {
  opacity: 0.9;
  color: #f9f7f1 !important;
}

.ml-btn-arrow {
  background-color: var(--ml-primary-orange);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ml-primary-dark) !important;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

/*# sourceMappingURL=main.css.map */