.container-limitado {
  max-width: 900px;
}

.titulo-escalable {
  /*font-size: clamp(2.5rem, 12vw, 6rem);*/
  width: 90%;
  margin: 0 auto;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.logo {
  animation-name: revelar, moverArriba;
  animation-duration: 2s, 1s;
  animation-timing-function: ease-out, linear;
  animation-fill-mode: forwards;
  animation-timeline: auto, scroll();
  animation-range: normal, 0vh 90vh;
  animation-delay: 0.5s;
}

@keyframes revelar {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes desaparecer {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-30px);
  }
}

@keyframes moverArriba {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100px);
  }
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
  border: none;
}

.st0 {
  fill: #adadad;
  stroke: transparent;
  stroke-width: 10px;
  pointer-events: visibleStroke;
  transition: all 0.2s ease;
}

.st1 {
  fill: #adadad;
  stroke: transparent;
  stroke-width: 10px;
  pointer-events: visibleStroke;
  transition: all 0.2s ease;
}

.st0:hover {
  fill: #3a3732;
  r: 4;
}

.highlight {
  fill: #B46A55;
  r: 3;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 2.5;
}

.gallery-img {
  width: 100%;
  height: 100%;
  transition: filter 0.3s ease;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.5s ease;
}

.gallery-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5rem;
  font-weight: 200;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.4s ease;
  z-index: 2;
  pointer-events: none;
  text-align: center;
}

.gallery-item:hover .gallery-img {
  filter: brightness(20%);
  transform: scale(1.08);
}

.gallery-item:hover .gallery-title {
  opacity: 1;
}

body {
  overflow-x: hidden;
}

.nav-link {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.fit-cover {
  object-fit: cover;
}

.titulo-fundamento {
}

.subtitulo-principios {
  border-bottom-style: solid;
  border-width: 1px;
}

.navbar-toggler {
  z-index: 9999;
}

.btn {
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: translateX(5px);
}

.isotipo {
  clip-path: circle(0% at 50% 50%);
  animation: circularReveal 2s linear forwards;
}

@keyframes circularReveal {
  to {
    clip-path: circle(150% at 50% 50%);
  }
}

#offcanvas-menu {
  background-color: #cccccc;
}

p {
  text-align: justify;
}

#texto-columnas {
  columns: 2 300px;
}

