
.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;

  font-size: 2.5rem;
  color: var(--white);
  line-height: 3.25rem;
  text-align: center;
}

.section__description {
  font-size: .9rem;
  line-height: 1.7rem;
  color: var(--extra-light);
}

.section__description em {
  font-size: .9rem;
  line-height: 1.7rem;
  color: var(--white);
}

.section__description b {
  font-size: .9rem;
  font-weight: 500;
  color: var(--white);
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  white-space: nowrap;
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.btn:hover {
  background-color: var(--secondary-color);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
}

.header__container {
  display: grid;
  gap: 2rem;
}

.header__image img {
  max-width: 600px;
  margin-inline: auto;
}

.header__content h1 {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;

  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #efd0ab33;
}

.section__description__sub {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;

    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 2rem;
}

.header__content .section__description {
  margin-bottom: 2rem;
  font-weight: 300;
}

.header__btn {
  margin-bottom: 2rem;
  text-align: center;
} 

/*bio*/

.service-bio {
  background-image: linear-gradient(40deg, rgb(0 0 0 / 90%), rgba(26, 35, 61, 0.90)), url("../images/fondo-partitura-invert2.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-color: var(--background-color-1);
  overflow: hidden;
}

.service__container {
  display: grid;
  gap: 2rem;
  padding-block: 0;
}

.service__image {
    padding: 5rem 0;
}

.service__image_cd {
  padding: 3rem 0 5rem 0;
}

.service__image img {
  max-width: 400px;
  margin-inline: auto;
  border-radius: 4px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.service__image_cd img {
  max-width: 400px;
  margin-inline: auto;
  border-radius: 4px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.service__content {
  padding-block: 7rem 0;
}

.service__content h4 {
  font-size: 1.2rem;
  color: var(--white);
}

.service__content span {
  color: var(--secondary-color);
}

  /*titulo h2 bio*/
  .service__content .section__header {
    font-weight: 300;
    text-align: left;
    margin-bottom: 2rem;
    margin-top: 2rem;
  }

  .section__header h2{
    line-height: 3.25rem;
  }

.section__description {
  font-weight: 400;
  line-height: 1.3rem;
  text-align: left;
}

.service__list {
  display: grid;
  gap: 1rem;
}

.service__list h3 {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 3rem;
}

.service__list h4 {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
}

.service__list span {
  margin-right: 10px;
  color: var(--secondary-color);
}

/*nuevo footer en styles-solo-footer*/

@media (width > 768px) {

  .header__container {
    padding-block: 0;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .header__image {
    grid-area: 1/2/2/3;
  }

  .header__content {
    padding-block: 5rem;
  }

  .header__content :is(h1, .section__description, .header__btn) {
    text-align: left;
  }

  .header__stats {
    justify-content: flex-start;
  }

  .service__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }

  .service__content {
    padding-block: 5rem;
  }

  /*titulo h2 bio*/
  .service__content .section__header {
    font-weight: 300;
    margin-bottom: 2rem;
    margin-top: .2rem;
  }

  .service__image_cd {
    padding-top: 5rem;
  }

}