/* Qintess CSS Reset */

body.qintess-no-scroll {
  overflow: hidden;
}

.qintess-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.qintess-overlay.qintess-show {
  opacity: 1;
  pointer-events: auto;
}

/* Popup centralizado */
.qintess-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  max-width: 380px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%) scale(1.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999999;
}

.qintess-popup.qintess-show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}


.qintess-popup header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #ebedf9;
}

.qintess-popup header span {
  font-size: 21px;
  font-weight: 600;
}

.qintess-popup .qintess-close {
  color: #878787;
  background: #f3f3f3;
  border-radius: 50%;
  height: 33px;
  width: 33px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qintess-popup .qintess-close:hover {
  background: #ebedf9;
}

.qintess-popup .content {
  margin: 20px 0;
}

.qintess-popup .qintess-icons {
  margin: 15px 0 20px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.qintess-popup .qintess-icons a {
  height: 50px;
  width: 50px;
  font-size: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.qintess-popup .qintess-icons a i {
  transition: transform 0.3s ease-in-out;
}

.qintess-popup .qintess-icons a:nth-child(1) {
  color: #e1306c;
  border: 1px solid #f5bccf;
}

.qintess-popup .qintess-icons a:nth-child(1):hover {
  background: #e1306c;
}

.qintess-popup .qintess-icons a:nth-child(2) {
  color: #0088cc;
  border: 1px solid #b3e6ff;
}

.qintess-popup .qintess-icons a:nth-child(2):hover {
  background: #0088cc;
}

.qintess-popup .qintess-icons a:nth-child(3) {
  color: #46C1F6;
  border: 1px solid #b6e7fc;
}

.qintess-popup .qintess-icons a:nth-child(3):hover {
  background: #46C1F6;
}

.qintess-popup .qintess-icons a:hover {
  color: #fff;
  border-color: transparent;
}

.qintess-popup .qintess-icons a:hover i {
  transform: scale(1.2);
}

.qintess-popup .qintess-field {
  margin: 12px 0 -5px 0;
  display: flex;
  align-items: center;
  height: 45px;
  border-radius: 4px;
  padding: 0 5px;
  border: 1px solid #757171;
}

.qintess-popup .qintess-field i{
  width: 50px;
  font-size: 18px;
  text-align: center;
}

.qintess-popup .qintess-field input {
  width: 100%;
  border: none;
  outline: none;
}

.qintess-popup .qintess-field button {
  padding: 5px 18px;
  background: #7d2ae8;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.qintess-popup .qintess-field button:hover {
  background: #8d39fa;
}
