.text-magenta{
	color: #a80077 !important;
}
.bg-inicio{
	background-image: url('../images/bg/bg-inicio.png'); 
	background-position: center center; 
	background-repeat: no-repeat; 
	background-attachment: fixed; 
	background-size: cover; 
	background-color: #d00092;
}

.bg-nosotros{
	background-image: url('../images/bg/bg-nosotros.png'); 
	background-position: center center; 
	background-repeat: no-repeat; 
	background-size: cover; 
	background-color: #fff;
	height: 850px;
}

@media only screen and (min-width: 800px) {
	.bg-nosotros{
		height: 1800px;
		padding-top: 300px;
	}

	.bg-nosotros2{
		padding-top: 250px;
	}

	.bg-testimonios{
		background-image: url('../images/bg/bg-testimonios.png'); 
		background-position: center center; 
		background-repeat: no-repeat; 
		background-size: cover; 
		background-color: #fff;
		height: 1300px;
		padding-top: 400px;
	}
	.bg-contacto{
		background-image: url('../images/bg/bg-contacto.png'); 
		background-position: center center; 
		background-repeat: no-repeat; 
		background-size: cover; 
		background-color: #fff;
		height: 1200px;
		padding-top: 300px;
	}
}

.bg-contacto{
	background-image: url('../images/bg/bg-contacto.png'); 
	background-position: center center; 
	background-repeat: no-repeat; 
	background-attachment: fixed; 
	background-size: cover; 
	background-color: #a80077 !important;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;

  /* ✅ CENTRADO PERFECTO */
  display: flex;
  justify-content: center;
  align-items: center;

  /* ✅ POR DEFECTO OCULTO */
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup.show {
  visibility: visible;
  opacity: 1;
}

.popup-content {
  background: #ffffff;
  max-width: 600px;
  width: 90%;
  padding: 30px 25px;
  border-radius: 10px;
  text-align: left;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: popupFade 0.4s ease;
  border-top: 6px solid #c40000;
}

.popup-content h2 {
  color: #c40000;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.popup-content p, .popup-content ul {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

.popup-content ul {
  margin: 10px 0 15px 20px;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  transition: 0.3s;
}

.popup-close:hover {
  color: #c40000;
}

@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

