/* Estilos para o modal de informações (hexp-info-*) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200&display=swap');

.hexp-info-btn {
  background: none !important;
  color: inherit;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  box-shadow: none;
  font-weight: 200;
  transition: none;
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.2;
}
.hexp-info-btn:hover, .hexp-info-btn:focus {
  background: none !important;
  color: inherit;
  box-shadow: none;
}

.hexp-info-modal {
  display: none;
  position: fixed;
  z-index: 11000;
  left: 0; top: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
  overflow: auto;
  animation: hexp-info-fade-in 0.2s;
}
@keyframes hexp-info-fade-in {
  from { background: rgba(0,0,0,0); }
  to { background: rgba(0,0,0,0.45); }
}
.hexp-info-modal-content {
  background: #fff;
  margin: 40px auto 6% auto;
  padding: 32px 28px 20px 28px;
  border-radius: 18px;
  width: 95%;
  max-width: 460px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  animation: hexp-info-zoom-in .18s;
  border: 1.5px solid #eaeaea;
}
@keyframes hexp-info-zoom-in {
  from { transform: scale(.92) translateY(60px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.hexp-info-close {
  color: #aaa;
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  background: #fff;
  border: 2px solid #e31c2e;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.hexp-info-close:hover {
  background: #e31c2e;
  color: #fff;
  border-color: #e31c2e;
}
.hexp-info-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 18px;
  border-bottom: 1.5px solid #f0f0f0;
  overflow-x: auto;
  max-width: 100vw;
}
.hexp-info-tab {
  background: transparent;
  border: none;
  padding: 10px 18px;
  font-size: 1.08em;
  font-weight: 600;
  cursor: pointer;
  color: #e31c2e;
  border-radius: 8px 8px 0 0;
  margin-right: 2px;
  transition: background .18s, color .18s;
  white-space: nowrap;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hexp-info-tab-active {
  background: #f8f8f8;
  color: #222;
  border-bottom: 2px solid #e31c2e;
}
.hexp-info-tab-content {
  display: none;
  animation: fadeIn .22s;
}
.hexp-info-tab-content-sobre { display: block; }
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.merchant-details-about__info {
  margin-bottom: 12px;
  padding: 8px 0 0 0;
  border-left: 3px solid #e31c2e1a;
  padding-left: 12px;
}
.merchant-details-about__info-title {
  font-weight: bold;
  margin-bottom: 2px;
  color: #e31c2e;
  font-size: 1.03em;
}
.merchant-details-about__info-data {
  margin-bottom: 0;
  color: #444;
  font-size: 0.97em;
}
.hexp-info-group {
  margin-bottom: 20px;
}
.hexp-info-title {
  font-weight: 700;
  color: #e31c2e;
  margin-bottom: 8px;
  font-size: 1.07em;
  letter-spacing: 0.01em;
}
.hexp-info-flags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  margin-bottom: 2px;
}
.hexp-info-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #faf8f8;
  border-radius: 6px;
  padding: 5px 10px 5px 7px;
  box-shadow: 0 1px 4px rgba(227,28,46,0.03);
  border: 1.2px solid #f2eaea;
  font-size: 0.98em;
  margin: 0 0 4px 0;
  min-width: 82px;
  transition: box-shadow 0.15s, border 0.15s;
}
.hexp-info-flag img {
  height: 22px;
  width: auto;
  display: block;
}
.hexp-info-flag small {
  color: #444;
  font-weight: 500;
  font-size: 0.97em;
}
.hexp-info-flag:hover {
  box-shadow: 0 2px 8px rgba(227,28,46,0.08);
  border: 1.2px solid #e31c2e33;
}
.hexp-info-data { margin-bottom: 0; color: #444; }
.hexp-info-desc { margin-bottom: 10px; font-size: 1.08em; color: #222; }
.hexp-info-horarios, .hexp-info-pagamentos { list-style: disc; margin-left: 18px; color: #444; }
.hexp-info-status-open, .hexp-info-status-closed {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 200;
  font-size: 0.97em;
  letter-spacing: 0.01em;
  padding: 0 4px;
  border-radius: 4px;
  background: none;
  box-shadow: none;
  line-height: 1.1;
}
.hexp-status-icon.hexp-status-open, .hexp-status-icon.hexp-status-closed {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 200;
  font-size: 0.97em;
  letter-spacing: 0.01em;
  padding: 0 4px;
  border-radius: 4px;
  background: none;
  box-shadow: none;
  line-height: 1.1;
}
@media (max-width: 600px) {
  .hexp-info-modal-content { padding: 16px 4px 8px 4px; }
  .hexp-info-tabs { flex-wrap: wrap; gap: 8px 0; }
  .hexp-info-tab { font-size: 1em; padding: 8px 10px; max-width: 110px; }
  .hexp-info-flags-row { gap: 8px 8px; }
  .hexp-info-flag { min-width: 60px; padding: 4px 6px 4px 5px; }
}
