:root {
  --principal: #65b1ef;
  --secundario: #020202;
  --color-texto-principal-dark: #ffffff;
  --color-texto-secundario-dark: #bebebe;
  --color-texto-terciario-dark: #706c6c;
  --color-texto-cuarto-dark: #ffffff;
  --cajas_texto: #a4d0f5;
  --buscador_autocompletado: #67b6be96;
  --background-color: #ffffff;
  --text-color: #333333;
  --border-color: #e0e0e0;
  --modal-background: #ffffff;
  --modal-text: #333333;
  --modal-border: #e0e0e0;
}
.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
body {
  cursor: url("../sources/files/Undead.cur"), auto;
}
/* button {
  cursor: url('../sources/files/UndeadAsk.cur'), pointer; /* Cursor para botones 
 */

/* Cursor al pasar sobre elementos seleccionables */
.selectable {
  cursor: url("../sources/files/Undeadselect.cur"), pointer !important; /* Cursor para elementos seleccionables */
}

/* Cursor al seleccionar texto */
::selection {
  background: #0e879d; /* Color de fondo al seleccionar texto */
  color: black; /* Color del texto al seleccionar */
}

/* Cursor al dibujar */
.drawing {
  cursor: url("../sources/files/UndeadHanddraw.cur"), crosshair; /* Cursor para dibujo */
}

/* Cursor al mover elementos */
.draggable {
  cursor: url("../sources/files/UndeadMove.cur"), move; /* Cursor para mover elementos */
}

/* Cursor al pasar por encima de elementos que no se pueden seleccionar */
.unselectable {
  cursor: url("../sources/files/UndeadNo.cur"), not-allowed; /* Cursor para elementos no seleccionables */
}

/* Cursor al pasar sobre el borde de los elementos */
.border-hover {
  cursor: url("../sources/files/UndeadEdge.cur"), auto; /* Cursor para bordes */
}

body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: var(--secundario);

  border-radius: 8px;
}
body::-webkit-scrollbar-thumb:hover {
  transition-duration: 1s;
  background: linear-gradient(100deg, var(--secundario), var(--principal));
}

body.active_dark {
  background-color: #0e0e0e;
  color: #ffffff;
}
body.active_dark .texto_principal {
  color: var(--color-texto-principal-dark) !important;
}
body.active_dark .texto_secundario {
  color: var(--color-texto-secundario-dark) !important;
}
body.active_dark .tiempo {
  color: var(--color-texto-secundario-dark) !important;
}
body.active_dark .texto_terciario {
  color: var(--color-texto-terciario-dark) !important;
}

body.active_dark .spans_tags {
  background: #313131 !important;
  color: #fffdfd !important;
}

body.active_dark .no-print {
  background: #0e0e0e !important;
  color: #0e879d !important;
}
body.active_dark p {
  /*  
  color: #4ec3ce;
  */
  color: #c4c4c4;
}
body.active_dark .overlay {
  background-color: rgba(94, 94, 94, 0.5);
}
body.active_dark .title {
  color: var(--color-texto-secundario-dark);
}
body.active_dark .form {
  background-color: rgb(11 11 11);
}
/* formularios */
#select_color {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none; /* Ocultar por defecto */
  z-index: 10;
}
#select_theme {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none; /* Ocultar por defecto */
  z-index: 10;
}

.overlay {
  display: none; /* Ocultar por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.form {
  max-width: 405px;
  display: grid;
  align-items: center;
  --input-focus: #2d8cf0;
  --font-color: #323232;
  --font-color-sub: #666;
  --bg-color: #fff;
  --main-color: #323232;
  padding: 20px;
  background: lightgrey;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
}

.title {
  text-align: center;
  color: var(--font-color);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 25px;
}

.title span {
  color: var(--font-color-sub);
  font-weight: 600;
  font-size: 17px;
}

.input {
  width: 35px;
  height: 30px;
  border-radius: 15px;
  border: 2px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  font-size: 15px;
  font-weight: 600;
  color: var(--font-color);
  padding: 5px 10px;
  outline: none;
}

.input_radius {
  display: none;
}
.conten_inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--main-color);
  border-radius: 4px;
  padding: 10px 20px;
  margin-bottom: 10px;
  width: 100%;
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s;
}

.conten_inputs:hover {
  background-color: var(--background-color);
}
.input_radius + label {
  display: inline-block;
  padding: 5px 10px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s;
  margin-bottom: 10px;
}

.input_radius:checked + label {
  border-color: var(--main-color);
  background-color: #103e4e;
}

.input::placeholder {
  color: var(--font-color-sub);
  opacity: 0.8;
}
.input_radius:hover {
  border: 2px solid var(--input-focus);
}
.input:focus {
  border: 2px solid var(--input-focus);
}
.contenedor_botones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; /* Espacio entre los botones */
}

