.visit > .container > h2 {
  margin-bottom: 24px;
}
.visit h3 {
  margin-bottom: 10px;
}
.visit-card {
  background-color: #fae1ad;
  border-radius: 30px;
  padding: 24px;
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  min-height: 500px;
}
.visit-card h2 {
  text-align: left;
}
.visit-card a {
  transform-origin: left;
}
.visit-content,
.visit-img {
  flex: 1;
}
.visit-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.visit-logo {
  width: 64px;
}
.visit-img {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.visit-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.visit-hour-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
}
.visit-hour-title,
.visit-hour-value {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.visit-hour-value {
  opacity: 0.8;
}
.visit-local {
  display: flex;
  gap: 6px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.visit-local img {
  width: 12px;
  height: fit-content;
  object-fit: contain;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .visit-card.par {
    flex-direction: column;
  }
  .visit-card.impar {
    flex-direction: column-reverse;
  }
  .visit-img {
    height: 320px;
    flex: none;
  }
}
@media screen and (max-width: 576px) {
  .visit-img {
    height: 220px;
  }
}
