@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #fcfbfa;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover {
  opacity: 0.7;
}

p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
  text-align: left;
}

.tracking-wider {
  letter-spacing: 0.1em;
}

.fs-7 {
  font-size: 0.8rem;
}

.tag {
  background-color: #f0ede6;
  color: #4a4641;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 4px;
}

.badge-tech {
  display: inline-block;
  background-color: #111;
  color: #fff;
  padding: 3px 8px;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

.link-primary {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: end;
  font-size: 1rem;
  font-weight: 600;
  gap: 4px;
  padding-bottom: 0rem;
  color: #0248FC !important;
  transition: opacity 0.5s ease;
}
.link-primary:hover {
  border-bottom: solid 1px #0248FC;
  opacity: 1;
  scale: 1.01;
  color: #0033b4 !important;
}

.link-logo {
  display: flex;
  align-items: center;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25rem 0.25rem 0rem 0rem;
  gap: 4px;
  transition: opacity 0.5s ease;
}
.link-logo:hover {
  text-decoration: underline;
  opacity: 1;
  scale: 1.01;
  background-color: #F2F9FF;
  border-bottom: 2px solid #BDD6EF;
}

.navbar {
  min-height: 80px;
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
  border-bottom: 0.5px solid #f0ede6;
  background-color: #ffffff;
  box-shadow: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    gap: 1.5rem;
    justify-content: end;
  }
  .navbar-expand-lg .navbar-nav {
    gap: 1rem;
  }
}
.navbar .navbar-nav .nav-link {
  color: #868686;
}
.navbar .navbar-nav .nav-link.active {
  color: #FE0000;
  font-weight: 600;
  position: relative;
}
.navbar .navbar-nav .nav-link.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 10px;
  height: 10px;
  background-color: #FE0000;
  border-radius: 50%;
  -webkit-mask: url("../img/icons/red.svg") no-repeat center/contain;
  mask: url("../img/icons/red.svg") no-repeat center/contain;
  transform: translateX(-50%);
}
.navbar .avatar-interactivo {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0;
  background: url("../img/avatar.svg") no-repeat center/contain;
  transition: background-image 0.2s ease-in-out, opacity 0.3s ease;
}
.navbar .avatar-interactivo:hover {
  background-image: url("../img/avatar-hover.svg");
}
.navbar.navbar-scrolled {
  background-color: #ffffff !important;
  padding-top: 0.4rem !important;
  padding-bottom: 0.4rem !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.navbar.navbar-scrolled .scrolled-brand {
  width: 70px;
  height: 70px;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.scrolled-brand {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-15px);
  transition: width 10s ease, height 10s ease, opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.scrolled-brand.avatar-interactivo {
  width: 0px;
  height: 0px;
}

@media (max-width: 992px) {
  .poli-linea {
    width: 50%;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid #eceae4;
  background-color: #fcfbfa;
  font-size: 0.85rem;
}

/* ==========================================================================
   FOOTER (Look Minimalista y Limpio)
   ========================================================================== */
footer {
  border-top: 1px solid #eceae4; /* Línea sutil de división */
  background-color: var(--blanco, #ffffff);
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  margin-top: 1rem !important;
  height: auto;
}

/* Texto principal del autor o créditos */
footer .text-muted {
  color: #858585 !important;
}

footer .small {
  font-size: 0.875rem;
}

/* Espaciado del párrafo inferior */
footer p {
  margin-bottom: 0;
}

/* Meta-etiqueta del año y locación (Aplicando la lógica de mayúsculas sostenidas) */
footer .font-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em; /* Espaciado expandido para mejorar la legibilidad en caja alta */
  color: #999999 !important;
  margin-top: 0.25rem;
}

.hero-section {
  padding-top: 6rem;
  display: flex;
  justify-content: center;
  align-items: start;
  height: 100vh;
}
@media (max-width: 992px) {
  .hero-section {
    padding: 2rem 1rem;
    height: 80vh;
    align-items: center;
  }
}

.hero-intro {
  display: flex;
  gap: 1rem;
  justify-content: start;
  align-items: start;
  margin-bottom: 0.5rem;
}
.hero-intro h3 {
  padding-left: 1rem;
  font-size: clamp(1.25rem, 4.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: #111111 !important;
  margin-bottom: 0rem;
}
@media (max-width: 992px) {
  .hero-intro {
    flex-direction: column;
    gap: 0rem;
  }
  .hero-intro h3 {
    padding-left: 0rem;
  }
}

.hero-intro-headings {
  padding-top: 1rem;
  display: flex;
  justify-content: start;
  flex-direction: column;
  align-items: start;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  font-weight: 800;
  color: #0248FC;
}

.hero-subtitle {
  margin-top: 2rem;
  padding-left: 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: #868686;
  max-width: 380px;
  letter-spacing: -0.01em;
}
.hero-subtitle span {
  font-weight: 600;
  color: #111111;
}
@media (max-width: 992px) {
  .hero-subtitle {
    margin-top: 1rem;
    padding-left: 0rem;
  }
}

.avatar-interactivo {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0;
  background: url("../img/avatar.svg") no-repeat center/contain;
  transition: background-image 0.3s ease-in-out;
}
.avatar-interactivo:hover {
  opacity: 1;
  background-image: url("../img/avatar-hover.svg");
}

.system-list-container {
  margin-left: 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 24px;
}
.system-list-container::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 12px;
  bottom: 12px;
  width: 1.5px;
  background-color: #111111;
  z-index: 1;
}
@media (max-width: 992px) {
  .system-list-container {
    margin-left: 0.5rem;
    padding-left: 24px;
  }
}

.system-item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 8px 0;
}
.system-item::before {
  content: "";
  position: absolute;
  left: -26px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.system-item.item-yellow::before {
  -webkit-mask-image: url("../img/icons/yellow.svg");
  mask-image: url("../img/icons/yellow.svg");
  background-color: #eede2e;
}
.system-item.item-red::before {
  -webkit-mask-image: url("../img/icons/red.svg");
  mask-image: url("../img/icons/red.svg");
  background-color: #FE0000;
}
.system-item.item-blue::before {
  -webkit-mask-image: url("../img/icons/blue.svg");
  mask-image: url("../img/icons/blue.svg");
  background-color: #0248FC;
  width: 18px;
  height: 18px;
}
.system-item:hover::before {
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}
.system-item:hover .system-text {
  color: #000000;
}

.system-text {
  font-family: "Inter", sans-serif;
  color: #868686;
  line-height: 1;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   SECCIONES Y PROYECTOS (Layout e Identidad)
   ========================================================================== */
.proyectos-section {
  border-right: 1px solid #eede2e;
}

.section-title-row {
  margin-top: 6rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .section-title-row {
    margin-bottom: 1rem;
  }
}
.section-title-row.extra-top {
  margin-top: 12rem;
}
@media (max-width: 992px) {
  .section-title-row.extra-top {
    margin-top: 0rem;
  }
}
.section-title-row.left {
  justify-content: flex-start;
}

.section-title {
  text-align: end;
  padding: 0;
  width: 60%;
  border-bottom: 2px solid #eede2e;
  position: relative;
}
@media (max-width: 992px) {
  .section-title {
    width: 80%;
    padding-left: 1rem;
  }
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background-color: #eede2e;
  border-radius: 50%;
  transform: translateX(-50%);
}
.section-title.left {
  text-align: start;
}
.section-title.left::before {
  left: auto;
  right: -5px;
}
.section-title h4 {
  padding: 0 0 0 0rem;
  margin-bottom: 0.5rem;
  font-size: clamp(0.9rem, 1vw, 0.9rem);
  font-weight: 400;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.subsection {
  text-align: start;
  margin-bottom: 2rem;
  padding: 0;
  width: 25%;
  border-bottom: 2px solid #111111;
  position: relative;
}
.subsection::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: auto;
  right: -6px;
  width: 10px;
  height: 10px;
  background-color: #111111;
  border-radius: 50%;
  transform: translateX(-50%);
}
.subsection h5 {
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: clamp(0.9rem, 1vw, 0.9rem);
  font-weight: 400;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   PROYECTOS CARDS
   ========================================================================== */
.project-card {
  padding: 2rem 0rem;
  border-bottom: 3px solid #eceae4;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 992px) {
  .project-card {
    padding: 4rem 0rem;
  }
}
@media (max-width: 992px) {
  .project-card:first-of-type {
    padding: 4rem 0rem;
    padding-top: 3rem;
  }
}
.project-card:last-of-type {
  border-bottom: none;
}

.project-number {
  font-size: 0.75rem;
  font-weight: 600;
  color: #FE0000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-title {
  font-size: clamp(1rem, 5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #111;
}

.project-description {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
  text-align: left;
}

/* --- Bloque Jerárquico de Módulos --- */
.ammia-modules-grid {
  border-left: 2px solid #eede2e;
  padding-left: 1.2rem;
}

.module-item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111111;
  display: block;
  margin-bottom: 0.15rem;
}
.module-item p {
  line-height: 1.4;
  font-size: 0.82rem;
}

/* ==========================================================================
   MOCKUPS Y BOTONES DE PROYECTO
   ========================================================================== */
/* Contenedor temporal elegante para tus imágenes/mockups */
.project-image-placeholder {
  border-radius: 8px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.project-image-placeholder:hover {
  transform: translateY(-4px);
}

.btn-project {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 2px;
  color: #0248FC;
  border-bottom: 0px solid #0248FC;
  transition: all ease-in-out 0.3s;
}
.btn-project:hover {
  color: #0033b4;
}

.esquema-ecosistema {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #F2F9FF;
  border-radius: 8px;
  border: 2px dashed #f0ede6;
  padding: 2rem 1.5rem;
}
.esquema-ecosistema p {
  color: #868686;
}
.esquema-ecosistema__usuarios-container {
  background-color: #E3EFFE;
  padding: 1rem;
  border-radius: 4px;
  height: 100%;
}

/* ==========================================================================
   ESTILOS DE LA PÁGINA DE DETALLE (CASE STUDY)
   ========================================================================== */
.nav-project-tittle {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase !important;
  color: var(--grisclaro2);
}

/* Tipografía fina para etiquetas y metadatos */
.fs-8 {
  font-size: 0.72rem;
}

.project-header {
  padding: 2.5rem 0rem;
  margin-top: 2rem;
}
@media (max-width: 992px) {
  .project-header {
    padding: 1rem 1rem 3rem 1rem;
  }
}

.single-project-title {
  margin-top: 2rem;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--negro);
}
@media (max-width: 992px) {
  .single-project-title {
    margin-top: 0.5rem;
  }
}

.single-project-description {
  margin-top: 1rem;
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 992px) {
  .single-project-img img {
    margin-top: 3rem;
  }
}

.font-light {
  font-weight: 300;
}

.project-meta-grid {
  margin-top: 1rem;
  padding: 1rem 0rem;
  border-color: #eceae4 !important;
}
@media (max-width: 992px) {
  .project-meta-grid {
    margin-top: 0.5rem;
    padding: 0.5rem 0rem;
  }
}
.project-meta-grid__value-container {
  display: flex;
  gap: 0.5rem;
  align-items: start;
}
.project-meta-grid__values {
  display: flex;
  flex-direction: column;
}
.project-meta-grid__label {
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.project-meta-grid__value {
  font-size: 0.95rem;
  color: #4a4a4a;
}
.project-meta-grid img {
  width: 20px;
  height: auto;
  padding-top: 0.25rem;
}

.section-block {
  padding: 3.5rem 0;
}
.section-block__imagen {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Bloques de sección de la lectura */
.case-section-title {
  text-align: start;
  padding: 0;
  font-size: 0.9rem;
  color: var(--gris);
  width: 80%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--amarillo);
  position: relative; /* Obligatorio para que el círculo se posicione respecto a esta línea */
}

/* --- El Círculo al final izquierdo de la línea --- */
.case-section-title::before {
  content: "";
  position: absolute;
  left: auto;
  right: -5px;
  bottom: -5px; /* Ajusta este valor para que el centro del círculo calce con la línea (si mide 8px, -5px lo centra sobre un borde de 2px) */
  /* Dimensiones del círculo */
  width: 10px;
  height: 10px;
  background-color: var(--amarillo);
  border-radius: 50%; /* Lo hace perfectamente redondo */
  transform: translateX(-50%); /* Hace que el centro del círculo sea el inicio exacto de la línea */
}

.case-text {
  font-size: 1.05rem;
  color: #333333;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 1.5rem;
}

.case-list {
  padding-left: 1.25rem;
}

.case-list li {
  font-size: 1.05rem;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Placeholders premium para las imágenes del caso */
.case-hero-image-placeholder {
  background-color: #f3f1ec;
  border: 1px solid #e6e3dc;
  border-radius: 6px;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.case-grid-image-placeholder {
  background-color: #f3f1ec;
  border: 1px solid #e6e3dc;
  border-radius: 6px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Efecto hover botón volver */
.hover-dark:hover {
  background-color: #111 !important;
  color: #fff !important;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* ==========================================================================
   NUEVA SECCIÓN: GALERÍA GRÁFICA / ILUSTRACIÓN
   ========================================================================== */
.graphic-system-section {
  padding-top: 5rem !important;
}

.graphic-card {
  background: transparent;
  transition: all 0.3s ease;
}

.graphic-image-placeholder {
  position: relative;
  background-color: #f0ede6; /* Fondo ligeramente contrastante */
  border: 1px solid #e1ded7;
  border-radius: 6px;
  height: 320px; /* Proporción más vertical/cuadrada para diseño gráfico */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.top-3 {
  top: 1rem;
}

.mini-project-title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #111;
  margin-bottom: 0.3rem;
}

.graphic-card:hover .graphic-image-placeholder {
  border-color: #b89253;
  background-color: #eceae4;
}

/* Ajuste justificado para bloques de texto analíticos */
.justify-text {
  text-align: justify;
}/*# sourceMappingURL=styles.css.map */