.plantoContent .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #FAFAF9;
  opacity: 0.1;
  z-index: 1;
}

.plantoContent video {
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  z-index: 0;
}

.plantoContent .planto {
  position: absolute;
  display: flex;
  z-index: 2;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  align-items: center;
}

.planto .citaContent {
  background: rgba(196, 196, 196, 0.8);
  padding: 2rem;
  position: absolute;
  right: 10rem;
  margin: 0;
  z-index: 3;
  animation: fade_in_show 0.5s
}

.planto .citas {
  margin: 1rem 0;
}

.planto .fakeButton {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  cursor: pointer;
}

.botonInfoContent {
  position: absolute;
  top: 4rem;
  right: 30rem;
  display: block;
  animation: fade_in_show 0.5s;
  z-index: 6;
}

.infoModal .modal-dialog {
  width: 40vw;
  max-width: 100%;
}

.infoModal .modal-content {
  background: rgba(196, 196, 196, 0.8);
  padding: 5rem 3rem 2rem;
}

.infoModal .closeModal {
  position: absolute;
  z-index: 10;
  right: 1rem;
  top: 1rem;
}

.textoAleatorioContent {
  position: absolute;
  padding: 1rem 1.5rem;
  margin: 1rem;
  background: rgba(196, 196, 196, 0);
  z-index: 3;
}

.textoAleatorioContent p {
  /* margin-bottom: .5rem; */
  margin-bottom: 0;
  line-height: normal;
  font-weight: 600;
  filter: drop-shadow(4px 4px 5px rgba(255, 255, 255, 0.75));
}

.textoAleatorioContent p.textoMiniTab {
  margin-left: 1rem;
}

.textoAleatorioContent p.textoTab,
.textoAleatorioContent span.textoTab {
  margin-left: 2rem;
}

.texto1 {
  width: 40vw;
}

.texto1 p {
  text-align: center;
}

.texto2 {
  width: 40vw;
  text-align: center;
}

span.texto2 {
  margin-left: 3rem;
}

.texto11 {
  width: 40vw;
  display: flex;
  justify-items: center;
  align-items: center;
}

.texto12 {
  width: 25vw;
  display: flex;
  justify-items: center;
  align-items: center;
  display: grid;
}

.texto15 {
  width: 25vw;
  display: flex;
  justify-items: center;
  align-items: center;
  display: grid;
}

.texto16 {
  width: 40vw;
  display: flex;
  align-items: center;
  justify-items: center;
  display: grid;
}

.texto17 {
  width: 40vw;
  display: flex;
  align-items: center;
  justify-items: center;
  display: grid;
}

.textoFinalContent {
  height: 60vh;
  overflow-x: auto;
  background: rgba(196, 196, 196, 0.0);
  display: flex;
  padding: 5rem;
  margin: 10rem 5rem 0 5rem;
  align-items: baseline;
  flex-direction: column;
}

.textoFinal div {
  display: block;
  float: right;
  width: 100%
}

.textoFinal h1 {
  font-family: "Rotis Semi Sans Std", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5rem;
  letter-spacing: -0.02em;
  color: #000000;
  float: right;
  text-align: justify;
  width: 47%;
}

.textoFinal h2 {
  /* font-family: "Bell MT", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
  font-family: "Rotis Semi Sans Std", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: italic;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5rem;
  text-align: right;
  letter-spacing: -0.02em;
  color: #000000;
}

.textoFinal p {
  font-family: "Rotis Semi Sans Std", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5rem;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 0.5rem;
}

.botonPDF {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hidden {
  visibility: hidden;
  opacity: 0;
  transition: display 0s, opacity 0.3s linear;
}

/* animaciones */
@keyframes fade_in_show {
  0% {
    opacity: 0;
    transform: scale(0)
  }

  100% {
    opacity: 1;
    transform: scale(1)
  }
}

@media(max-width:767px) {
  .planto .citaContent {
    padding: 1rem;
    right: 1rem;
    top: 15rem;
  }

  .botonInfoContent {
    top: 10rem;
    left: 1rem;
    right: auto;
  }

  .infoModal .modal-dialog {
    width: auto;
  }

  .infoModal .modal-content {
    padding: 0;
  }

  .infoModal .modal-body {
    padding: 7.5rem 1rem 2rem;
  }

  .textoTitulo {
    font-style: normal;
    font-size: 1.25rem;
    line-height: 1.5rem;
  }

  .textoFinalContent {
    height: 80vh;
    padding: 1rem;
    margin: 10rem 1rem 1rem;
  }

  .textoFinalContent p {
    font-size: .9rem;
    line-height: 1.15rem;
  }

  .textoFinalContent h2 {
    font-size: .9rem;
    line-height: 1.15rem;
  }
}

@media(min-width:1600px) {
  .botonInfoContent {
    top: 12.5rem;
  }
}
