
header ul li:nth-of-type(5) {
	text-decoration: overline;
}

.contenedor-scroll {
    width: 35%;
    margin-left: 30%;
    overflow: hidden;     /* Oculta el contenido que no cabe */
    white-space: nowrap;  /* Evita que el texto se corte en líneas nuevas */
    box-sizing: border-box;
}

.contenedor-scroll p {
  display: inline-block;        /* Permite que el texto se mueva como un solo bloque */
  padding-left: 100%;           /* Empieza oculto fuera de la pantalla */
  animation: scroll-left 10s linear infinite; /* Anima el texto */
  color: blue;
  font-size: 48px;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }          /* Inicio */
  100% { transform: translateX(-200%); }    /* Fin del movimiento */
}

.Justificado {
    text-align: center;
    text-align: justify;
    font-size: 24px;
    margin: auto;
    width: 75%;
    margin-bottom: 2%;
}

.Seleccion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    justify-content: center;
    gap: 5px;
    width: 100%;
    margin: auto;
    margin-bottom: 1.5%;
    width: calc(70% - 1em);
}

.Seleccion figure {
    margin: auto;
    width: 70%;
    text-align: center;
}

.Seleccion figcaption {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.Seleccion p, .Seleccion1 p {
    margin: auto;
    width: 100%;
    text-align: justify;
    font-size: 24px;
}

.Seleccion1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    justify-content: center;
    gap: 5px;
    width: 100%;
    margin: auto;
    margin-top: .5%;
    width: calc(80% - 1em);
}

.Seleccion1 figure {
    margin: auto;
    width: 100%;
    text-align: center;
}

.Seleccion1 figcaption {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.Seleccion1, .Seleccion:last-of-type {
padding-top: 2%;
}

#Copa{
    width: 650px;
}

#Seleccion{
    width: 600px;
    height: 500px;
}

#Michael {
    width: 550px;
    height: 550px;
    object-fit: cover;
    object-position: top;
}

/* --- MEDIA QUERIES --- */

/* Para tables */
@media (max-width: 768px) {
  .contenedor-scroll {
    width: 80%;
    margin-left: 10%;
  }

  .contenedor-scroll p {
    font-size: 32px;
    animation: scroll-left 12s linear infinite;
  }

  /* Párrafos generales */
  main p, .Justificado {
    font-size: 20px;
    width: 90%;
  }

  /* Sección Selección */
  .Seleccion, .Seleccion1 {
    grid-template-columns: 1fr; /* Una sola columna */
    width: 90%;
  }

  .Seleccion figure, .Seleccion1 figure {
    width: 90%;
  }

  .Seleccion figcaption,
  .Seleccion1 figcaption {
    font-size: 20px;
  }

  /* Imágenes */
  #Copa {
    width: 100%;
    max-width: 500px;
  }

  #Seleccion {
    width: 100%;
    max-width: 480px;
    height: auto;
  }

  #Michael {
    width: 100%;
    max-width: 450px;
    height: auto;
  }
}

/* Para móviles */
@media (max-width: 480px) {
  .contenedor-scroll {
    width: 95%;
    margin-left: 2.5%;
  }

  .contenedor-scroll p {
    font-size: 20px;
    animation: scroll-left 15s linear infinite;
  }

  /* Texto general */
  main p, .Justificado {
    font-size: 18px;
    width: 95%;
    text-align: justify;
  }

  .Justificado1 {
    width: 95%;
    font-size: 14px;
    text-align: justify;
  }

  /* Sección Selección */
  .Seleccion, .Seleccion1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    margin-top: 7%;
  }

  .Seleccion figure, .Seleccion1 figure {
    width: 100%;
  }

  .Seleccion figcaption,
  .Seleccion1 figcaption {
    font-size: 18px;
  }

  /* Imágenes */
  #Copa,
  #Seleccion,
  #Michael {
    width: 100%;
    height: auto;
  }

  .Seleccion p, .Seleccion1 p {
    font-size: 18px;
  }
}
