/* Overlay/modal */
#anesdor-infografia-overlay {
    position: fixed;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: none;
}
#anesdor-infografia-modal {
    position: fixed;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.3);
    padding: 32px 16px 16px 35px;
    z-index: 10000;
    display: none;
    width: 100vw; 
    max-width: 500px;
}

#anesdor-infografia-modal .modal-content h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;      /* Roboto-Bold */
  color: #0093c8;
}

#anesdor-infografia-modal .modal-content p {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;  
  font-size: 0.85em;   
  /*color: #0093c8;*/
}

#anesdor-infografia-modal .modal-content p li {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;  
  font-size: 0.85em;   
  /*color: #0093c8;*/
}

#anesdor-infografia-modal .close {
    position: absolute; top: 10px; right: 14px;
    font-size: 18px; cursor: pointer; color: #333;
}
#anesdor-infografia-modal .modal-content {
    margin-top: 18px;
}
.is-pulsing {
    animation: pulse 1.4s infinite;
    transform-origin: center;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.02); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}
