.acomodacoes {
  width: 100%;
  margin: auto;
  padding: 0;
}
.acomodacoes .w-title {
  color: #ffc220;
  font-weight: bold;
  font-size: 2.6rem;
  text-shadow: -1px -1px #ffffff, -2px -2px var(--color-primary-main);
  margin-top: 0.3rem;
  margin-bottom: 15px;
}
.acomodacoes .items {
  display: grid;
  grid-template-columns: repeat(2, 48%);
  gap: 15px;
  justify-content: space-between;
}
.acomodacoes .items .item {
  display: flex;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  position: relative;
  margin-bottom: 30px;
}
.acomodacoes .items .item a {
  text-decoration: none;
}
.acomodacoes .items .item .left {
  display: flex;
  width: 40%;
  min-width: 40%;
  max-width: 40%;
}
.acomodacoes .items .item .left .image {
  display: flex;
}
.acomodacoes .items .item .left .image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}
.acomodacoes .items .item .right {
  padding: 10px 20px;
}
.acomodacoes .items .item .right .title {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px;
  display: block;
}
.acomodacoes .items .item .right .title a {
  color: #7a7a7a;
}
.acomodacoes .items .item .right .description {
  font-size: 12px;
  line-height: 16px;
  margin-top: 10px;
}
.acomodacoes .items .item .right .footer {
  display: none;
}
.acomodacoes .items .item .right .link {
  display: table;
  color: var(--color-primary-main);
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  margin-top: 8px;
}
.acomodacoes .items .item .right .link::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: #ffc220;
}
.acomodacoes .items .item .right .footer .right a {
  display: none;
}
.acomodacoes .items .item .desconto {
  width: 60px;
  height: 60px;
  padding: 13px 5px;
  text-align: center;
  display: block;
  border-radius: 100%;
  overflow: hidden;
  z-index: 1;
  background: #ffc220;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  top: -20px;
  right: -25px;
  position: absolute;
}
@media (max-width: 800px) {
  .acomodacoes .items {
    grid-template-columns: repeat(1, 100%);
  }
}
