/* Header */

.encabezado {
  width: 100vw;
  max-height: 7%;
  border-bottom: solid 0.1rem var(--terciario);
  padding: 1rem 2rem;
}

.logo-campaña img {
  max-height: 10rem;
  box-shadow: 0.2rem 0.2rem 0.5rem 0 var(--transparencia);
}

/* Contenido */

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 86%;
}

.contenedor {
  width: 60%;
  height: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform: translateY(-70rem);

  animation: logo-aparece 1s 1s ease-in-out forwards;
}

.logo-inicio {
  width: 55rem;
  position: absolute;
  z-index: 2;

  animation: mover-arriba 1s 2.5s ease-in-out forwards;
}

.menu {
  display: flex;
  gap: 2rem;
  flex-direction: row;

  animation: mover-abajo 1s 2.5s ease-in-out forwards;
}

/* Botones */

input {
  width: 20rem;
  height: 3.5rem;
  border: none;
  border-radius: 5rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--secundario);
  color: var(--blanco);
  box-shadow: 0.3rem 0.5rem 0 0 var(--transparencia);
  transition: transform 0.3s ease-in-out;
  transform: scale(1);

  cursor: pointer;
}

input:hover {
  background-color: var(--terciario);
  transform: scale(1.05);
}

/* Instrucciones */
.inst-cont {
  width: 100%;
  height: 100%;

  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 99;

  background-color: var(--transparencia);

  transition: all 0.5s ease-in-out;
  opacity: 0;
}

.inst-box {
  position: relative;

  width: 80rem;
  height: 35rem;

  background-color: var(--secundario);
  border-radius: 1rem;

  transition: all 0.5s ease-in-out;
  transform: scale(0), translateX(0);
}

.arrow {
  width: 5rem;
  height: 5rem;

  position: absolute;

  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primario);
  border-radius: 5rem;
  font-size: 2rem;

  cursor: pointer;

  transition: scale, background-color, color, 0.3s ease-in-out;
  transform: scale(1);
}

.arrow:hover {
  transform: scale(1.1);
  background-color: var(--terciario);
  color: var(--blanco);
}

.arrow:active {
  transform: scale(0.9);
  background-color: var(--secundario);
  color: var(--blanco);
}

.izq {
  bottom: -2.5rem;
  left: 0;
}

.der {
  bottom: -2.5rem;
  right: 0;
}

/* Footer */

.pie-de-pagina {
  width: 100vw;
  height: 7%;
  border-top: solid 0.1rem var(--terciario);
  position: relative;
}

.logo-arl {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24rem;
}

/* Animaciones */

@keyframes logo-aparece {
  0% {
    transform: translateY(-70rem);
  }
  100% {
    transform: translateY(0rem);
  }
}

@keyframes mover-arriba {
  0% {
    transform: translateY(0rem);
  }
  100% {
    transform: translateY(-8rem);
  }
}

@keyframes mover-abajo {
  0% {
    transform: translateY(0rem);
  }
  100% {
    transform: translateY(8rem);
  }
}
