@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

.custom-popup-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}
.custom-popup {
  background: #fff;
  max-width: 450px;
  margin: 5% auto;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
  position: relative;
}
.popup-logo {
  display: block;
  margin: 0 auto 15px;
  max-width: 120px;
}
.custom-popup h3 {
  margin-bottom: 10px;
  color: #0073e6;
}
.custom-popup label {
  display: block;
  margin: 8px 0 4px;
  text-align: left;
  font-weight: bold;
}
.custom-popup input,
.custom-popup select {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.precio-linea {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin: 10px 0;
}
.popup-btns {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.popup-btns button {
  padding: 10px 20px;
  border: none;
  background-color: #0073e6;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
.popup-btns button:hover {
  background-color: #005bb5;
}
.popup-signature {
  margin-top: 20px;
  text-align: right;
  font-family: 'Great Vibes', cursive;
  font-size: 20px;
  color: #555;
  opacity: 0.8;
}
