/* importación de fuentes utilizadas */

@font-face {
  font-family: 'Gotham Light';
  src: url('Fonts/Gotham-Light.otf') format('opentype');
}

@font-face {
  font-family: 'Gotham Medium';
  src: url('Fonts/Gotham-Medium.otf') format('opentype');
}

@font-face {
  font-family: 'Gotham Ultra';
  src: url('Fonts/Gotham-Ultra.otf') format('opentype');
}

@font-face {
  font-family: 'Gotham Book';
  src: url('Fonts/Gotham-Book.otf') format('opentype');
}

/* 
font-family: "Gotham Light";
font-family: "Gotham Medium";
font-family: "Gotham Ultra";
font-family: 'Gotham Book';
*/

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #666666;
}

/* Estilos de las fuentes */
.section-only-text {
  font-family: 'Gotham Light';
  font-size: 26px;
  line-height: 32px;
  font-weight: bolder;
  margin: 4rem 0rem;
}

.section-only-text p {
  width: 80%;
  justify-self: center;
}

span {
  font-family: 'Gotham Medium';
}

.section-description h1 {
  font-family: 'Gotham Medium';
  font-size: 28px;
  letter-spacing: 0.2px;
  font-weight: bolder;
}

.section-description p {
  font-family: 'Gotham Light';
  font-size: 26px;
  line-height: 32px;
  font-weight: bolder;
}

.characteristic-card h1 {
  font-family: 'Gotham Medium';
  font-size: 24px;
  line-height: 28px;
  margin: 0;
  text-align: center;
  padding-top: 2rem;
}

.characteristic-card p span {
  font-family: 'Gotham Medium';
  font-size: 24px;
  line-height: 28px;
}

.characteristic-card p {
  font-family: 'Gotham Light';
  font-size: 24px;
  line-height: 28px;
  font-weight: bolder;
}

footer p {
  font-family: 'Gotham Book';
  font-size: 17px;
}

/* Sección del top banner y bottom banner */
.section-banner-bottom {
  padding-top: 3rem;
}

.section-banner-top {
  overflow: hidden;
}

.section-banner-bottom img {
  width: 100%;
  height: auto;
  display: block;
}

.section-banner-top img,
.section-banner-bottom img {
  width: 100%;
  height: auto;
  display: block;
}

.section-only-text,
.section-banner-top,
.section-banner-bottom,
.section-description,
.section-characteristic-cards {
  box-sizing: border-box;
}

/* Sección de la descripción del producto */
.section-description {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 3rem;
  gap: 3rem;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.section-description img {
  width: 100%;
  max-width: 100%;
  min-width: 40%;
  height: auto;
}

.text-description {
  width: 100%;
  max-width: 100%;
  min-width: 40%;
  height: auto;
}

/* Sección de las características del producto */
.section-characteristic-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding-top: 4rem;
  gap: 2.5rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.characteristic-card {
  flex-basis: 40%;
  box-sizing: border-box;
}

.characteristic-card p {
  padding: 1.5rem 1rem;
  text-align: center;
  margin: 0;
}

.characteristic-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* Sección del footer */

footer {
  margin: 4rem 0rem;
}

footer p {
  width: 80%;
  justify-self: center;
  text-align: center;
}

/* Tablet media query (1100px) */
@media only screen and (max-width: 1100px) {
  /* Estilos de las fuentes */
  .section-description h1 {
    font-size: 26px;
  }

  .section-description p {
    font-size: 24px;
    line-height: 30px;
  }

  .section-only-text {
    font-size: 24px;
    line-height: 30px;
  }

  .characteristic-card h1 {
    font-size: 26px;
  }

  .characteristic-card p span {
    font-size: 22px;
    line-height: 26px;
  }

  .characteristic-card p {
    font-size: 22px;
    line-height: 26px;
  }
  /* Sección de la descripción del producto */
  .section-description {
    flex-direction: column;
    width: 80%;
    gap: 2rem;
  }
}

/* Phone media query (600px) */
@media only screen and (max-width: 600px) {
  /* Estilos de las fuentes */
  .section-description h1 {
    font-size: 21px;
  }

  .section-description p {
    font-size: 19px;
    line-height: 25px;
  }

  .section-only-text {
    font-size: 19px;
    line-height: 25px;
  }

  .characteristic-card h1 {
    font-size: 21px;
  }

  .characteristic-card p span {
    font-size: 18px;
    line-height: 22px;
  }

  .characteristic-card p {
    font-size: 17px;
    line-height: 22px;
    font-weight: bolder;
  }

  footer p {
    font-size: 9px;
  }

  /* Sección de las características del producto */
  .section-characteristic-cards {
    width: 80%;
  }

  .characteristic-card {
    flex-basis: 100%;
  }
}
