:root {
    --shadow-main: 0 2px 24px rgba(0,0,0,0.18); 
    --radius-main: .5em; 
    --text-size-normal: 1em; 
    --text-size-large: 2em; 
}

.corpoartis-popup {
    position: fixed;
    right: 2em;
    bottom: 2em;
    z-index: 9999;
    display: flex;
    align-items: end;
    justify-content: end;
    width: 300px;
    height: 350px;
}
.popup-content {
  background: var(--accessible-components-dark-grey);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 240px;
  max-width: 90vw;
  min-height: 260px;
  max-height: 90vh;
  position: relative;
}
.popup-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1.2em;
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--accessible-components-dark-grey);
}
.popup-text {
  color: var(--bg2-white);
  font-size: var(--text-size-normal);
}
.popup-bold {
  font-size: var(--text-size-normal);
  font-weight: 500;
  margin-top: 0.5em;
  letter-spacing: 0.01em;
  color: var(--bg2-white);
}
.popup-close {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  background: none;
  border: none;
  color: var(--bg2-white);
  font-size: var(--text-size-large);
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.popup-close:hover {
  opacity: 1;
  color: var(--brand-color);
}
@media (max-width: 500px) {
  .popup-content {
    padding: 0.5em;
    min-width: 180px;
    min-height: 180px;
  }
  .popup-logo {
    width: 70px;
    height: 70px;
  }
  .popup-text {
    font-size: var(--text-size-normal);
  }
  .popup-bold {
    font-size: var(--text-size-normal);
  }
}