#roteiro {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

#roteiro #top {
  width: 100%;
  background-color: #476031;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 50px;
}

#roteiro .description-roteiro {
  text-align: center;
  font-size: 3rem;
  color: #ffffff;
  margin-top: 30px;
}

#roteiro .negrito {
  font-weight: bold;
}

#roteiro #flag {
  text-align: center;
}

#roteiro #flag img {
  margin-top: -80px;
  width: 100px;
}

#roteiro #bottom {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #c43400;
  padding-top: 50px;
  color: #fff3e5;
  text-align: center;
}

#roteiro #bottom .title-roteiro {
  font-size: 7rem;
  font-family: "perandory", sans-serif;
  font-weight: 500;
  margin-bottom: 50px;
}

#roteiro #bottom .boxes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  gap: 28px;
}

#roteiro #bottom .boxes .box {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
  width: 290px;
  height: 405px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

#roteiro #bottom .boxes .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(4px);
  transition: filter 0.4s ease-in-out;
  z-index: 0;
}

#roteiro #bottom .boxes .box .btn-preview {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 125px;
  height: 31px;
  padding: 15px;
  border-radius: 50px;
  background-color: #d9d9d9;
  color: #000000;
  font-weight: 800;
  gap: 10px;
  margin-bottom: -10px;
}

#roteiro #bottom .boxes .box .btn-preview img {
  display: inline-block;
}

#roteiro #bottom .boxes .box-1::before {
  background-image: url("../images/PREVIEW-1.svg");
  background-position: center;
  background-size: cover;
}

#roteiro #bottom .boxes .box-2::before {
  background-image: url("../images/PREVIEW-2.svg");
  background-position: center;
  background-size: cover;
}

#roteiro #bottom .boxes .box-3::before {
  background-image: url("../images/PREVIEW-3.svg");
  background-position: center;
  background-size: cover;
}

#roteiro #bottom .boxes .box:hover::before {
  filter: blur(0);
}

#roteiro #bottom .boxes .box:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
}

#bottom_button a {
  text-decoration: none;
  color: #fff3e5;
}

#bottom_button {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #476031;
  border-radius: 9px;
  color: #fff3e5;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 1.3em;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.6);
  max-width: 348px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 50px 0;
}

#bottom_button:hover {
  background-color: #55703c;
}
