@charset "UTF-8";
body {
  font-family: "DM Sans", sans-serif;
  color: #141413;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 700;
}

p {
  margin-top: 0;
  margin-bottom: 1em;
}

a {
  color: #0057FF;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

body {
  margin: 0;
  padding: 0;
  background-color: #FEFEFE;
  position: relative;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}

.container {
  margin: 10px 50px 0px 50px;
  padding: 40px 20px;
}
@media (max-width: 992px) {
  .container {
    padding-left: 25px;
    padding-right: 25px;
    margin: 10px 35px 0px 35px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-top: 80px;
    margin: 10px 20px 0px 20px;
  }
}

.main-header {
  text-align: left;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .main-header {
    margin: 20px;
  }
}
@media (max-width: 768px) {
  .main-header {
    margin: auto;
    margin-bottom: 40px;
  }
}
.main-header h1 {
  font-size: 7.1em;
  font-weight: 500;
  color: #141413;
  line-height: 1em;
  margin: 0;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .main-header h1 {
    font-size: 3.5em;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 600;
  }
}
@media (max-width: 580px) {
  .main-header h1 {
    font-size: 2.5em;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 600;
  }
}
.main-header .subtitle {
  font-size: 2.2em;
  font-weight: 400;
  line-height: 1.1em;
  color: #0057FF;
  margin-top: 15px;
  letter-spacing: 1.2px;
  max-width: 800px;
}
@media (max-width: 768px) {
  .main-header .subtitle {
    font-size: 0.9em;
  }
}
@media (max-width: 480px) {
  .main-header .subtitle {
    font-size: 1.1em;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 120%;
  }
}

.main-footer {
  text-align: right;
  padding: 20px 0;
  margin-top: 30px;
}

.scroll-top-btn {
  font-size: 3.8em;
  color: #141413;
  text-decoration: none;
  padding: 10px;
  display: inline-block;
  font-weight: bold;
}
.scroll-top-btn:hover {
  color: #0057FF;
  text-decoration: none;
}

.components-section {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  width: 66.666vw;
  max-width: 1100px;
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .components-section {
    width: 85vw;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .components-section {
    flex-direction: column;
    align-items: stretch;
    width: 90vw;
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .components-section {
    width: 100%;
    gap: 20px;
    margin-left: 0;
    margin-right: 0;
  }
}

.exploration-section {
  text-align: left;
  margin-top: 100px;
  margin-bottom: 20px;
}
.exploration-section h2 {
  font-size: 2em;
  font-weight: 700;
  color: #0057FF;
  margin-bottom: 40px;
  text-transform: uppercase;
  text-decoration: underline;
}

.exploration-grid {
  display: grid;
  gap: 30px;
  row-gap: 75px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .exploration-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .exploration-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.placeholder-section {
  padding: 50px 20px;
  text-align: center;
  color: #777;
  border-top: 1px dashed #ddd;
}

.btn {
  background-color: #141413;
  color: #FEFEFE;
  padding: 10px 18px;
  border: none;
  border-radius: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}
.btn:hover {
  background-color: #0057FF;
  color: #FEFEFE;
  text-decoration: none;
}

.menu-toggle {
  position: absolute;
  top: 45px;
  right: 40px;
  z-index: 1002;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .menu-toggle {
    top: 20px;
    right: 20px;
    padding: 6px;
  }
}
.menu-toggle:hover {
  opacity: 0.7;
}
.menu-toggle .menu-icon-svg {
  display: block;
  height: auto;
}
.menu-toggle .menu-icon-hamburger {
  width: 70px;
  display: block;
}
@media (max-width: 580px) {
  .menu-toggle .menu-icon-hamburger {
    width: 40px;
  }
}
.menu-toggle .menu-icon-close {
  width: 45px;
  display: none;
}
@media (max-width: 580px) {
  .menu-toggle .menu-icon-close {
    width: 40px;
  }
}
.menu-toggle.active .menu-icon-hamburger {
  display: none;
}
.menu-toggle.active .menu-icon-close {
  display: block;
}

.menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 40vw;
  min-width: 280px;
  max-width: 500px;
  height: 100%;
  background-color: #121212;
  color: #FEFEFE;
  padding: 40px 0 20px 0;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.menu-panel.active {
  right: 0;
}
.menu-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}
.menu-panel li > a {
  display: flex;
  align-items: center;
  padding: 10px 30px;
  color: #FEFEFE;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  transition: color 0.2s ease;
}
.menu-panel li > a:hover {
  color: #0057FF;
  text-decoration: underline;
}
.menu-panel li:first-child > a {
  padding-top: 25px;
}
.menu-panel li.menu-group-end > a {
  border-bottom: 1px solid #383838;
  padding-bottom: 20px;
}
.menu-panel li.menu-group-end + li:not(.menu-footer-link) > a {
  padding-top: 20px;
}
.menu-panel .menu-icon {
  width: 30px;
  height: auto;
  margin-right: 22px;
}
.menu-panel .menu-level-1 > a {
  font-size: 2em;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline;
  letter-spacing: 0.5px;
}
.menu-panel .menu-level-2 > a {
  font-size: 1.5em;
  font-weight: 500;
  color: #FEFEFE;
}
.menu-panel .menu-level-3 > a {
  font-size: 1em;
  font-weight: 400;
  color: #aaa;
}
.menu-panel .menu-footer-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 25px 20px 10px 20px;
  color: #a0a0a0;
  text-decoration: none;
  font-size: 1em;
  font-weight: 400;
  margin-top: auto;
  border-top: 1px solid #383838;
}
.menu-panel .menu-footer-link:hover {
  color: #FEFEFE;
  text-decoration: none;
}
.menu-panel .menu-footer-link .menu-icon-footer {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  filter: invert(70%) sepia(0%) saturate(100%) hue-rotate(0deg) brightness(100%) contrast(80%);
}
@media (max-width: 768px) {
  .menu-panel {
    width: 100vw;
    max-width: 100vw;
    min-width: 100vw;
    right: -100vw;
    padding: 20px;
    padding-top: 60px;
  }
}

.menu-active-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #FEFEFE;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-active-background.active {
  display: block;
  opacity: 1;
}

body.menu-open .menu-toggle {
  background: transparent;
}
body.menu-open .menu-toggle .menu-icon-close {
  filter: brightness(0) invert(1);
}

.card, .exploration-card, .component-card {
  background-color: #FEFEFE;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}

.component-card {
  flex-basis: calc(50% - 20px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .component-card {
    background-color: transparent;
  }
}
.component-card h2 {
  font-size: 2em;
  font-weight: 700;
  color: #141413;
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .component-card h2 {
    font-size: 1.6em;
    letter-spacing: 0;
  }
}
.component-card .title-icon {
  width: 24px;
  height: auto;
  margin-right: 8px;
  filter: invert(1);
}
.component-card p {
  font-size: 1em;
  font-weight: 400;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #333;
}
@media (max-width: 768px) {
  .component-card {
    flex-basis: auto;
    margin-bottom: 30px;
  }
  .component-card:last-child {
    margin-bottom: 0;
  }
  .component-card .card-content-wrapper {
    padding: 20px;
  }
  .component-card h2 {
    font-size: 1.4em;
    font-weight: 500;
  }
  .component-card .title-icon {
    width: 20px;
  }
  .component-card p {
    font-size: 1em;
  }
  .component-card .btn-visual,
  .component-card .btn {
    font-size: 1em;
    padding: 10px 15px;
  }
}
@media (max-width: 480px) {
  .component-card .card-content-wrapper {
    padding: 15px;
  }
  .component-card h2 {
    font-size: 1.4em;
  }
  .component-card p {
    font-size: 1em;
    line-height: 140%;
  }
  .component-card .btn-visual,
  .component-card .btn {
    font-size: 1em;
    padding: 10px 15px;
  }
}

.exploration-card {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  /*
  .exploration-card-image-wrapper:hover {
      .exploration-image {
          transform: scale(1.15);
          object-position: 40% 40%;
      }
  }
  */
}
.exploration-card .exploration-card-image-wrapper {
  width: 100%;
  height: 270px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}
.exploration-card .exploration-card-image-wrapper .exploration-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), object-position 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), object-position 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -o-object-position 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1);
}
.exploration-card:hover .exploration-image {
  transform: scale(1.15);
  -o-object-position: 40% 40%;
     object-position: 40% 40%;
}
.exploration-card h3 {
  font-size: 1.5em;
  font-weight: 700;
  color: #141413;
  margin-top: 15px;
  margin-bottom: 5px;
  line-height: 1.3em;
}
@media (max-width: 768px) {
  .exploration-card h3 {
    font-size: 1em;
    font-weight: 500;
    color: #141413;
    margin-top: 10px;
    margin-bottom: 5px;
    line-height: 1.4em;
  }
}
.exploration-card p {
  font-size: 1em;
  font-weight: 400;
  color: #333;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .exploration-card {
    margin-bottom: 40px;
  }
  .exploration-card .card-content-wrapper {
    padding: 15px;
  }
  .exploration-card h2 {
    font-size: 1.4em;
  }
  .exploration-card p {
    font-size: 1em;
    line-height: 140%;
  }
  .exploration-card .btn-visual,
  .exploration-card .btn {
    font-size: 1em;
    padding: 10px 15px;
  }
}

