.index {
  width: 100%;
  height: 100dvh;
  /* background: var(--color-fondo-index); */
  background-image: url(/images/pasta-fondo.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
/* HEADER */
.index__header {
  width: 100%;
  max-width: 50rem;
  padding-top: 0.5rem;
  display: grid;
  justify-content: end;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  /* Animaciones */
  animation: rotation 2s;
}
.index__header-logo-img {
  width: 100%;
  max-width: 15rem;
}
.index__header-banderas {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0.7rem;
}
.index_header-banderas-flag {
  width: 2.2rem;
  border-radius: 50%;
  box-shadow: var(--sombra1);
  cursor: pointer;
}
/* HERO */
.index__hero {
  width: 100%;
  max-width: 50rem;
  height: 20vh;
  border-radius: var(--border-radius);
  box-shadow: var(--sombra1);
}
.index__hero-img {
  width: 70%;
  height: 100%;
  margin: 0 auto;
  padding: 0.5rem;
  object-fit: contain;
  border-radius: var(--border-radius);
}

/* BOTONES */
.index__buttons {
  width: 100%;
  max-width: 50rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
}
.index__buttons > :nth-child(1) {
  width: 95%;
  padding-left: 1rem;
  /* Animaciones */
  animation: rotation 2s;
}
.index__buttons > :nth-child(2) {
  width: 85%;
  animation: rotation 2s;
}
.index__buttons > :nth-child(3) {
  width: 75%;
  animation: rotation 2s;
}
.index__buttons > :nth-child(4) {
  width: 65%;
  animation: rotation 2s;
}
.index__buttons > :nth-child(5) {
  width: 55%;
  animation: rotation 2s;
}
.index__buttons > :nth-child(6) {
  width: 45%;
  animation: rotation 2s;
}
.index__buttons > :nth-child(7) {
  width: 35%;
  animation: rotation 2s;
}
.index__buttons-btn {
  width: 100%;
  padding: 0.3rem;
  background: var(--color-degradado2);
  border-radius: var(--border-radius);
  box-shadow: var(--sombra1);
  cursor: pointer;
  & i {
    padding: 0.2rem;
  }
}
.index__buttons-texto {
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff,
    1px 1px 0 #ffffff;
}
.easy-index {
  display: flex;
}

/* MODAL ADVERT*/
.modal__index {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100dvw;
  height: 100dvh;
  animation: modal 1.5s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
  background-color: #050505d6;
}
.modal__index-img {
  width: 80vw;
  max-width: 400px;
  border-radius: var(--border-radius);
}
/* Botón cerrar */
.cerrar-modal {
  position: absolute;
  top: 1rem;
  right: 2rem;
  z-index: 4;
  font-size: 2rem;
  cursor: pointer;
  color: var(--blanco);
}
@keyframes modal {
  100% {
    visibility: visible;
    opacity: 1;
  }
}
