*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blackColor: #000;
  --yellowColor: #ffb200;
  --whiteColor: #fff;
  --textColor: #45494e;
  --titleColor: #000;
  --subtitleColor: #000;
}

html {
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding-top: 10rem;
}

@media screen and (min-width: 600px) {
  .container {
    padding-top: 0;
  }
}

/* Estilo que lo hará responsive para pantallas super grandes */
.container {
  max-width: 150rem;
  margin: auto;
  padding: 4rem 2.4rem;
}

@media screen and (min-width: 600px) {
  .container {
    padding: 6rem 3.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    padding: 3.2rem 8rem;
  }
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 2.4rem;
}

h2 {
  font-size: 2.4rem;
  line-height: 1.3;
}

ul {
  list-style: none;
}

p,
li {
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: justify;
}

a {
  text-decoration: none;
}

@media screen and (min-width: 600px) {
  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  p,
  li {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1024px) {
  h1 {
    font-size: 4.4rem;
    margin-bottom: 3.2rem;
  }

  h2 {
    font-size: 3rem;
  }

  p,
  li {
    font-size: 1.6rem;
  }
}

/* Estilos para el header */
.main-header {
  align-items: center;
  background-color: var(--blackColor);
  display: grid;
  grid-template-columns: 12rem 1fr max-content;
  height: 12rem;
  justify-content: space-between;
  justify-items: center;
  padding: 2.4rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

@media screen and (min-width: 600px) {
  .main-header {
    padding: 2.4rem 3.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .main-header {
    padding: 2.4rem 3.2rem;
    column-gap: 1.6rem;
    grid-template-columns: 12rem 1fr max-content;
  }
}

@media screen and (min-width: 1180px) {
  .main-header {
    padding: 2.4rem 8rem;
  }
}

.container-logo {
  width: 12rem;
  height: auto;
}

.container-logo img {
  width: 100%;
  max-width: 100%;
}

/* Contenedor del menú hamburguesa: */
.container-main-hamburguer {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 2rem;
  position: absolute;
  right: 2.4rem;
  width: 2.8rem;
  background: linear-gradient(
    var(--whiteColor) 20%,
    transparent 20%,
    transparent 40%,
    var(--whiteColor) 40%,
    var(--whiteColor) 60%,
    transparent 60%,
    transparent 80%,
    var(--whiteColor) 80%
  );
  transition: all 0.4s;
}

.main-hamburguer--new {
  background-image: url("../../assets/datathon/icons/header/close-icon.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.2);
  transition: all 0.4s;
}

@media screen and (min-width: 1024px) {
  .container-main-hamburguer {
    display: none;
  }
}

.main-header__content {
  position: relative;
  width: 100%;
}

/* Estilos para el menú principal */
.main-nav {
  align-items: center;
  background: linear-gradient(to right, #070707, #2f2c2c);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 2.4rem;
  position: fixed;
  right: -80vw;
  top: 12rem;
  transition: right 0.5s;
  width: 80vw;
}

.main-nav li {
  position: relative;
  text-align: center;
  margin: 1.6rem 0;
}

.main-nav li a {
  font-size: 1.8rem;
}

.main-nav--new {
  right: 0;
}

.main-nav__list {
  height: 70%;
  transition: all 0.4s;
}

@media screen and (min-width: 600px) {
  .main-nav {
    justify-content: space-around;
  }

  .main-nav__list {
    height: auto;
  }
}

@media screen and (min-width: 1024px) {
  .main-nav {
    background: transparent;
    flex-direction: row;
    left: auto;
    position: relative;
    right: 0;
    top: 0;
    width: auto;
    padding: 0;
  }

  .main-nav__list {
    display: flex;
  }

  .main-nav__list:hover .main-nav__items:not(:hover) {
    opacity: 0;
    transition: all 0.4s;
  }

  .main-nav li {
    text-align: center;
    margin: 1.2rem 0;
  }

  .main-nav li a {
    font-size: 1.6rem;
  }
}

/* Enlaces del header */
.main-nav__items a {
  position: relative;
  color: var(--whiteColor);
  display: inline-block;
  font-weight: 400;
  font-size: 1.4rem;
  margin: 0.4rem 1.2rem;
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.4s;
}

@media screen and (min-width: 1024px) {
  .main-nav__items a {
    font-size: 1.6rem;
    margin: 0.4rem 1rem;
  }

  .main-nav__items a::before {
    background-color: var(--yellowColor);
    content: "";
    display: inline-block;
    height: 0.4rem;
    left: -20%;
    overflow: hidden;
    position: absolute;
    top: 2.4rem;
    width: 0;
  }
}

@media screen and (min-width: 1200px) {
  .main-nav__items a {
    margin: 0.4rem 1.2rem;
  }
}

.main-nav__items a:hover {
  color: var(--yellowColor);
  font-weight: bolder;
  opacity: 1;
  transform: scale(1.3);
  transition: all 0.4s;
}

.main-nav__items a:hover::before {
  width: 100%;
  left: 0;
  transition: all 0.4s;
}

/* Estilos para el botón de registro */
.main-button-primary {
  background-color: #f1ad24;
  border-radius: 2rem;
  border: none;
  color: var(--whiteColor);
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1.2rem 2rem;
  position: relative;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.4s;
  overflow: hidden;
}

.main-button-primary:hover {
  background-color: #f5b83d;
  transition: all 0.4s;
  box-shadow: 0 0 0.8rem 0.2rem rgba(0, 0, 0, 0.2);
}

.main-button-primary::before {
  background-color: #fff;
  content: "";
  height: 3.2rem;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateX(-100%) rotate(45deg);
  transition: all 0.7s;
  width: 100%;
}

.main-button-primary:hover::before {
  transform: translateX(100%) rotate(45deg);
  transition: all 0.7s;
}

/* Botón que debe desaparecer al ser responsive */
.main-header__button {
  display: none;
}

@media screen and (min-width: 1024px) {
  .main-header__button {
    display: block;
  }
}

/* Hero o Inicio */
.main-hero {
  align-items: center;
  background: linear-gradient(to right, #070707, #2f2c2c);
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 94%, 0 100%, 0 0);
  display: flex;
  flex-direction: column;
  gap: 4rem;
  justify-content: center;
  padding: 6rem 2.4rem;
  position: relative;
  min-height: 60rem;
  width: 100%;
  z-index: 10;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.main-hero__image {
  max-width: 30rem;
  height: auto;
}

.main-hero__image--ferreyros {
  max-width: 22rem;
  height: auto;
}

.main-hero__description {
  font-size: 1.6rem;
}

@media screen and (min-width: 600px) {
  .main-hero {
    min-height: 60vh;
  }

  .main-hero__image--ferreyros {
    max-width: 24rem;
  }

  .main-hero__image {
    max-width: 45rem;
    height: auto;
  }

  .main-hero__description {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .main-hero {
    min-height: 88vh;
    gap: 5rem;
    padding: 12rem 8rem;
  }

  .main-hero__image--ferreyros {
    max-width: 28rem;
  }

  .main-hero__image {
    max-width: 55rem;
    height: auto;
  }

  .main-hero__description {
    font-size: 2.2rem;
  }
}

.main-hero__description {
  color: var(--whiteColor);
  text-align: center;
}

/* Primera sección: Inscripción */
.main-section-inscription {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4.8rem 2.4rem;
}

.main-section-inscription--different {
  background-color: #eaeaeb;
  clip-path: polygon(50% 10%, 100% 0, 100% 100%, 50% 92%, 0 100%, 0 0);
  padding: 12rem 2.4rem;
}

@media screen and (min-width: 600px) {
  .main-section-inscription {
    padding: 8rem 3.2rem;
  }

  .main-section-inscription--different {
    padding: 10rem 3.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .main-section-inscription {
    padding: 12rem 8rem;
  }

  .main-section-inscription--different {
    padding: 14rem 8rem;
    min-height: 45rem;
  }
}

.subtitle-article {
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .subtitle-article {
    margin-bottom: 2.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .subtitle-article {
    margin-bottom: 3.2rem;
  }
}

.main-section-inscription h3 {
  color: var(--yellowColor);
  font-size: 1.8rem;
  margin-bottom: 2.4rem;
}

@media screen and (min-width: 1024px) {
  .main-section-inscription h2 {
    margin-bottom: 1.6rem;
  }

  .main-section-inscription h3 {
    font-size: 2.2rem;
  }
}

/* Sección de Problemática */
.main-section-problematic {
  align-items: center;
  background-color: #000;
  clip-path: polygon(50% 4%, 100% 0, 100% 100%, 50% 96%, 0 100%, 0 0);
  display: grid;
  min-height: 90rem;
  padding: 10rem 2.4rem;
  row-gap: 1.2rem;
}

.problematic-article h2 {
  color: var(--yellowColor);
  margin-bottom: 2rem;
}

.problematic-article li,
.problematic-article p {
  color: var(--whiteColor);
  margin-bottom: 2.4rem;
  text-align: justify;
}

@media screen and (min-width: 600px) {
  .main-section-problematic {
    clip-path: polygon(52% 6%, 100% 0, 100% 100%, 50% 96%, 0 100%, 0 0);
    min-height: 94rem;
    padding: 10rem 3.2rem;
  }

  .problematic-article p {
    padding: 1.4rem 1.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .main-section-problematic {
    clip-path: polygon(52% 8%, 100% 0, 100% 100%, 50% 94%, 0 100%, 0 0);
    column-gap: 4.8rem;
    grid-template-columns: 1fr 1fr;
    min-height: 70rem;
    padding: 10rem 8rem;
    row-gap: 0;
  }

  .problematic-article p {
    padding: 1rem 0.8rem;
  }
}

.problematica-article-challenge {
  border: 0.4rem dotted var(--yellowColor);
  padding: 1.5rem 2rem;
}

@media screen and (min-width: 600px) {
  .problematica-article-challenge {
    padding: 0;
  }
}

.problematica-article-challenge p {
  margin-bottom: 0;
  font-weight: bolder;
  text-align: start;
}

.container-problematic-image {
  width: 100%;
}

.container-problematic-image img {
  border-radius: 0.8rem;
  display: block;
  max-width: 40rem;
  width: 100%;
  height: auto;
  max-height: 38rem;
}

@media screen and (min-width: 600px) {
  .problematica-article-challenge {
    padding: 0;
  }

  .container-problematic-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .problematica-article-challenge p {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .problematica-article-challenge {
    padding: 1.5rem 0.8rem;
  }

  .container-problematic-image img {
    max-width: 100%;
    max-height: 100%;
  }
}

/* Contenido Principal: Retos, Premios, Habilidades, Participantes */

/* Retos */
.main-content__challenges {
  padding: 6rem 2.4rem;
  margin: 2.4rem 0;
}

.main-content__skills {
  padding: 6rem 2.4rem;
  margin: 2.4rem 0;
}

.main-content__skills p {
  text-align: center;
}

.container-grid-challenges {
  display: grid;
  row-gap: 3.2rem;
  transition: all 0.4s;
}

.main-content__challenges h2 {
  letter-spacing: 0.1rem;
  margin-bottom: 2.4rem;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (min-width: 600px) {
  .main-content__skills {
    padding: 6rem 3.2rem;
    margin: 0;
  }

  .main-content__challenges {
    padding: 6rem 3.2rem;
    margin: 1.2rem 0;
  }

  .container-grid-challenges {
    column-gap: 1.6rem;
    grid-template-columns: repeat(3, minmax(20rem, 1fr));
  }
}

@media screen and (min-width: 1024px) {
  .main-content__challenges {
    padding: 10rem 8rem;
  }

  .main-content__skills {
    padding: 10rem 8rem;
  }

  .main-content__challenges h2 {
    margin-bottom: 3.6rem;
  }

  .container-grid-challenges {
    row-gap: 0;
    grid-template-columns: repeat(3, minmax(22rem, 1fr));
    column-gap: 3rem;
  }
}

.container-image-challenge {
  border-radius: 0.8rem;
  border: 0.8rem solid #eaeaeb;
  display: inline-block;
  margin-bottom: 1rem;
  width: 100%;
  transition: all 0.4s;
}

@media screen and (min-width: 1024px) {
  .container-image-challenge {
    margin-bottom: 2.4rem;
  }
}

.container-grid-challenges img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  filter: blur(0px);
}

.container-grid-challenges p {
  text-align: center;
}

.card-challenge {
  transition: all 0.3s;
}

@media screen and (min-width: 1024px) {
  .card-challenge:hover {
    transform: scale(1.1);
    transition: all 0.3s;
  }

  .container-grid-challenges:hover .card-challenge:not(:hover) {
    filter: blur(0.1rem);
    transition: all 0.3s;
  }
}

/* Premios */

.main-content__awards {
  clip-path: polygon(50% 6%, 100% 0, 100% 100%, 50% 94%, 0 100%, 0 0);
  position: relative;
  background-color: black;
  padding: 6rem 2.4rem;
  z-index: 12;
}

#main-content-awards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.main-content__awards h2 {
  color: var(--yellowColor);
  letter-spacing: 0.1rem;
  margin-bottom: 3.2rem;
  text-align: center;
  text-transform: uppercase;
}

/* Contenedor que tendrá imagen de fondo */
.container-awards-with-bg {
  background-image: url("../../assets/datathon/icons/premios/premios_2.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 96% 100%;
  min-height: 40rem;
  padding: 1.2rem 0;
}

.text-article--awards {
  text-align: start;
}

.subtitle-article--awards {
  margin-bottom: 1.2rem;
}

.container-awards__description {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 600px) {
  .container-awards-with-bg {
    background-size: 90% 110%;
    min-height: 62rem;
  }

  .main-content__awards {
    padding: 10rem 3.2rem;
  }

  .main-content__awards h2 {
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 1024px) {
  .container-awards-with-bg {
    background-size: 72% 70%;
    min-height: 78rem;
  }

  .main-content__awards {
    padding: 12rem 8rem;
  }
}

.subtitle-article--skills {
  text-align: center;
}

.container-grid-skills {
  display: grid;
  row-gap: 1.6rem;
  margin: 2.4rem 0;
}

.container-grid-skills h2 {
  color: var(--yellowColor);
  font-size: 2rem;
  margin: 1.2rem 0;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .container-grid-skills {
    column-gap: 1.6rem;
    grid-template-columns: repeat(2, minmax(20rem, 1fr));
    margin: 3.2rem 0;
  }

  .container-grid-skills h2 {
    font-size: 2.4rem;
    margin: 2rem 0;
  }
}

@media screen and (min-width: 1024px) {
  .container-grid-skills {
    column-gap: 6rem;
    grid-template-columns: repeat(2, minmax(22rem, 1fr));
    margin-bottom: 4.8rem;
    row-gap: 0;
  }

  .container-grid-skills h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
}

.container-grid-skills li {
  position: relative;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.article-information-participant div {
  margin-bottom: 2.4rem;
}

.article-information-participant h2 {
  text-align: center;
}

.container-grid-skills li::before,
.information-participant__list li::before,
.article-information-participant p::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.2rem;
  background-image: url("/assets/datathon/icons/list/icon-for-list.svg");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

@media screen and (min-width: 1024px) {
  .article-information-participant div {
    margin-bottom: 3.2rem;
  }

  .article-information-participant h2 {
    text-align: start;
  }

  .container-grid-skills li {
    margin-bottom: 1.2rem;
  }
}

.skill-paragraph {
  margin-bottom: 2.4rem;
}

/* Primera fila de iconos de skills */
.first-row-skills,
.second-row-skills {
  display: grid;
  row-gap: 2.4rem;
  justify-items: center;
  justify-content: center;
  padding: 2.4rem 0;
  margin: 2rem 0;
}

.first-row-skills {
  padding-bottom: 0;
  margin-bottom: 0;
}

.second-row-skills {
  padding-top: 0;
  margin-top: 0;
}

.first-row-skills div,
.second-row-skills div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.first-row-skills h4,
.second-row-skills h4 {
  color: var(--yellowColor);
  font-size: 1.6rem;
  text-align: center;
  font-weight: 600;
}

.first-row-skills div img,
.second-row-skills div img {
  width: 6rem;
  height: 6rem;
  margin-bottom: 1.6rem;
}

@media screen and (min-width: 600px) {
  .first-row-skills,
  .second-row-skills {
    column-gap: 2.4rem;
    grid-template-columns: repeat(2, minmax(min-content, 22rem));
    margin: 2.4rem 0;
    row-gap: 3.2rem;
    padding: 1.6rem 1.2rem;
  }

  .first-row-skills h4,
  .second-row-skills h4 {
    font-size: 1.8rem;
  }

  .first-row-skills div img,
  .second-row-skills div img {
    width: 7rem;
    height: 7rem;
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .first-row-skills,
  .second-row-skills {
    column-gap: 2.4rem;
    grid-template-columns: repeat(4, minmax(min-content, 20rem));
  }

  .first-row-skills {
    margin-bottom: 1.2rem;
    padding-bottom: 0;
  }

  .second-row-skills {
    grid-template-columns: repeat(3, minmax(min-content, 22rem));
    row-gap: 0;
  }

  .first-row-skills div img,
  .second-row-skills div img {
    width: 8.4rem;
    height: 8.4rem;
    margin-bottom: 1.2rem;
  }
}

/* ¿Quiénes pueden participar? */

.main-content__participants {
  background-color: #eaeaeb;
  clip-path: polygon(50% 2%, 100% 0, 100% 100%, 50% 97%, 0 100%, 0 0);
  padding: 10rem 2.4rem;
}

.main-article-participants {
  display: grid;
  row-gap: 3.2rem;
}

.information-participant__list li {
  margin-bottom: 1.2rem;
}

@media screen and (min-width: 600px) {
  .main-content__participants {
    padding: 6rem 3.2rem;
  }

  .information-participant__list li {
    margin-bottom: 2.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .main-content__participants {
    clip-path: polygon(50% 5%, 100% 0, 100% 100%, 50% 95%, 0 100%, 0 0);
    padding: 16rem 8rem;
  }

  .main-article-participants {
    row-gap: 0;
    grid-template-columns: repeat(2, minmax(22rem, 1fr));
    column-gap: 3.2rem;
  }
}

.main-content__participants h2 {
  margin-bottom: 1.6rem;
}

.container-image-participant img {
  border-radius: 0.8rem;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .main-content__participants h2 {
    margin-bottom: 2.4rem;
  }

  .container-image-participant {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .container-image-participant img {
    max-width: 60rem;
    max-height: 45rem;
  }
}

@media screen and (min-width: 1024px) {
  .participant-question {
    font-size: 1.6rem;
  }
}

/* Agenda del Evento */
.main-content__agenda {
  padding: 6rem 2.4rem;
  margin: 3.2rem 0;
}

.main-article-agenda h2 {
  text-align: center;
}

.container-grid-agenda {
  display: grid;
  justify-content: center;
  justify-items: center;
  padding: 2.4rem 0;
  row-gap: 2.4rem;
}

@media screen and (min-width: 600px) {
  .main-content__agenda {
    padding: 6rem 3.2rem;
  }

  .container-grid-agenda {
    column-gap: 1.6rem;
    grid-template-columns: repeat(3, minmax(min-content, 22rem));
    padding: 3.2rem 0;
  }
}

@media screen and (min-width: 1024px) {
  .main-content__agenda {
    padding: 10rem 8rem;
    padding-bottom: 7rem;
  }
}

.container-grid-agenda div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container-grid-agenda div img {
  display: block;
  width: 6.4rem;
  height: 6.4rem;
  margin-bottom: 0.8rem;
}

.container-grid-agenda h3,
.container-grid-agenda h4 {
  color: var(--yellowColor);
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.4rem;
}

.container-grid-agenda p {
  text-align: center;
}

.container-grid-agenda h4 {
  color: var(--blackColor);
}

.container-buttons {
  align-items: center;
  display: grid;
  justify-content: center;
  row-gap: 2.4rem;
  text-align: center;
  padding: 2.8rem 0;
}

.container-buttons a {
  text-decoration: none;
}

.main-article-agenda p {
  text-align: center;
}

@media screen and (min-width: 600px) {
  .container-grid-agenda div img {
    width: 8rem;
    height: 8rem;
    margin-bottom: 1.2rem;
  }

  .container-buttons {
    column-gap: 3.2rem;
    grid-template-columns: repeat(2, minmax(min-content, 25rem));
    padding: 2.4rem 0;
    row-gap: 0;
  }
}

@media screen and (min-width: 1024px) {
  .container-grid-agenda {
    column-gap: 2.8rem;
  }

  .container-buttons {
    padding: 2.8rem 0;
  }
}

/* Sponsors */

.main-section-sponsors {
  display: grid;
  justify-content: center;
  row-gap: 2.4rem;
  margin: 3.2rem 0;
  padding: 1.2rem 2.4rem;
}

.main-sponsor__fp,
.main-sponsor__sp {
  padding: 1.2rem 0;
}

.main-section-sponsors h2 {
  color: var(--yellowColor);
  text-align: center;
  margin-bottom: 1.2rem;
}

.main-sponsor__fp div,
.main-sponsor__sp div {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-items: center;
}

.main-sponsor__fp img,
.main-sponsor__sp img {
  display: block;
  width: 100%;
  max-width: 30rem;
}

.main-sponsor__sp img {
  max-width: 18rem;
}

@media screen and (min-width: 600px) {
  .main-section-sponsors {
    row-gap: 3rem;
    padding: 3.2rem;
    padding-top: 0;
  }

  .main-section-sponsors h2 {
    margin-bottom: 3.2rem;
  }

  .main-sponsor__sp img {
    display: block;
    width: 16rem;
    height: auto;
  }
}

@media screen and (min-width: 1024px) {
  .main-section-sponsors {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(1, 1fr);
    row-gap: 0;
    column-gap: 3.2rem;
    padding: 4rem 8rem;
    padding-bottom: 6rem;
  }

  .main-section-sponsors h2 {
    margin-bottom: 2.4rem;
  }

  .main-sponsor__fp div,
  .main-sponsor__sp div {
    min-height: 12rem;
  }

  .main-sponsor__fp img {
    padding-bottom: 1.5rem;
  }
}

/* Pie de página */
.main-footer {
  background-color: var(--blackColor);
  width: 100%;
  padding: 4rem;
}

.main-footer p {
  color: var(--whiteColor);
  font-size: 1.8rem;
  font-weight: bolder;
  text-align: center;
}

.main-footer__email {
  color: var(--yellowColor);
}

@media screen and (min-width: 600px) {
  .main-footer {
    padding: 4rem 3.2rem;
  }

  .main-footer p {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .main-footer {
    padding: 4rem 8rem;
  }

  .main-footer p {
    font-size: 2.2rem;
  }
}