.contenedor_botones button {
  flex: 1 1 45%; /* Permitir que los botones ocupen hasta el 45% del ancho del contenedor */
}

label {
  display: flex;
  align-items: center;
}

label .input {
  margin-left: 10px;
}

.accessibility-title {
  color: #4791cd;
  text-align: center;
  width: 100%;
  font-weight: 900;
  font-size: 20px;
}

.button-confirm {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin: 0px auto 0 auto;
  width: auto;
  height: 40px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  font-size: 17px;
  font-weight: 600;
  color: var(--font-color);
  cursor: pointer;
}

.button-confirm:active {
  box-shadow: 0px 0px var(--main-color);
  transform: translate(3px, 3px);
}
html {
  font-family: Menlo, Monaco, Lucida Console, Courier New, Courier, monospace;
  background: transparent;
  letter-spacing: -0.025rem;
}
body {
  transition: background-color 0.3s ease, color 0.3s ease;
}
body,
figure {
  margin: 0;
  padding: 0;
}
.bos_cas:hover {
  border-radius: 6px;
  background: #eee;
}
a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pro_a {
  align-items: center;
  display: flex;
}
.image-container {
  position: relative;
  overflow: hidden;
  max-width: 325px;
  max-height: 170px;
  height: 170px;
  border-radius: 15px;
  margin-bottom: 5px;
}

.main-image,
.hover-image {
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(1.1);
}

.image-container:hover .main-image {
  opacity: 0;
  transform: scale(0.9);
}

.image-container:hover .hover-image {
  opacity: 1;
  transform: scale(1);
}

.image-container:hover .hover-image:nth-child(2) {
  transition-delay: 1s;
}

.image-container:hover .hover-image:nth-child(3) {
  transition-delay: 2s;
}

@keyframes fade {
  0%,
  33% {
    opacity: 1;
  }
  34%,
  100% {
    opacity: 0;
  }
}
.git_clas {
  min-width: 45px;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.4s;
  cursor: pointer;
  position: relative;
  background-color: rgb(31, 31, 31);
  overflow: hidden;
}

.svgIcon {
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: white;
}

.text {
  position: absolute;
  color: rgb(255, 255, 255);
  width: auto;
  font-weight: 600;
  opacity: 0;
  transition-duration: 0.4s;
}

.git_clas:hover {
  width: 110px;
  transition-duration: 0.4s;
  border-radius: 30px;
}

.git_clas:hover .text {
  opacity: 1;
  transition-duration: 0.4s;
}

.git_clas:hover .svgIcon {
  opacity: 0;
  transition-duration: 0.3s;
}
#project-list {
  margin-bottom: 16px;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.toggle {
  background: transparent;
  border: 1px solid #ddd;
  color: #777;
  border-radius: 6px;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 0 50px 20px rgba(0, 0, 0, 0.1);
  line-height: 1;
}

.icon {
  grid-column: 1 / 1;
  grid-row: 1 / 1;
  transition: transform 500ms;
}

.icon--moon {
  transition-delay: 200ms;
}

.icon--sun {
  transform: scale(0);
}

#switch:checked + .icon--moon {
  transform: rotate(360deg) scale(0);
}

#switch:checked ~ .icon--sun {
  transition-delay: 200ms;
  transform: scale(1) rotate(360deg);
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
}
#scroll-progress {
  border-radius: 2px;
  position: fixed;
  top: 0;
  left: 0;
  height: 3px; /* Grosor de la barra de progreso */
  z-index: 1000; /* Asegura que esté por encima de otros elementos */
  transition: width 0.3s; /* Efecto de transición al llenar la barra */
  background: linear-gradient(
    to right,
    var(--secundario),
    var(--principal)
  ); /* Degradado de colores */
}
p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  text-wrap: pretty;
}

.print {
  display: none !important;
}

@media print {
  .no-print {
    display: none !important;
  }

  .print {
    display: block !important;
  }

  astro-dev-toolbar {
    display: none !important;
  }

  article {
    break-inside: avoid;
  }
}

section[data-astro-cid-sh445jdo] {
  max-width: 700px;
  margin: 0 auto 48px;
}

