.room {
  padding: 60px 20px;
  background: #fff;
}

.room-card {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.room-image {
  position: relative;
  flex: 1;
}

.room-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* Preço */
.price-tag {
  position: absolute;
  right: -20px;
  top: 40%;
  background: var(--verde);
  color: #fff;
  padding: 18px 20px;
  text-align: center;
  border-radius: 4px;
}

.price-tag strong {
  font-size: 24px;
  display: block;
}

.price-tag span {
  font-size: 14px;
}

/* Conteúdo */
.room-content {
  flex: 1;
}

.room-content .imgs{
  border-top: 1px solid var(--shadow);
  border-bottom: 0.4px solid var(--shadow);
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.room-content .imgs img{
  width: 30px;
  height: 30px;
  margin-right: 30px;
}

.room-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--verde-text);
}

.room-content p {
  color: var(--verde);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Botão */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border: 2px solid var(--verde);
  color: var(--verde);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: .3s;
}

.btn:hover {
  background: var(--verde);
  color: #fff;
}

@media (max-width: 992px) {
  .room-card {
    gap: 30px;
  }

  .room-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .room{
    padding: 40px 20px;
  }

  .room-card {
    flex-direction: column;
  }
  .room-content .imgs img{
    width: 23px;
  }

  .row-reverse{
    flex-direction: column-reverse;
  }

  .price-tag {
    right: 15px;
    top: 15px;
  }

  .room-content {
    text-align: center;
  }

  .room-features {
    justify-content: center;
  }
}