/*
.exploration-card.pan-direction-top-left:hover .exploration-image {
    transform: scale(1.15);
    object-position: top left;
}
.exploration-card.pan-direction-bottom-right:hover .exploration-image {
    transform: scale(1.15);
    object-position: bottom right;
}
*/
/*
@keyframes imagePan {
    0% { transform: scale(1.1) translateX(-5%) translateY(-5%); }
    25% { transform: scale(1.15) translateX(5%) translateY(-5%); }
    50% { transform: scale(1.1) translateX(5%) translateY(5%); }
    75% { transform: scale(1.15) translateX(-5%) translateY(5%); }
    100% { transform: scale(1.1) translateX(-5%) translateY(-5%); }
}
// Nota: Animar transform (translateX, translateY, scale) es generalmente más performante
// que animar object-position directamente en keyframes. El ejemplo de keyframes de arriba usa transform.
*/
.fullscreen-gif-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1003;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.fullscreen-gif-background.active {
  display: block;
  opacity: 1;
}
@media (max-width: 768px) {
  .fullscreen-gif-background {
    display: block;
    opacity: 0.7;
    z-index: -1;
    background-image: url("../assets/ARTEFACT.gif");
  }
}

.sobre-proyecto-page .main-header {
  text-align: left;
  margin-bottom: 60px;
}
.sobre-proyecto-page .main-header h1 {
  font-size: 7em;
  font-weight: 500;
  color: #141413;
  line-height: 0.8;
  margin: 0;
  letter-spacing: 2px;
}
@media (max-width: 992px) {
  .sobre-proyecto-page .main-header h1 {
    font-size: 4em;
  }
}
@media (max-width: 768px) {
  .sobre-proyecto-page .main-header h1 {
    font-size: 2em;
  }
}
.sobre-proyecto-page .main-header .subtitle {
  font-size: 2.3em;
  font-weight: 300;
  color: #0057FF;
  margin-top: 5px;
  letter-spacing: 1.5px;
}
@media (max-width: 768px) {
  .sobre-proyecto-page .main-header .subtitle {
    font-size: 1em;
    text-align: left;
  }
}
.sobre-proyecto-page .content-column {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}
.sobre-proyecto-page .content-column p {
  font-family: "DM Sans", sans-serif;
  font-size: 1.5em;
  line-height: 1.5;
  margin-bottom: 1.3em;
  color: #141413;
  text-align: justify;
}
.sobre-proyecto-page .content-column p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .sobre-proyecto-page .content-column p {
    font-size: 0.8em;
    text-align: justify;
    word-break: normal;
  }
}
.sobre-proyecto-page .content-column .highlight-paragraph {
  font-size: 1.625em;
  line-height: 1.5;
  color: #0057FF;
  font-weight: 400;
  margin-top: 2.5em;
  margin-bottom: 1.3em;
  text-align: justify;
}
.sobre-proyecto-page .content-column .normal-paragraph {
  font-size: 1.5em;
  color: #333;
}
.sobre-proyecto-page .content-column .funding-paragraph {
  font-size: 1.5;
  font-style: italic;
  color: rgb(114.75, 114.75, 114.75);
  margin-top: 1.8em;
  text-align: left;
}
@media (max-width: 768px) {
  .sobre-proyecto-page .content-column p {
    font-size: 1em;
  }
  .sobre-proyecto-page .content-column .normal-paragraph {
    font-size: 1em;
  }
  .sobre-proyecto-page .content-column .highlight-paragraph {
    font-size: 1em;
  }
  .sobre-proyecto-page .content-column .funding-paragraph {
    font-size: 1em;
  }
}
.sobre-proyecto-page .logos-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 0;
  gap: 50px;
}
.sobre-proyecto-page .logos-section .logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sobre-proyecto-page .logos-section .logo-item img {
  display: block;
  width: 150px;
  height: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .sobre-proyecto-page .logos-section {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .sobre-proyecto-page .logos-section .logo-placeholder {
    width: 150px;
  }
}

.artefactos-page .main-header {
  text-align: center;
  margin-bottom: 40px;
  text-align: left;
  margin-bottom: 60px;
}
.artefactos-page .main-header h1 {
  font-size: 7em;
  font-weight: 500;
  color: #141413;
  line-height: 0.8;
  margin: 0;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .artefactos-page .main-header h1 {
    font-size: 3.5em;
    line-height: 1;
    letter-spacing: 1px;
  }
}
@media (max-width: 580px) {
  .artefactos-page .main-header h1 {
    font-size: 2.5em;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 600;
  }
}
@media (max-width: 370px) {
  .artefactos-page .main-header h1 {
    font-size: 2em;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 400;
  }
}
.artefactos-page .main-header .subtitle {
  font-size: 1.2em;
  color: #141413;
  line-height: 1.5;
  max-width: 850px;
  text-align: left;
  margin-top: 30px;
  letter-spacing: normal;
}
@media (max-width: 992px) {
  .artefactos-page .main-header .subtitle {
    font-size: 1.1em;
    max-width: 650px;
  }
}
@media (max-width: 768px) {
  .artefactos-page .main-header .subtitle {
    font-size: 1em;
    margin-top: 20px;
    text-align: left;
  }
}
.artefactos-page .filtros-artefactos {
  text-align: center;
  margin-bottom: 40px;
}
.artefactos-page .filtros-artefactos .filtro-btn {
  background-color: #f0f0f0;
  border: none;
  color: #333;
  padding: 8px 18px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9em;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.artefactos-page .filtros-artefactos .filtro-btn:hover {
  background-color: rgb(214.5, 214.5, 214.5);
}
.artefactos-page .filtros-artefactos .filtro-btn.active {
  background-color: #0057FF;
  color: #FEFEFE;
  border-color: #0057FF;
}
@media (max-width: 580px) {
  .artefactos-page .filtros-artefactos .filtro-btn {
    margin-top: 15px;
    width: 200px;
  }
}
@media (max-width: 370px) {
  .artefactos-page .filtros-artefactos .filtro-btn {
    margin-top: 15px;
    width: 200px;
  }
}
.artefactos-page .artefactos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 20px 20px 20px;
  margin-top: 100px;
  row-gap: 80px;
}
.artefactos-page .artefactos-grid .artefacto-item {
  text-align: left;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.artefactos-page .artefactos-grid .artefacto-item.hide {
  display: none;
}
.artefactos-page .artefactos-grid .artefacto-item img {
  display: block;
  width: auto;
  height: 200px;
  margin-bottom: 5px;
  transition: transform 0.3s ease-in-out;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
.artefactos-page .artefactos-grid .artefacto-item .artefacto-nombre {
  font-size: 1.5em;
  color: #141413;
  margin-top: 20px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.4em;
}
.artefactos-page .artefactos-grid .artefacto-item:hover img {
  transform: scale(1.08);
}
@media (max-width: 1023px) {
  .artefactos-page .artefactos-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
@media (max-width: 768px) {
  .artefactos-page .artefactos-grid {
    grid-template-columns: 1fr;
  }
}
.artefactos-page .main-footer.page-footer {
  padding-top: 60px;
}

.btn-volver {
  position: fixed;
  top: 38px;
  left: 40px;
  z-index: 1001;
  font-family: "DM Sans", sans-serif;
  font-size: 1.3em;
  color: #141413;
  text-decoration: none;
  padding: 8px 12px;
  background-color: transparent;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.btn-volver .arrow-left {
  margin-right: 6px;
  font-weight: bold;
}
.btn-volver:hover {
  color: #0057FF;
}
@media (max-width: 768px) {
  .btn-volver {
    top: 28px;
    left: 20px;
    font-size: 0.9em;
    padding: 6px 10px;
  }
}

.detalle-artefacto-container {
  padding-top: 120px;
  padding-left: 200px;
  padding-right: 200px;
  padding-bottom: 80px;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .detalle-artefacto-container {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 992px) {
  .detalle-artefacto-container {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 100px;
  }
}
@media (max-width: 768px) {
  .detalle-artefacto-container {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 80px;
  }
}

.artefacto-hero-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 70px;
}
.artefacto-hero-section .artefacto-hero__image-wrapper {
  flex: 0 0 45%;
}
.artefacto-hero-section .artefacto-hero__image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.artefacto-hero-section .artefacto-hero__info {
  flex: 1;
}
.artefacto-hero-section .artefacto-hero__info h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 2.8em;
  font-weight: 700;
  color: #141413;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
.artefacto-hero-section .artefacto-hero__info h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 1, 8em;
  font-weight: 600;
  color: #141413;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
.artefacto-hero-section .artefacto-hero__info p {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1em;
  line-height: 1.7;
  color: #141413;
  text-align: justify;
}
@media (max-width: 992px) {
  .artefacto-hero-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .artefacto-hero-section .artefacto-hero__image-wrapper {
    flex-basis: auto;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  .artefacto-hero-section .artefacto-hero__info {
    text-align: left;
  }
}

.artefacto-gallery {
  margin-bottom: 100px;
}
.artefacto-gallery h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.8em;
  font-weight: 600;
  color: #0057FF;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.artefacto-gallery .gallery-scroll-container {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0 0px 0;
  gap: 5px;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
.artefacto-gallery .gallery-scroll-container::-webkit-scrollbar {
  height: 8px;
}
.artefacto-gallery .gallery-scroll-container::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}
.artefacto-gallery .gallery-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0);
  border-radius: 10px;
}
.artefacto-gallery .gallery-scroll-container:hover {
  scrollbar-color: #ccc #f1f1f1;
}
.artefacto-gallery .gallery-scroll-container:hover::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.artefacto-gallery .gallery-scroll-container:hover::-webkit-scrollbar-thumb {
  background: #ccc;
}
.artefacto-gallery .gallery-scroll-container:hover::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
}
.artefacto-gallery .gallery-item {
  flex: 0 0 auto;
  text-align: left;
}
.artefacto-gallery .gallery-item img {
  display: block;
  height: 500px;
  width: auto;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 8px;
}
.artefacto-gallery .gallery-item .gallery-image-caption {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85em;
  color: #333;
  line-height: 1.4;
  max-width: 250px;
}

.artefact-detail-footer {
  padding-left: 200px;
  padding-right: 200px;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .artefact-detail-footer {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 992px) {
  .artefact-detail-footer {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 768px) {
  .artefact-detail-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.equipo-page .page-header {
  text-align: left;
  margin-bottom: 80px;
}
.equipo-page .page-header h1 {
  font-size: 7em;
  font-weight: 500;
  color: #141413;
  line-height: 0.8;
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .equipo-page .page-header h1 {
    font-size: 5em;
  }
}
@media (max-width: 768px) {
  .equipo-page .page-header h1 {
    font-size: 3.5em;
    line-height: 1;
  }
}
.equipo-page .page-header .page-description {
  font-size: 1.2em;
  color: #141413;
  line-height: 1.5;
  max-width: 850px;
  text-align: left;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .equipo-page .page-header .page-description {
    font-size: 1.1em;
    max-width: 650px;
  }
}
@media (max-width: 768px) {
  .equipo-page .page-header .page-description {
    font-size: 1.05em;
    margin-top: 20px;
    text-align: left;
    word-break: normal;
  }
}
.equipo-page .team-grid-container {
  max-width: 1200px;
  margin: 0 0;
  margin-bottom: 80px;
}
.equipo-page .team-grid-container .team-section-title {
  font-size: 2em;
  font-weight: 800;
  color: #0057FF;
  margin-bottom: 60px;
  text-align: left;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .equipo-page .team-grid-container .team-section-title {
    font-size: 1.8em;
  }
}
@media (max-width: 768px) {
  .equipo-page .team-grid-container .team-section-title {
    font-size: 1.5em;
    margin-bottom: 40px;
  }
}
.equipo-page .team-grid-container .team-grid__two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 630px;
  margin: 0 0 60px 0;
}
@media (max-width: 768px) {
  .equipo-page .team-grid-container .team-grid__two-columns {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
.equipo-page .team-grid-container .team-grid__multi-column {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px 30px;
  margin: 0 0 120px 0;
}
@media (max-width: 992px) {
  .equipo-page .team-grid-container .team-grid__multi-column {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .equipo-page .team-grid-container .team-grid__multi-column {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .equipo-page .team-grid-container .team-grid__multi-column {
    grid-template-columns: 1fr;
  }
}
.equipo-page .team-card {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  width: 100%;
}
.equipo-page .team-card__image-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 10px auto 30px auto;
}
@media (max-width: 768px) {
  .equipo-page .team-card__image-wrapper {
    width: 150px;
    height: 150px;
  }
}
.equipo-page .team-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}
.equipo-page .team-card__image--hover {
  opacity: 0;
}
.equipo-page .team-card:hover .team-card__image--hover {
  opacity: 1;
}
.equipo-page .team-card:hover .team-card__image:not(.team-card__image--hover) {
  opacity: 0;
}
.equipo-page .team-card__name {
  font-size: 1.5em;
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
  text-align: center;
}
@media (max-width: 992px) {
  .equipo-page .team-card__name {
    font-size: 1.3em;
  }
}
@media (max-width: 768px) {
  .equipo-page .team-card__name {
    font-size: 1.2em;
  }
}
.equipo-page .team-card__role {
  font-size: 1.2em;
  font-weight: 700;
  color: #0057FF;
  margin: 0;
  text-align: center;
}
@media (max-width: 992px) {
  .equipo-page .team-card__role {
    font-size: 1.1em;
  }
}
@media (max-width: 768px) {
  .equipo-page .team-card__role {
    font-size: 1em;
  }
}
.equipo-page .team-card__detalle {
  font-size: 1em;
  font-weight: 400;
  color: #000000;
  margin: 0;
  text-align: center;
}

.team-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
  pointer-events: none;
}
.team-modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.team-modal__content {
  position: absolute;
  top: 0;
  right: -100%;
  width: 500px;
  max-width: 90vw;
  height: 100%;
  background-color: #121212;
  color: #FEFEFE;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  padding: 40px;
  padding-top: 80px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.team-modal.open {
  pointer-events: auto;
}
.team-modal.open .team-modal__overlay {
  opacity: 1;
}
.team-modal.open .team-modal__content {
  right: 0;
}
.team-modal__close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.team-modal__close-btn img {
  width: 24px;
  height: 24px;
}
.team-modal__bio h3 {
  font-size: 1.8em;
  margin-bottom: 5px;
}
.team-modal__bio h4 {
  font-size: 1.3em;
  color: #ccc;
  margin-bottom: 30px;
}
.team-modal__bio p {
  font-size: 1.1em;
  text-align: justify;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #FEFEFE;
}
.team-modal__bio p.experiencia {
  font-size: 1.1em;
  font-style: italic;
  color: #ffffff;
  font-weight: 500;
  text-align: left;
  margin-bottom: 30px;
}
.team-modal__bio p.email {
  font-size: 1.1em;
  text-decoration: underline;
  color: #99C2FF;
  font-weight: 700;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 30px;
}
.team-modal__bio strong {
  color: #ccc;
}

.main-footer.page-footer {
  margin-top: 0;
  margin-right: 70px;
}

.relations-page-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.view-switch-container {
  position: fixed;
  top: 30px;
  left: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9em;
  font-weight: 800;
}
@media (max-width: 768px) {
  .view-switch-container {
    top: 70px;
    left: 20px;
  }
}
.view-switch-container .view-switch-toggle {
  opacity: 0;
  width: 0;
  height: 0;
}
.view-switch-container .view-switch-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #141413;
}
.view-switch-container .view-switch-label .label-a, .view-switch-container .view-switch-label .label-b {
  padding: 0 10px;
}
.view-switch-container .view-switch-label .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  background-color: #ccc;
  border-radius: 24px;
  transition: background-color 0.2s ease;
}
.view-switch-container .view-switch-label .switch::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.view-switch-container .view-switch-toggle:checked + .view-switch-label .switch {
  background-color: #0057FF;
}
.view-switch-container .view-switch-toggle:checked + .view-switch-label .switch::before {
  transform: translateX(20px);
}

.view-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.view-a-active .view-a,
.view-b-active .view-b {
  display: block;
}

.scroll-content {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  white-space: nowrap;
}

.background-image {
  height: 100vh;
  width: auto;
}

.hotspots-container {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.hotspot {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  transform-origin: center center;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  opacity: 0.8;
  width: 5vh;
  height: 5vh;
  transform: scale(var(--scale, 1));
}
.hotspot img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.hotspot:hover {
  transform: scale(calc(var(--scale, 1) * 1.15));
  opacity: 1;
  z-index: 5;
}

.relations-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;
  background-color: #121212;
  color: #FEFEFE;
  z-index: 1002;
  overflow-y: auto;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.relations-modal.open {
  width: 450px;
  max-width: 90vw;
}
.relations-modal__content {
  padding: 40px;
  padding-top: 80px;
}
.relations-modal__close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.relations-modal__close-btn img {
  width: 24px;
  height: 24px;
}
.relations-modal__body h3 {
  font-size: 1.8em;
  margin-bottom: 25px;
}
.relations-modal__body img, .relations-modal__body video {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.relations-modal__body p {
  font-size: 1em;
  line-height: 1.7;
  color: #FEFEFE;
}/*# sourceMappingURL=main.css.map */