h2[data-astro-cid-sh445jdo] {
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.5rem;
}

@media (width <= 700px) {
  section[data-astro-cid-sh445jdo] {
    margin-bottom: 38px;
  }
}

ul[data-astro-cid-qtcj2w7e] {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

article[data-astro-cid-qtcj2w7e] h3[data-astro-cid-qtcj2w7e] {
  font-weight: 500;
  color: #111;
}

header[data-astro-cid-qtcj2w7e] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

time[data-astro-cid-qtcj2w7e] {
  color: #555;
  font-size: 0.85rem;
  min-width: 102px;
}

@media (width <= 700px) {
  time[data-astro-cid-qtcj2w7e] {
    text-align: right;
  }
}

ul[data-astro-cid-ghubstuj] {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

article[data-astro-cid-ghubstuj] h3[data-astro-cid-ghubstuj] {
  font-weight: 500;
  color: #111;
}

article[data-astro-cid-ghubstuj] a[data-astro-cid-ghubstuj] {
  color: #111;
}

article[data-astro-cid-ghubstuj] a[data-astro-cid-ghubstuj]:hover {
  text-decoration: underline;
}

article[data-astro-cid-ghubstuj] h4[data-astro-cid-ghubstuj] {
  color: #222;
  font-weight: 400;
}

header[data-astro-cid-ghubstuj] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

time[data-astro-cid-ghubstuj] {
  color: #555;
  font-size: 0.85rem;
  min-width: 102px;
  cursor: default;
}

[data-astro-cid-ghubstuj][data-title]:hover:after {
  opacity: 1;
  transition: all 0.1s ease-in-out 0.5s;
  visibility: visible;
}

[data-astro-cid-ghubstuj][data-title]:after {
  content: attr(data-title);
  background-color: #333;
  color: #fff;
  font-size: 0.75rem;
  font-family: Menlo, Monaco, Lucida Console, Courier New, monospace;
  position: absolute;
  padding: 0.2rem 0.5rem;
  bottom: -1.4rem;
  left: 50%;
  white-space: nowrap;
  box-shadow: 1px 1px 1px #222;
  opacity: 0;
  border: 1px solid #111111;
  z-index: 99999;
  visibility: hidden;
  border-radius: 6px;
}

[data-astro-cid-ghubstuj][data-title] {
  position: relative;
}

@media (width <= 700px) {
  time[data-astro-cid-ghubstuj] {
    text-align: right;
  }
}

.container[data-astro-cid-anhloy43] {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.info[data-astro-cid-anhloy43] {
  width: 440px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-right: 32px;
}

h1[data-astro-cid-anhloy43] {
  font-size: 2rem;
}

h2[data-astro-cid-anhloy43] {
  color: #444;
  font-weight: 500;
  font-size: 1.1rem;
  text-wrap: balance;
}

img[data-astro-cid-anhloy43] {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 240px;
  border-radius: 16px;
}

span[data-astro-cid-anhloy43] {
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  letter-spacing: -0.05rem;
}

footer[data-astro-cid-anhloy43] {
  color: #555;
  font-size: 0.65rem;
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

footer[data-astro-cid-anhloy43] a[data-astro-cid-anhloy43] {
  color: #777;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  padding: 4px;
  height: 32px;
  width: 32px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

footer[data-astro-cid-anhloy43] a[data-astro-cid-anhloy43]:hover {
  background: #eee;
  border: 1px solid #ddd;
}

@media (width <= 700px) {
  .container[data-astro-cid-anhloy43] {
    flex-direction: column-reverse;
  }

  .info[data-astro-cid-anhloy43] {
    width: auto !important;
    justify-content: center;
    align-items: center;
    padding-right: 0;
    text-align: center;
  }

  figure[data-astro-cid-anhloy43] {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  h2[data-astro-cid-anhloy43] {
    text-wrap: balance;
  }

  figure[data-astro-cid-anhloy43] {
    margin: 0 auto;
  }
}

ul[data-astro-cid-44zkpkd5] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-inline: -16px;
}

article[data-astro-cid-44zkpkd5] {
  border-radius: 8px;
  border: 1px solid #d1d1d1;
  gap: 16px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  height: 100%;
}

article[data-astro-cid-44zkpkd5] header[data-astro-cid-44zkpkd5] {
  flex: 1;
}

article[data-astro-cid-44zkpkd5] h3[data-astro-cid-44zkpkd5] {
  margin-bottom: 4px;
}

article[data-astro-cid-44zkpkd5] a[data-astro-cid-44zkpkd5] {
  color: #111;
}

article[data-astro-cid-44zkpkd5] a[data-astro-cid-44zkpkd5]:hover {
  text-decoration: underline;
}

article[data-astro-cid-44zkpkd5] p[data-astro-cid-44zkpkd5] {
  font-size: 0.75rem;
  line-height: 1.2rem;
  margin-bottom: 4px;
}

article[data-astro-cid-44zkpkd5]
  h3[data-astro-cid-44zkpkd5]
  span[data-astro-cid-44zkpkd5] {
  color: #00bc2f;
  animation-name: flicker;
  animation-duration: 3s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}

footer[data-astro-cid-44zkpkd5] {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.6rem;
}

footer[data-astro-cid-44zkpkd5] span[data-astro-cid-44zkpkd5] {
  border-radius: 6px;
  background: #eee;
  color: #444;
  font-size: 0.6rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
}

.github-code-link[data-astro-cid-44zkpkd5] {
  margin-left: 5px;
}

@keyframes flicker {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }

  to {
    opacity: 1;
  }
}

@media (width <= 700px) {
  ul[data-astro-cid-44zkpkd5] {
    margin-inline: 0px;
  }

  article[data-astro-cid-44zkpkd5] {
    border: none;
    box-shadow: 0 1px 1px #f2f2f2;
    padding: 0 0 16px;
  }
}

@media print {
  article[data-astro-cid-44zkpkd5]
    h3[data-astro-cid-44zkpkd5]
    span[data-astro-cid-44zkpkd5] {
    animation-name: none;
  }
}

ul[data-astro-cid-sye7xtqh] {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

li[data-astro-cid-sye7xtqh] {
  align-items: center;
  background: #eee;
  border-radius: 6px;
  color: #000;
  display: flex;
  font-size: 0.8rem;
  font-weight: 500;
  gap: 4px;
  padding: 0.2rem 0.6rem;
}

*:where(
    :not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
  ) {
  all: unset;
  display: revert;
}

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu,
summary {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
  box-sizing: border-box;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

::-webkit-details-marker {
  display: none;
}

#hotkeypad {
  --hotkeypad-bg-kbd: #f9fafb;
  --hotkeypad-bg-backdrop: #fff;
  --hotkeypad-bg-container: #fff;
  --hotkeypad-bg-item-hover: #f3f4f6;
  --hotkeypad-border-container: #d1d5db;
  --hotkeypad-border-container-hover: #9ca3af;
  --hotkeypad-fg-muted: #4b5563;
  --hotkeypad-font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo,
    Courier, monospace;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s, visibility 0.2s;
}

#hotkeypad.dark {
  --hotkeypad-bg-kbd: #1f2937;
  --hotkeypad-bg-backdrop: #000;
  --hotkeypad-bg-container: #1f2937;
  --hotkeypad-bg-item-hover: #161e2e;
  --hotkeypad-border-container: #374151;
  --hotkeypad-border-container-hover: #9ca3af;
  --hotkeypad-fg-muted: #d1d5db;
}

#hotkeypad [data-backdrop] {
  position: fixed;
  inset: 0;
  background-color: var(--hotkeypad-bg-backdrop);
  opacity: 0;
  z-index: 10;
}

#hotkeypad [data-container] {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 640px;
  background: var(--hotkeypad-bg-container);
  border: 1px solid var(--hotkeypad-border-container);
  border-radius: 0.5rem;
  filter: drop-shadow(0 35px 35px rgb(0 0 0 / 0.3));
  z-index: 20;
}

#hotkeypad [data-container] header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
}

#hotkeypad [data-container] header span {
  margin-left: -2px;
  padding-inline: 6px;
  width: fit-content;
  width: -moz-fit-content;
  color: var(--hotkeypad-fg-muted);
  background-color: var(--hotkeypad-bg-item-hover);
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

#hotkeypad [data-container] header input {
  width: 100%;
  color: var(--hotkeypad-fg-muted);
  font-size: 1.25rem;
}

