/* ===== Normaliza o tamanho dos ícones em todos os cards ===== */
#planos .u-repeater-1 .u-icon {
  width: clamp(48px, 6vw, 72px) !important;
  height: clamp(48px, 6vw, 72px) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
#planos .u-repeater-1 .u-icon img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;   /* evita limitar por classes globais */
  object-fit: contain;
}

/* ===== Padroniza os títulos h4 em todos os cards ===== */
#planos .u-repeater-1 h4 {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(18px, 1.6vw, 20px) !important;
  line-height: 1.2 !important;
  margin: 8px 0 10px !important;
  color: inherit; /* mantém o tom cinza já usado */
  text-wrap: balance; /* melhora quebra de linha quando o nome é longo */
}

/* Opcional: dá um respiro entre ícone e título em todos os cards */
#planos .u-repeater-1 .u-icon { margin-bottom: 8px; }

    .modalbackground {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #CCC;
      opacity: 0.40;
      z-index: 9999999999999999999;
    }

    .modal {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #FFF;
      border-radius: 15px;
      padding: 12px;
      box-shadow: 2px 2px 5px -3px rgba(0, 0, 0, 0.75);
      width: 300px;
      text-align: center;
      z-index: 99999999999999999999;
    }
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
}

.popup-content img {
    max-width: 100%;
    height: auto;
}

#close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    border: 3px solid #FFF;
    background-color: #333;
    color: #FFF;
    font-weight: 100;
}
img {
  max-width: 100%;
  height: auto;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 8px 16px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}