.contenedor-info-inicio {
   position: absolute;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 30px;
   width: 100%;
   height: 100%;
   color: #fff;
   z-index: 1;
   background-color: rgba(0, 0, 0, 0.8);
   user-select: none;
}

@keyframes zoomIn {
   0% {
      transform: scale(1);
   }

   50% {
      transform: scale(1.2);
   }

   100% {
      transform: scale(1);
   }
}

.contenedor-info-inicio h6 {
   font-size: clamp(40px, 3vw + 4rem, 150px);
   font-family: "Open Sans", sans-serif;
   text-align: center;
   animation: zoomIn 15s ease-in-out infinite;
}

/* La animación de escribir */
@keyframes typing {
   from {
      width: 0;
   }

   to {
      width: 100%;
   }
}

.contenedor-info-inicio p {
   font-size: 1rem;
   font-family: "Open Sans", sans-serif;
   text-align: center;

   display: inline-block;
   overflow: hidden;
   white-space: nowrap;
   margin: 0 auto;
   letter-spacing: .15em;
   animation: typing 10s steps(600, end);


}

.contenedor-info-inicio a {
   margin-top: 30px;
   background-color: rgba(255, 255, 255, 0.8);
   padding: 10px 30px;
   border-radius: 10px;
   text-decoration: none;
   color: #000;
   font-weight: 700;
   transition: 0.2s;
}

.contenedor-info-inicio a:hover {
   font-size: 1.2rem;
}

.linea-inferior-inicio {
   position: absolute;
   bottom: 0;
   border-top: 1px solid #fff;
   height: 55px;
   width: 100%;
   z-index: 2;
}

/*--------------------INICIO CELULAR--------------------*/
@media only screen and (max-width: 1300px) {}