.header-workshop h2,
.header-workshop h3 {
  font-size: 150px;
}
.workshop .header-workshop h2 {
  line-height: 45px;
}
.workshop {
  & .info-workshop {
    display: grid;
    grid-template-areas: "description card";
    grid-template-columns: 40% 60%;
    gap: 2rem;
  }

  & .description-workshop {
    grid-area: description;
  }

  & .card-workshop {
    grid-area: card;
    background-image: url(../image/background-header.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
  }
}
.about {
  background-image: url(../image/about/bg-about.webp);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;

  & .info .card-info:nth-child(1) {
    display: grid;
    grid-template-columns: 55% 35%;
  }

  & .info .card-info:nth-child(2) {
    display: grid;
    grid-template-columns: 35% 50%;
    gap: 20px;
  }
}
.price {
  & .price h2 {
    line-height: 10px;
  }

  & .info-price {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  & .card-price {
    background-color: #141414;
    max-width: 400px;
    width: 360px;
    padding: 50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }

  & .header-card {
    position: absolute;
    top: 0px;
    background-color: var(--bg-btn-main);
    color: #000000;
    width: 400px;
    padding: 8px;
    border-radius: 60px;
  }

  & .body-card .price:nth-of-type(2) span {
    color: #d0d0d0;
  }
  & .body-card .price:nth-of-type(2) span:nth-child(2) {
    text-decoration: line-through;
  }
}
.footer {
  background-color: #eb9009;
  height: 280px;

  & .divisao {
    height: 230px;
    width: 8px;
    background-color: #000000;
  }

  & .item-footer p {
    color: #000000;
  }
  & .img-mob {
    display: none;
  }
}
