@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --color-primario: #e6e022;
  --color-secundario: #115d6a;
  --color-terciario: #0b8692;
  --color-cuaternario: #000000;
  --color-asento-1: #ffffff;
  --color-asento-2: #f6f6f6;
  --color-asento-3: #ededed;
  --color-asento-4: #575756;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", system-ui !important;
}

body {
  overflow-x: hidden !important;
}

.container-fluid {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

h1,
.h1 {
  font-size: 45px;
  margin: 10px 0px !important;
}

h2,
.h2 {
  font-size: 42px;
  margin: 10px 0px !important;
}

h3,
.h3 {
  font-size: 26px !important;
  line-height: 1.3;
  margin: 10px 0px !important;
}

h4,
.h4 {
  font-size: 28px !important;
  margin: 10px 0px !important;
  line-height: 1.3;
}

h5,
.h5 {
  font-size: 21px !important;
  line-height: 1.3;
}

h6,
.h6 {
  font-size: 16px !important;
  line-height: 1.3;
}

.font-12 {
  font-size: 12px;
}

.font-14 {
  font-size: 14px;
}

.font-18 {
  font-size: 18px;
}

.font-22 {
  font-size: 22px;
}

.ch-40 {
  width: 40ch;
}
.ch-50 {
  width: 50ch;
}
.ch-60 {
  width: 60ch;
}
.ch-80 {
  width: 80ch;
}
.ch-100 {
  width: 100ch;
}

*/ body {
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
  color: unset !important;
}

b {
  font-family: inherit !important;
  font-size: inherit;
}

sup {
  font-weight: 300;
}

.hr-green {
  background: var(--color-secundario) !important;
  width: 80px !important;
  height: 5px !important;
  opacity: 1 !important;
}
.hr-white {
  background: var(--color-asento-1) !important;
  width: 80px !important;
  height: 5px !important;
  opacity: 1 !important;
}

.uppercase {
  text-transform: uppercase;
}

ul.no-style {
  list-style: none;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

/* Font weight */

.light {
  font-weight: 200 !important;
}

.semilight {
  font-weight: 300 !important;
}

.regular {
  font-weight: 400 !important;
}

.medium {
  font-weight: 500 !important;
}

.semibold {
  font-weight: 600 !important;
}

.bold {
  font-weight: 700 !important;
}

.extrabold {
  font-weight: 800 !important;
}

.d-none {
  display: none;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-no-wrap {
  flex-wrap: nowrap;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.d-flex .align-center {
  display: flex;
  align-items: center;
}

.d-flex .centrado {
  display: flex;
  justify-content: center;
}

.d-flex .align-start {
  display: flex;
  align-items: start;
}

.d-flex .align-end {
  display: flex;
  align-items: end;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.p-20 {
  padding: 0px 20px;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mx-auto {
  margin: auto;
}

.txt-yellow {
  color: var(--color-primario);
}

.bg-yellow {
  background-color: var(--color-primario);
}

.bg-green {
  background-color: var(--color-secundario);
}

.txt-green {
  color: var(--color-secundario);
}

.txt-lightgreen {
  color: var(--color-terciario);
}

.bg-lightgreen {
  background-color: var(--color-secundario);
}

.txt-lightgrey {
  color: var(--color-asento-2);
}

.txt-black {
  color: var(--color-cuaternario);
}

.txt-grey {
  color: var(--color-asento-4) !important;
}

.text-gris {
  color: var(--color-asento-4) !important;
}

.bg-grey {
  background-color: var(--color-asento-3);
}

.bg-darkgrey {
  background-color: var(--color-asento-4);
}

.bg-white {
  color: var(--color-asento-1);
}

a:hover {
  text-decoration: none !important;
}

a:focus {
  text-decoration: none !important;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

@media (max-width: 992px) {
  .w-60 {
    width: 100%;
  }

  .w-70 {
    width: 100%;
  }

  .w-80 {
    width: 100%;
  }
}

/* navbar */

.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navbar img {
  width: 24px;
}

.navbar a {
  text-decoration: none !important;
  color: var(--color-asento-1);
  margin: 0px 10px;
  font-size: 22px;
}

img.menu-icon {
  width: 50px;
  cursor: pointer;
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
}

.banner-home {
  position: relative;
  /* height: 50vh; */
}

.banner-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 59, 63, 0.5);
  z-index: 1;
}

.banner-home * {
  position: relative;
  z-index: 2;
}

.btn-yellow {
  background-color: var(--color-primario);
  width: 100%;
  max-width: 400px !important;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 70px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 2px 4px 3px 0px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-yellow:hover {
  transform: scale(1.05);
  box-shadow: 4px 6px 5px 0px rgba(0, 0, 0, 0.2);
}

.btn-yellow:active {
  transform: scale(0.95);
  box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.border-r-20 {
  border-radius: 20px;
}

.container-test {
  display: flex;
  align-items: center;
  justify-content: center;
}

.short-box {
  background-color: var(--color-terciario);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  margin-left: 20px;
}

.btn-green {
  padding: 28px 80px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 2px 4px 3px 0px rgba(0, 0, 0, 0.2);
}

.box-shadow {
  box-shadow: 2px 4px 3px 0px rgba(0, 0, 0, 0.2);
}

.line-green {
  width: 50px;
  height: 4px;
  background-color: var(--color-secundario);
}

/*---navbar---*/
.nav-producto {
  width: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
}

.nav-producto > .nav-header {
  flex: 0.95;
}

.nav-producto > .nav-header > .nav-title {
  font-size: 22px;
}

.nav-title a {
  font-weight: bold;
  font-size: 24px;
  color: #1b1b1b;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 1rem;
}

.nav-producto > .nav-list {
  display: flex;
  gap: 2rem;
  margin-bottom: 0 !important;
}

.nav-producto > .nav-list > li {
  list-style-type: none;
}

.nav-producto > .nav-list > li a {
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
  color: var(--color-asento-1);
}

.nav-producto > #nav-check {
  display: none;
}

.nav-list a:hover {
  color: var(--color-primario) !important;
}

.nav-item-selected {
  background-color: var(--color-primario);
  border-radius: 32px;
  padding: 5px 12px;
  color: var(--pink) !important;
}

/*mobile*/
@media (max-width: 768px) {

.nav-producto {
  padding: 1rem;
  /* position: fixed; */
  left: 0;
  z-index: 100;
}

.nav-producto img {
  max-width: 120px !important;
}

.nav-producto .nav-btn {
  display: inline-block;
  padding-top: 0.2rem;
  z-index: 99999999;
}

.nav-producto > .nav-btn > label {
  display: flex;
  width: 48px;
  height: 32px;
  padding: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-producto > .nav-btn > label > div {
  display: block;
  width: 25px;
  border-top: 2px solid var(--color-asento-1);
  height: 2px;
  margin-bottom: 6px;
}

.nav-producto > .nav-btn > label > div:last-of-type {
  margin-bottom: 0px;
}
  .nav-producto > .nav-list {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0rem;
    height: 100%;
    width: 0;
    max-width: 250px;
    height: fit-content;
    transition: all 0.5s ease-in-out;
    top: 100px;
    right: 70px;
    overflow: hidden;
    opacity: 0;
  }

  .nav-producto > .nav-list > li {
    width: 100%;
    margin-top: 1.5rem;
  }

  .nav-producto > #nav-check:checked ~ .nav-list {
    opacity: 1;
    width: 100%;
    padding-bottom: 12px;
    border-radius: 20px 0px 0px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .nav-item-selected,
  .nav-list .text-amarillo {
    position: relative;
    left: -12px;
  }
  .nav-producto > .nav-list {
    top: 100px;
    right: 24px !important;
  }
  .nav-list {
    right: 0;
  }
  .nav-producto {
    position: relative;
  }
}
/*Fin Navbar*/

/* Estilos Home */
#banner-test-riesgo {
  background-image: url("../images/bg-pulmones-new.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#header-epoc {
  background-image: url("../images/bg-pulmones-new.jpg");
  opacity: 0.9;
  background-position: center -60px;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 65dvh;
}
img.img-trama {
  width: 100%;
  max-width: 600px;
}
.test-epoc {
  background-color: var(--color-asento-2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.test-epoc button#comenzar-test {
  border: none;
  background-color: var(--color-secundario);
  color: var(--color-asento-1);
  padding: 24px 32px;
  border-radius: 16px;
  width: 100%;
  max-width: 350px;
  margin: auto;
}
.container-img-puntos {
  padding-right: 0px !important;
  margin-right: -50px !important;
}
img.imagen-puntos {
  object-fit: cover;
  height: 360px;
  margin-top: 10px;
}
.que-es-epoc {
  position: relative;
}
.que-es-epoc img.img-bg-mujer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  max-height: 900px;
}
.exacerbaciones {
  background-image: url("../images/bg-green-epoc-pulmones.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 450px;
}
img.img-causa {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
}
img.img-mujer-diagnostico {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
}
.text-mobile {
  border-left: 1px solid white;
  padding-left: 25px;
}
@media (max-width: 768px) {
  #header-epoc {
    background-image: url("../images/bg-pulmones-new.jpg");
    opacity: 0.9;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 55dvh;
  }
  .text-mobile {
    display: none;
  }
}

/* Estilos Acordeons */

#acordeon-1 > div:first-of-type {
  background-color: var(--color-terciario);
  cursor: pointer;
}

#acordeon-2 > div:first-of-type {
  background-color: var(--color-secundario);
  cursor: pointer;
}

#acordeon-3 > div:first-of-type {
  background-color: #0f5756;
  cursor: pointer;
}

#acordeon-2 .acordeon-interno {
  background-color: #e9f4f4;
}

.acordeon .acordeon-interno {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
}

.acordeon > .container-fluid .img-fluid {
  max-height: 100px;
}

.flecha-accordion {
  transition: 0.3s ease-in-out;
}

.acordeon.abierto .flecha-accordion {
  transform: rotate(90deg);
}

.acordeon h2 {
  width: 80%;
  font-size: 2.3rem;
}

.acordeon h2::before {
  display: none;
}
.acordeon li::marker {
  color: var(--color-terciario);
}
.acordeon li {
  color: var(--color-asento-4);
}

.articulos {
  margin: 3rem auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 40px;
}

.articulos .card {
  min-height: 510px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.card {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  margin: 20px;
  overflow: hidden;
  vertical-align: top;
  text-align: left;
  background: #fff;
}

.card-image {
  text-align: center;
  padding: 20px;
}

.card-image img {
  max-width: 200px;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  color: #008073;
  font-size: 18px;
  margin-bottom: 10px;
}

.card-content p {
  color: #5f5f5f;
  font-size: 16px;
}

.card-footer {
  border-top: 1px solid #e0e0e0;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-footer a {
  color: #008073;
  font-weight: bold;
  text-decoration: none;
}

.card-footer .card-icon {
  font-size: 18px;
  color: #008073;
  font-weight: bold;
}
/* Fin Estilos Acordeons */
#referencias {
  background-color: #dadada;
}
#footer {
  background-color: #003e44;
}
#footer .links {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
#footer .links a {
  width: fit-content;
  text-decoration: none;
}
#footer #bottom-bar {
  background-color: #001528;
  padding-top: 2rem;
}
#bottom-bar .links {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-direction: row;
  width: 100%;
}
#bottom-bar .links p {
  width: fit-content;
}

