.mobile-only {
  display: none;
}
@media (max-width: 1200px) {
  .mobile-only {
    display: block;
  }
}

@media (max-width: 1200px) {
  .desktop-only {
    display: none;
  }
}

.publicacoes .titlePubli {
  font-size: 80px;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: var(--blue);
  height: 200px;
  margin-top: 100px;
  margin-bottom: 60px;
  position: relative;
}
@media (max-width: 1200px) {
  .publicacoes .titlePubli {
    font-size: 30px;
    height: 106px;
    gap: 25px;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 20px;
  }
}
.publicacoes .titlePubli:before {
  content: "";
  display: block;
  background-color: #ECECEC;
  width: 5000px;
  height: 100%;
  right: calc(100% - 55px);
  position: absolute;
  z-index: -1;
}
@media (max-width: 1200px) {
  .publicacoes .titlePubli:before {
    right: calc(100% - 40px);
  }
}
.publicacoes .titlePubli svg {
  margin-right: 50px;
}
@media (max-width: 1200px) {
  .publicacoes .titlePubli svg {
    width: 40px;
    margin: 0;
  }
}
.publicacoes .book {
  margin-bottom: 80px;
}
.publicacoes .book .bookTitle {
  font-size: 40px;
  line-height: 50px;
  font-weight: 800;
  font-family: var(--font-1);
  color: var(--blue);
  margin-bottom: 50px;
  width: 800px;
  position: relative;
}
@media (max-width: 1200px) {
  .publicacoes .book .bookTitle {
    font-size: 20px;
    line-height: 25px;
    width: unset;
  }
}
.publicacoes .book .bookTitle span {
  color: var(--black);
  font-weight: 400;
}
@media (max-width: 1200px) {
  .publicacoes .book .bookTitle span {
    font-size: 20px;
  }
}
.publicacoes .book .bookTitle:before {
  content: "";
  width: 5000px;
  height: 2px;
  background-color: var(--blue);
  display: block;
  position: absolute;
  right: calc(100% + 30px);
  top: 22px;
}
@media (max-width: 1200px) {
  .publicacoes .book .bookTitle:before {
    right: calc(100% + 14px);
    top: 12px;
  }
}
.publicacoes .book .bookContent {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}
@media (max-width: 1200px) {
  .publicacoes .book .bookContent {
    display: block;
  }
}
.publicacoes .book .bookContent img.mobile-only {
  float: right;
  height: 250px;
  padding: 0px 0px 10px 10px;
}
.publicacoes .book .bookContent .bookAbout {
  font-size: 20px;
  line-height: 35px;
  color: var(--black);
}
@media (max-width: 1200px) {
  .publicacoes .book .bookContent .bookAbout {
    font-size: 12px;
    line-height: 30px;
  }
}
@media (max-width: 1200px) {
  .publicacoes .book .buyButton {
    margin-top: 30px;
  }
}
.publicacoes .book .buyButton a {
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  position: relative;
  z-index: 1;
  padding: 0 30px;
  transition: all 0.2s ease;
}
@media (max-width: 1200px) {
  .publicacoes .book .buyButton a {
    color: white;
    padding: 10px 43px;
    background: #5595dc;
    font-size: 15px;
    height: 100%;
    position: static;
  }
}
.publicacoes .book .buyButton a:before {
  content: "";
  height: 40px;
  width: 60px;
  display: block;
  background-color: var(--ligthblue);
  position: absolute;
  left: 0;
  top: -6px;
  z-index: -1;
  transition: all 0.2s ease;
}
@media (max-width: 1200px) {
  .publicacoes .book .buyButton a:before {
    content: none;
  }
}
.publicacoes .book .buyButton a:hover {
  color: white;
}
.publicacoes .book .buyButton a:hover:before {
  background-color: var(--blue);
  width: 100%;
}/*# sourceMappingURL=sobre.css.map */