@charset "UTF-8";
/* CSS Document */

.content {                     
		padding: 2%;
		margin: 2%;	
		}

.centrar_texto{
		text-align: center;
		}				
#popup {
		  position: fixed;
		  top: 0; left: 0;
		  width: 100%; height: 100%;
		  background: rgba(0, 0, 0, 0.5);
		  z-index: 1000;
		  display: none; /* Hidden by default */
		  justify-content: center;
		  align-items: center;
		  flex-direction: column;
	}	
/* Container that scales with browser */
#svgContainer {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: auto;
}
/* SVG fills container */
#svgContainer svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Modal overlay centered over image */
#svgContainer .modal {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

/* Modal content box */
.popup-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  max-width: 320px;
  width: 90%;
  font-size: 14px;
  text-align: left;
  animation: fadeIn 0.3s ease-out;
}

/* Fade-out animation */
.popup-box.fade-out {
  animation: fadeOut 0.3s ease-in forwards;
}

/* Close button */
.popup-box button {
  margin-top: 15px;
  padding: 6px 12px;
  background: #007BFF;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.95); }
}