/*Estilos Nota El Sueno y la EPOC*/
.card-sueno {
  border-radius: 20px;
  width: 100% !important;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-gradient {
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(235, 235, 235, 1) 59%);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.card-sueno img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 20px;
}
.row-cards-sueno {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
}
/*Estilos Nota Rehabilitacion Pulmonar*/
.row-card-rehab .card-sueno {
  min-height: 220px !important;
  height: 100% !important;
}
img.img-bg-rehab {
  position: absolute;
  right: -120px;
  top: 20dvh;
  width: 60vw;
  z-index: -1;
}

/* Estilos test de riesgo */
/* Print */
.icon-pregunta-print {
  width: 100%;
  max-width: 120px;
}
#imprimir .h5 {
  font-size: 18px !important;
}
/* Fin Print  */
#prueba {
  border: 1px solid #cdcccc;
  border-radius: 20px;
  background-color: #ededed;
  padding: 1.2rem;
  overflow: hidden;
}

#prueba h2::before {
  display: none !important;
}

.slider-container > div {
  margin: 2rem auto;
  position: absolute;
  top: 0;
  transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
}

.slider-container .center {
  left: 0;
  right: 0;
  margin: auto;
}

#volver {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

#volver span {
  font-size: 1.25rem;
  background-color: #e2e2e2;
  padding: 6px 24px;
  border-radius: 50px;
}

