
[x-cloak] { display: none !important; }

@view-transition {
  navigation: auto;
}

/* ::view-transition-group(*) {
  animation-duration: 0.5s;
}

::view-transition-old(root) {
  animation: slide-out-to-left 0.5s forwards;
}

::view-transition-new(root) {
  animation: slide-in-from-right 0.5s forwards;
}
@keyframes slide-out-to-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes slide-in-from-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
} */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

[x-cloak] { display: none !important; }

@font-face {
  font-family: 'Emilea';
  src: url('/static/fonts/Emilea.woff') format('woff'),
    url('/static/fonts/Emilea.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Staatlichess';
  src: url('/static/fonts/Staatliches-Regular.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}


body {
  /* font-family: "Space Grotesk", sans-serif; */
  font-family: "Figtree", sans-serif;
  /* font-family: "Courier Prime", monospace; */
  font-optical-sizing: auto;
  
  font-style: normal;
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-down {
  animation: fadeDown 0.8s ease-out forwards;
}

h2 {
  /* font-family: "Staatliches", sans-serif !important; */
  font-style: normal;
}

.staatliches-regular {
  font-family: "Staatlichess", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h2.title {
  font-family: 'Emilea', sans-serif !important;
  font-size: 20px;
  color: #D2564F;
  text-shadow: 4px 2px 3px rgba(0, 0, 0, 0.3);
}

span.title {
  font-family: 'Emilea', sans-serif;
  font-size: 20px;
  color: #161515;
  text-shadow: 4px 2px 3px rgba(0, 0, 0, 0.3);

}

/* subrayado */

.nav-link:hover {
  color: #4B5563;
}

.nav-link.active {
  color: #1F2937;
}

.watercolor-brush-v5 {
  position: relative;
  padding-bottom: 12px;
}

.watercolor-brush-v5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; /* Cambiado para comenzar desde la izquierda */
  width: 0; /* Comienza con ancho 0 */
  height: 7px;
  background: radial-gradient(ellipse at center,
    rgba(210, 86, 79, 0.9) 0%,
    rgba(210, 86, 79, 0.7) 25%,
    rgba(210, 86, 79, 0.5) 50%,
    rgba(210, 86, 79, 0.3) 75%,
    rgba(210, 86, 79, 0.1) 90%,
    transparent 100%);
  border-radius: 50%;
  filter: blur(0.6px);
  transition: width 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.watercolor-brush-v5.active::after {
  width: 100%; /* Anima el ancho al 100% */
  animation: watercolor-spread 0.8s ease-out;
}

@keyframes watercolor-spread {
  0% {
    width: 0; /* Comienza con ancho 0 */
    filter: blur(0.6px);
    opacity: 0.8;
  }
  30% {
    filter: blur(0.8px);
    opacity: 0.9;
  }
  60% {
    filter: blur(0.4px);
    opacity: 1;
  }
  100% {
    width: 100%; /* Termina con ancho completo */
    filter: blur(0.6px);
    opacity: 1;
  }
}

/* Estilos CKEditor para imágenes */
.image-style-alignLeft {
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
  max-width: 50%;
}

.image-style-alignRight {
  float: right;
  margin-left: 1rem;
  margin-bottom: 1rem;
  max-width: 50%;
}

.image-style-alignCenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  max-width: 100%;
}

.image-style-side {
  float: right;
  margin-left: 1rem;
  margin-bottom: 1rem;
  max-width: 40%;
}

.spy-link {
  position: relative;
  padding-left: 1rem;
  display: block;
}

.spy-link.text-[#D2564F]::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #D2564F;
}

  .swiper-button-next::after,
  .swiper-button-prev::after {
    display: none;
  }