#hotkeypad [data-container] header input::placeholder {
  color: var(--hotkeypad-fg-muted);
  opacity: 0.75;
}

#hotkeypad [data-container] header input:focus {
  outline: none;
}

#hotkeypad [data-sections] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-block: 1px solid var(--hotkeypad-border-container);
}

#hotkeypad [data-section] {
  display: flex;
  flex-direction: column;
}

#hotkeypad [data-section] h4 {
  padding-left: 1.25rem;
  color: var(--hotkeypad-fg-muted);
  font-size: 0.875rem;
  text-transform: capitalize;
}

#hotkeypad [data-hotkey] {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: background-color 0.15s;
}

#hotkeypad [data-hotkey][data-active] {
  background-color: var(--hotkeypad-bg-item-hover);
  outline: none;
}

#hotkeypad [data-hotkey]:before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: transparent;
  transition: background-color 0.15s;
}

#hotkeypad [data-active]:before {
  background-color: var(--hotkeypad-fg-muted);
}

#hotkeypad [data-hotkey] span {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--hotkeypad-fg-muted);
}

#hotkeypad [data-hotkey] span:has(img) img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#hotkeypad [data-hotkey] p {
  flex-grow: 1;
  color: var(--hotkeypad-fg-muted);
  text-transform: capitalize;
}