.respuestas {
  margin: 5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.respuestas > div {
  cursor: pointer;
}

.check {
  max-width: 50px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

input[type="radio"] {
  width: 1px;
  height: 1px;
  position: absolute;
  top: -20px;
}

#modal-imprimir {
  width: 80vw;
  max-width: 100%;
  height: 90vh;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
}

#close {
  background-color: transparent;
  border: none;
  position: absolute;
  top: 20px;
  right: 20px;
}

figure img.img-fluid {
  max-width: 260px;
  width: 100%;
}

#barra-progreso {
  max-width: 700px;
  margin: auto;
  width: 100%;
  height: 15px;
  background-color: var(--color-asento-2);
  border-radius: 20px;
}

.progres-bar {
  height: 100%;
  background-color: var(--color-secundario);
  border-radius: 20px;
  width: 0;
  transition: width 0.3s ease-in-out;
}

.respuestas {
  margin: 5rem auto;
}

.check {
  max-width: 50px !important;
  width: 100%;
}

.slide-question {
  color: #fff;
  background-color: var(--color-secundario);
  padding: 0.4rem 1.25rem;
  border-radius: 0.3rem;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -120px;
  right: 180px;
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .slide-question {
    color: #fff;
    background-color: var(--color-secundario);
    padding: 0.4rem 1.25rem;
    border-radius: 0.3rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -120px;
    right: 120px;
  }
}

