.card-file-modified:before {
    content: "Updated: ";
}
#quarto-content {
    text-align: justify;
}
div.quarto-about-trestles .about-entity .about-image {
  clip-path: circle(40% at 50% 50%);
}

/* Estilos para la Barra de Scroll */
::-webkit-scrollbar {
  width: 14px;
}
::-webkit-scrollbar-track {
  background: repeating-linear-gradient(
    45deg,
    #0b132b,
    #0b132b 6px,
    #1c2541 6px,
    #1c2541 12px
  );
  border-radius: 7px;
}
::-webkit-scrollbar-thumb {
  background   : linear-gradient(180deg, #FF3F81, #FF6C23);
  border       : 2px solid #0B132B;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0077B6, #00D9FF);
}


/* Estilos para los Círculos de Progreso (Skill) */
@import url('https://fonts.googleapis.com/css2?family=Readex+Pro&display=swap');
.circle-container {
    align-items    : center;
    display        : flex;
    flex-wrap      : wrap;
    font-family    : 'Readex Pro', sans-serif;
    gap            : 5px;
    justify-content: center;
    /* max-width      : 1000px; Importante si se desea que no ocupe toda la pantalla sino una porción de ella */
}
/* Circle Styles */
.global {
    background-color: #3C4858;
    border-radius   : 50%;
    box-shadow      : inset 0 0 25px 5px rgba(255, 255, 255, 0.1);
    position        : relative;
}
/* Circle Text/Image Styles */
.global text {
    dominant-baseline: middle;
    fill             : #EAEFF2;
    font-size        : 1rem;
}
.global img {
    bottom    : 15px;
    left      : 0;
    margin    : auto;
    max-height: 50px;
    object-fit: contain;
    position  : absolute;
    right     : 0;
    top       : 0;
}


/* Estilos para el Botón de Descarga Colorido */
.gradient-button {
    background: linear-gradient(#121213, #121213),
                linear-gradient(#121213 50%, rgba(18, 18, 19, 0.6) 80%, rgba(18, 18, 19, 0)),
                linear-gradient(90deg, #FF6D1B, #FFEE55, #5BFF89, #4D8AFF, #6B5FFF, #FF64F9, #FF6565);
    background-origin: border-box;
    background-clip  : padding-box, border-box, border-box;
    background-size  : 200%;
    border           : 0.7rem solid transparent;
    border-radius    : 2em;
    color            : #F3F3F3;
    cursor           : pointer;
    display          : block;
    font-family      : 'Readex Pro', sans-serif;
    font-size        : 1.5em;
    margin           : 0 auto;
    max-width        : 350px;
    text-align       : center;
}
.gradient-button::before {
    background     : linear-gradient(90deg, #FF6D1B, #FFEE55, #5BFF89, #4D8AFF, #6B5FFF, #FF64F9, #FF6565);
    background-size: 200%;
    content        : '';
    display        : block;
    filter         : blur(1.6rem);
    max-width      : 330px;
    height         : 6%;
    position       : absolute;
    width          : 100%;
    z-index        : -5;
}
.gradient-button, .gradient-button::before {
    animation: animate 2s infinite linear;
}
.gradient-button:hover, .gradient-button:hover::before {
    animation-duration: 0.5s;
}
@keyframes animate {
    0% {
        background-position: 0;
    }
    100% {
        background-position: 200%;
    }
}


/* Estilo para la Alerta Personalizada */
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
.custom-alert {
    animation       : fadeIn 1.2s ease;
    background-color: #F9AEAE;
    border          : 5px solid #E53238;
    border-radius   : 30px;
    box-shadow      : 0px 5px 15px rgba(0, 50, 70, 0.6);
    font-family     : 'Russo One', sans-serif;
    left            : 50%;
    padding         : 20px;
    position        : fixed;
    text-align      : center;
    top             : 50%;
    transform       : translate(-50%, -50%);
    z-index         : 1000;
}
.custom-alert-content {
    color    : #21242D;
    font-size: 1.1em;
}
/* Animación para que la alerta aparezca suavemente */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Estilo para el número 404 animado en el HTTP Not Found */
.error-container {
  text-align : center;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 800;
  font-size  : 180px;
}
.error-container > span {
  color   : #FFB485;
  display : inline-block;
  position: relative;
  /* vertical-align: middle; */
  /* line-height: 0.7; */
}
.error-container > span:nth-of-type(1) {
  animation: colordancing 4s infinite;
  color    : #D1F2A5;
}
.error-container > span:nth-of-type(2) {
  border-radius: 50%;
  height       : 120px;
  width        : 120px;
}
.error-container > span:nth-of-type(2)::before,
.error-container > span:nth-of-type(2)::after {
  animation: shadowsdancing 4s infinite;
  border-radius: 50%;
  box-shadow: inset 30px 0 0 rgba(209, 242, 165, 0.4),
              inset 0 30px 0 rgba(239, 250, 180, 0.4),
              inset -30px 0 0 rgba(255, 196, 140, 0.4),
              inset 0 -30px 0 rgba(245, 105, 145, 0.4);
  content : "";
  height  : 100%;
  left    : 0;
  position: absolute;
  top     : 0;
  width   : 100%;
}
.error-container > span:nth-of-type(2)::before {
  transform: rotate(45deg);
}
.error-container > span:nth-of-type(3) {
  animation: colordancing2 4s infinite;
  color    : #F56991;
}
.screen-reader-text {
  left    : -9999em;
  position: absolute;
  top     : -9999em;
}
@keyframes shadowsdancing {
  0%, 100% {
    box-shadow: inset 30px 0 0 rgba(209, 242, 165, 0.4),
                inset 0 30px 0 rgba(239, 250, 180, 0.4),
                inset -30px 0 0 rgba(255, 196, 140, 0.4),
                inset 0 -30px 0 rgba(245, 105, 145, 0.4);
  }
  25% {
    box-shadow: inset 30px 0 0 rgba(245, 105, 145, 0.4),
                inset 0 30px 0 rgba(209, 242, 165, 0.4),
                inset -30px 0 0 rgba(239, 250, 180, 0.4),
                inset 0 -30px 0 rgba(255, 196, 140, 0.4);
  }
  50% {
    box-shadow: inset 30px 0 0 rgba(255, 196, 140, 0.4),
                inset 0 30px 0 rgba(245, 105, 145, 0.4),
                inset -30px 0 0 rgba(209, 242, 165, 0.4),
                inset 0 -30px 0 rgba(239, 250, 180, 0.4);
  }
  75% {
    box-shadow: inset 30px 0 0 rgba(239, 250, 180, 0.4),
                inset 0 30px 0 rgba(255, 196, 140, 0.4),
                inset -30px 0 0 rgba(245, 105, 145, 0.4),
                inset 0 -30px 0 rgba(209, 242, 165, 0.4);
  }
}
@keyframes colordancing {
  0%, 100% { color: #D1F2A5; }
  25% { color: #F56991; }
  50% { color: #FFC48C; }
  75% { color: #EFFAB4; }
}

@keyframes colordancing2 {
  0% { color: #FFC48C; }
  25% { color: #EFFAB4; }
  50% { color: #D1F2A5; }
  75% { color: #F56991; }
  100% { color: #FFC48C; }
}

.gif-container {
  height: 300px;
}
.gif-container .gif {
  animation : move-gif 10s linear infinite;
  height    : 100%;
  object-fit: cover;
  width     : 100%;
}
@keyframes move-gif {
  0% {
    transform: scale(1) translateX(0);
  }
  50% {
    transform: scale(1.1) translateX(-10px);
  }
  100% {
    transform: scale(1) translateX(0);
  }
}