.mini-container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.flex-corretores {
  display: flex;
  justify-content: space-between;
  min-height: 96px;
  align-items: flex-start;
  gap: 8px;
}
.corretor-img {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 4px;
  border: 2px solid #f4f5f6;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}
.corretor-img img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s;
}
.corretor-img img.fundoProfileImage {
  z-index: 1 !important;
  position: absolute !important;
  top: -50%;
  left: -50%;
  min-width: 200%;
  min-height: 200%;
  filter: blur(9px);
}
.corretor-img.placeholder {
  background: linear-gradient(90deg, #f0f0f0 25%, transparent 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: 1.5s infinite loading;
  border-color: #e0e0e0;
}
@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin-bottom: 20px;
}
.card h2 {
  margin-bottom: 8px;
  line-height: 1.2;
  min-height: 28px;
}
.card p {
  margin-bottom: 16px;
  line-height: 1.4;
  min-height: 20px;
  flex-grow: 1;
}
.card .flex-corretores {
  margin-top: auto;
}
@media (max-width: 768px) {
  .flex-corretores {
    flex-wrap: wrap;
    justify-content: center;
    min-height: 200px;
    gap: 12px;
  }
  .corretor-img {
    width: 80px;
    height: 80px;
  }
  .card {
    min-height: 220px;
  }
}
@media (max-width: 480px) {
  .flex-corretores {
    min-height: 280px;
  }
  .corretor-img {
    width: 70px;
    height: 70px;
  }
  .card {
    min-height: 250px;
  }
}
.guide-skeleton .card {
  pointer-events: none;
}
.guide-skeleton .card h2,
.guide-skeleton .card p {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: 1.5s infinite loading;
  color: transparent;
  border-radius: 4px;
}
.guide-skeleton .card h2 {
  height: 28px;
  margin-bottom: 8px;
}
.guide-skeleton .card p {
  height: 20px;
  margin-bottom: 16px;
}
.corretor-img img[src=''] {
  opacity: 0;
}
.corretor-img img:not([src='']) {
  opacity: 1;
}
a.current-color {
  display: block;
  text-decoration: none;
}
a.current-color:hover {
  transform: none;
}