.row-card-resultado {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.card-resultado {
  background-color: var(--color-secundario);
  border: 2px solid #ededed;
  border-radius: 16px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-resultado button {
  background-color: transparent !important;
  color: #fff;
  border: none !important;
}

#terminos-condiciones .modal-content {
  background-color: #ededed !important;
}
#aceptar-btn {
  background-color: var(--color-secundario);
}
#comenzar-test-epoc {
  background-color: var(--color-secundario);
  padding: 12px 36px;
  color: #fff;
  border: none;
  border-radius: 0.6rem;
  font-size: 1.5rem;
  font-weight: bold;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 911px) {
  .slider-container {
    min-height: 360px;
    margin-top: 3rem;
  }
  .slider-container > div {
    max-width: 80%;
  }
  .slider-container .left {
    left: -120vw;
  }
  .slider-container .right {
    right: -120vw;
  }
  .altura-310 {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .slider-container {
    min-height: 360px;
    margin-top: 3rem;
  }
  .slider-container > div {
    max-width: 96%;
  }
  .slider-container .left {
    left: -120vw;
  }
  .slider-container .right {
    right: -120vw;
  }
  .altura-310 {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .text-referencia-riesgo {
    display: none !important;
  }
  .check {
    max-width: 38px !important;
  }
  .respuestas label {
    font-size: 16px !important;
  }
  .respuestas {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .row-card-resultado {
    display: flex;
    flex-direction: column;
  }
  .card-resultado {
    min-height: 100px;
    padding: 12px;
  }
  .card-result .font-18 {
    font-size: 14px !important;
  }
  #modal-imprimir {
    height: auto;
    z-index: 9 9999999999999;
  }
  #container-preguntas {
    min-height: 800px !important;
  }
}

@media (max-width: 1024px) {
  .img-bg-mujer {
    display: none;
  }
  .container-img-puntos {
    margin-right: 0 !important;
  }
  .title-sintomas {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .img-causa {
    display: none;
  }
  .img-mujer-diagnostico {
    display: none;
  }
  .card-sueno {
    min-height: 260px;
  }
  .card-img {
    display: none;
  }
  .img-abuelo-sueno {
    display: none;
  }
  img.img-bg-rehab {
    display: none;
  }
  .row-cards-sueno {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
  .respuestas {
    flex-wrap: wrap;
  }
  .exacerbaciones .row {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .causas .row {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

@media (max-width: 768px) {
  .container-img-puntos {
    display: none;
  }
  .row-exacerbaciones div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 1rem !important;
  }
  .acordeon h2 {
    width: 80%;
    font-size: 1.75rem;
  }
  .acordeon img {
    width: 80px;
  }
  .acordeon img.flecha-accordion {
    width: 25px;
  }
  .acordeon img.infografia {
    width: 100%;
  }
  img.icon-item-causas {
    width: 200px;
  }
  .ch-40,
  .ch-60,
  .ch-50,
  .ch-80,
  .ch-100 {
    width: 100%;
  }
  #referencias {
    overflow-x: hidden;
  }
  #footer img.logo-az {
    width: 200px;
  }
  .row-cards-sueno {
    padding-left: 12px;
    padding-right: 12px;
  }
  .img-abuela-pulmonar {
    display: none;
  }
  .row-cards-sueno {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .icon-cards {
    width: 150px !important;
  }
  .slide-question {
    display: none;
  }
  #prueba {
    position: relative;
    max-height: 800px;
  }
  #volver {
    position: absolute;
    bottom: 20px;
  }
  .font-18 {
    font-size: 18px !important;
  }
  .font-14 {
    font-size: 12px;
  }
  .row-exacerbaciones img {
    width: 60% !important;
  }
}
/*--animaciones aparecer

  .aparecer-anim {
    view-timeline-name: --image;
    view-timeline-axis: block;
    animation-timeline: --image;
    animation-name: show;
    animation-range: entry 25% cover 30%;
    animation-fill-mode: both;
  }

  .aparecer-slide-left {
    view-timeline-name: --image;
    view-timeline-axis: block;
    animation-timeline: --image;
    animation-name: appear-slide-left;
    animation-range: entry 25% cover 30%;
    animation-fill-mode: both;
  }

  .aparecer-slide-right {
    view-timeline-name: --image;
    view-timeline-axis: block;
    animation-timeline: --image;
    animation-name: appear-slide-right;
    animation-range: entry 25% cover 30%;
    animation-fill-mode: both;
  }

  @keyframes show {
    from {
      opacity: 0;
      scale: 25%;
    }

    to {
      opacity: 1;
      scale: 100%;
    }
  }

  @keyframes appear-slide-left {
    from {
      opacity: 0;
      transform: translateX(-100%);
    }

    to {
      opacity: 1;
      transform: translateX(0%);
    }
  }

  @keyframes appear-slide-right {
    from {
      opacity: 0;
      transform: translateX(100%);
    }

    to {
      opacity: 1;
      transform: translateX(0%);
    }
  }

/*--fin animaciones aparecer--*/
