.popup-general {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  background-color: #ffffffed;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  color: #333;
}
.popup-general span {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: red;
  display: block;
  margin-bottom: 15px;
}
.popup-general p {
  line-height: 1.5;
  margin: 6px 0;
  font-weight: 500;
  text-align: center;
}
.cta-link {
  text-decoration: none;
}
.cta-generales {
  background-color: #f73434;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  text-transform: uppercase;
  font-weight: 700;
}
.cta-generales:hover {
  background-color: #c21000;
  transform: scale(1.05);
}
.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: 0 0;
  border: none;
  font-size: 1.2rem;
  color: #666;
  cursor: pointer;
  transition: color 0.3s;
}
.popup-close:hover {
  color: #333;
}
.call-action-general {
  background: linear-gradient(
    135deg,
    var(--red-disney) 0,
    var(--red-white) 100%
  );
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  border-radius: 15px;
  margin: 30px auto;
  max-width: 800px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}
.call-action-general:hover {
  transform: translateY(-5px);
}
.call-action-general span {
  font-size: 24px;
  color: white;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.call-action-general p {
  font-size: 20px;
  margin-bottom: 20px;
  color: white;
  font-weight: 600;
  text-align: center;
}
.cta-link button {
  margin-top: 20px;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.cta-link button:hover {
  color: white;
}
@media (max-width: 768px) {
  .popup-general {
    width: 95%;
    padding: 15px;
  }
  .popup-general span {
    font-size: 1.3rem;
  }
  .cta-generales,
  .popup-general p {
    font-size: 0.9rem;
  }
  .call-action-general {
    padding: 30px 15px;
  }
  .cta-generales {
    font-size: 16px;
    padding: 10px 25px;
  }
}
@media (max-width: 480px) {
  .call-action-general span {
    font-size: 20px;
  }
  .call-action-general p {
    font-size: 16px;
  }
  .cta-generales {
    font-size: 14px;
    padding: 8px 20px;
  }
}