#hotkeypad [data-hotkey] div {
  display: flex;
  gap: 0.25rem;
}

#hotkeypad [data-hotkey] div span {
  padding-block: 2px;
  padding-inline: 6px;
  width: fit-content;
  width: -moz-fit-content;
  color: var(--hotkeypad-fg-muted);
  background-color: var(--hotkeypad-bg-item-hover);
  border: 1px solid var(--hotkeypad-border-container);
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-family: var(--hotkeypad-font-mono);
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  text-transform: capitalize;
}

#hotkeypad [data-hotkey]:hover div span,
#hotkeypad [data-active] div span {
  background-color: var(--hotkeypad-border-container);
  border-color: var(--hotkeypad-border-container-hover);
}

#hotkeypad [data-container] footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  padding: 0.75rem 1.25rem;
}

#hotkeypad [data-container] footer p {
  display: flex;
  gap: 0.25rem;
  color: var(--hotkeypad-fg-muted);
  font-size: 0.875rem;
}

#hotkeypad [data-container] footer kbd {
  padding-inline: 6px;
  color: var(--hotkeypad-fg-muted);
  background-color: var(--hotkeypad-bg-kbd);
  border: 1px solid var(--hotkeypad-border-container-hover);
  border-radius: 0.25rem;
  font-size: 0.875rem;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

@media screen and (min-width: 648px) {
  #hotkeypad [data-container] footer {
    justify-content: space-between;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body.active_dark {
  --background-color: #1a1a1a;
  --text-color: #ffffff;
  --border-color: #333333;
  --modal-background: #2d2d2d;
  --modal-text: #ffffff;
  --modal-border: #444444;
  --cajas_texto: #3a5998;
}

body.active_dark .texto_principal {
  color: var(--color-texto-principal-dark) !important;
}

body.active_dark .modal-content {
  background-color: var(--modal-background) !important;
  color: var(--modal-text) !important;
  border-color: var(--modal-border) !important;
}

body.active_dark .project-modal {
  background-color: rgba(0, 0, 0, 0.9) !important;
}

body.active_dark .image-modal {
  background-color: rgba(0, 0, 0, 0.95) !important;
}

.project-carousel {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.project-carousel:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

body.active_dark .project-carousel {
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

body.active_dark .project-carousel:hover {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

@media (min-width: 601px) {
  #normal-footer[data-astro-cid-5uazswxx] {
    display: block;
  }

  #footer-button[data-astro-cid-5uazswxx] {
    display: none;
  }
}

@media (max-width: 600px) {
  #normal-footer[data-astro-cid-5uazswxx] {
    display: none;
  }

  #footer-button[data-astro-cid-5uazswxx] {
    background: #fff;
    position: fixed;
    border: 1px solid #eee;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}

footer[data-astro-cid-5uazswxx] {
  background: #fdfdfd;

  position: fixed;
  bottom: 0;
  width: 100%;
  padding-block: 8px;
  text-align: center;
  font-size: 0.85rem;
  view-timeline-name: --revealing;
  view-timeline-axis: block;
  animation: linear 0.3s fadeIn;
  animation-timeline: --revealing;
  animation-range: entry 100% cover 10%;
}

kbd[data-astro-cid-5uazswxx] {
  background: #eee;
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 12px;
}

main[data-astro-cid-j7pv25f6] {
  padding: 4rem;
  margin: auto;
  width: 100%;
}

@media (width <= 700px) {
  main[data-astro-cid-j7pv25f6] {
    padding: 2rem;
  }
}
