.elementor-1014 .elementor-element.elementor-element-c3a9e02{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1014 .elementor-element.elementor-element-d5bf9b0{--display:flex;}.elementor-1014 .elementor-element.elementor-element-48246a2{--display:grid;--e-con-grid-template-columns:repeat(2, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--grid-auto-flow:row;}.elementor-widget-button .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-1014 .elementor-element.elementor-element-ca6cdf2 .elementor-button{background-color:#61CE7000;}#elementor-popup-modal-1014{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-1014 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-1014 .dialog-close-button{display:flex;}#elementor-popup-modal-1014 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}@media(max-width:1024px){.elementor-1014 .elementor-element.elementor-element-48246a2{--grid-auto-flow:row;}}@media(max-width:767px){.elementor-1014 .elementor-element.elementor-element-48246a2{--e-con-grid-template-columns:repeat(1, 1fr);--grid-auto-flow:row;}}/* Start custom CSS for button, class: .elementor-element-ca6cdf2 *//* Importando a fonte Playfair Display para o visual High Ticket */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

/* =========================================
   OVERLAY (Fundo escuro e desfoque)
   ========================================= */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px); /* Efeito de vidro/desfoque no fundo */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* =========================================
   CAIXA DO POPUP
   ========================================= */
.popup-box {
  position: relative;
  width: 90%;
  max-width: 750px;
  background: linear-gradient(145deg, #1c1c1c 0%, #111111 100%);
  border: 1px solid rgba(200, 150, 100, 0.4);
  border-radius: 8px;
  padding: 40px 50px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 
              0 0 20px rgba(184, 123, 75, 0.15); /* Glow sutil na borda externa */
  font-family: 'Playfair Display', serif;
}

/* =========================================
   BOTÃO FECHAR (X)
   ========================================= */
.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: #c89664;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-popup:hover {
  color: #ffffff;
}

/* =========================================
   LOGO
   ========================================= */
.popup-logo {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.popup-logo .logo-icon {
  color: #c89664;
  font-size: 28px;
}

/* =========================================
   TÍTULO E LINHA DIVISÓRIA
   ========================================= */
.popup-title {
  font-size: 22px;
  font-weight: 500;
  color: #e0aa7b;
  margin: 0 0 15px 0;
  letter-spacing: 1px;
}

.popup-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(200, 150, 100, 0.6) 50%, transparent 100%);
  margin: 0 auto 25px auto;
}

/* =========================================
   TEXTOS
   ========================================= */
.popup-text {
  font-size: 18px;
  color: #dddddd;
  line-height: 1.5;
  margin-bottom: 20px;
}

.highlight-text {
  font-size: 19px;
  color: #ffffff;
  margin-bottom: 35px;
}

/* =========================================
   BOTÕES DE AÇÃO
   ========================================= */
.popup-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-action {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: #e0aa7b; /* Texto dourado */
  background: rgba(20, 20, 20, 0.6); /* Fundo escuro translúcido */
  border: 1px solid #b87b4b;
  border-radius: 4px;
  padding: 12px 30px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* Glow interno e externo do botão */
  box-shadow: inset 0 0 15px rgba(184, 123, 75, 0.2), 
              0 0 15px rgba(184, 123, 75, 0.2);
  transition: all 0.4s ease;
}

.btn-action:hover {
  background: rgba(184, 123, 75, 0.15); /* Ilumina o fundo no hover */
  box-shadow: inset 0 0 20px rgba(184, 123, 75, 0.4), 
              0 0 25px rgba(184, 123, 75, 0.4);
  color: #ffffff;
}

/* =========================================
   RESPONSIVIDADE (Mobile)
   ========================================= */
@media (max-width: 600px) {
  .popup-box {
    padding: 30px 20px;
  }
  
  .popup-title {
    font-size: 18px;
  }
  
  .popup-text {
    font-size: 16px;
  }
  
  .highlight-text {
    font-size: 17px;
  }
  
  .popup-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-action {
    width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-c3a9e02 *//* FUNDO ESCURO E DESFOQUE */
.luxury-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92); /* Fundo quase preto */
    backdrop-filter: blur(12px); /* Efeito de vidro fosco */
    display: none; /* Escondido por padrão */
    align-items: center;
    justify-content: center;
    z-index: 9999999 !important;
}

/* REGRA DE ATIVAÇÃO PELO LINK # */
.luxury-popup-overlay:target {
    display: flex !important;
}

/* A CAIXA PRINCIPAL (BOX) */
.luxury-popup-content {
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%); /* Gradiente sutil */
    border: 1px solid rgba(184, 123, 75, 0.3); /* Borda cobre suave */
    border-radius: 4px; /* Cantos retos luxuosos */
    padding: 50px;
    width: 90%;
    max-width: 700px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

/* BOTÃO DE FECHAR (X) */
.luxury-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    color: #b87b4b; /* Cor Cobre */
    text-decoration: none;
    line-height: 1;
}/* End custom CSS */
/* Start custom CSS *//* Importando a fonte Playfair Display para o visual High Ticket */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

/* =========================================
   OVERLAY (Fundo escuro e desfoque)
   ========================================= */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px); /* Efeito de vidro/desfoque no fundo */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* =========================================
   CAIXA DO POPUP
   ========================================= */
.popup-box {
  position: relative;
  width: 90%;
  max-width: 750px;
  background: linear-gradient(145deg, #1c1c1c 0%, #111111 100%);
  border: 1px solid rgba(200, 150, 100, 0.4);
  border-radius: 8px;
  padding: 40px 50px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 
              0 0 20px rgba(184, 123, 75, 0.15); /* Glow sutil na borda externa */
  font-family: 'Playfair Display', serif;
}

/* =========================================
   BOTÃO FECHAR (X)
   ========================================= */
.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: #c89664;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-popup:hover {
  color: #ffffff;
}

/* =========================================
   LOGO
   ========================================= */
.popup-logo {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.popup-logo .logo-icon {
  color: #c89664;
  font-size: 28px;
}

/* =========================================
   TÍTULO E LINHA DIVISÓRIA
   ========================================= */
.popup-title {
  font-size: 22px;
  font-weight: 500;
  color: #e0aa7b;
  margin: 0 0 15px 0;
  letter-spacing: 1px;
}

.popup-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(200, 150, 100, 0.6) 50%, transparent 100%);
  margin: 0 auto 25px auto;
}

/* =========================================
   TEXTOS
   ========================================= */
.popup-text {
  font-size: 18px;
  color: #dddddd;
  line-height: 1.5;
  margin-bottom: 20px;
}

.highlight-text {
  font-size: 19px;
  color: #ffffff;
  margin-bottom: 35px;
}

/* =========================================
   BOTÕES DE AÇÃO
   ========================================= */
.popup-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-action {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: #e0aa7b; /* Texto dourado */
  background: rgba(20, 20, 20, 0.6); /* Fundo escuro translúcido */
  border: 1px solid #b87b4b;
  border-radius: 4px;
  padding: 12px 30px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* Glow interno e externo do botão */
  box-shadow: inset 0 0 15px rgba(184, 123, 75, 0.2), 
              0 0 15px rgba(184, 123, 75, 0.2);
  transition: all 0.4s ease;
}

.btn-action:hover {
  background: rgba(184, 123, 75, 0.15); /* Ilumina o fundo no hover */
  box-shadow: inset 0 0 20px rgba(184, 123, 75, 0.4), 
              0 0 25px rgba(184, 123, 75, 0.4);
  color: #ffffff;
}

/* =========================================
   RESPONSIVIDADE (Mobile)
   ========================================= */
@media (max-width: 600px) {
  .popup-box {
    padding: 30px 20px;
  }
  
  .popup-title {
    font-size: 18px;
  }
  
  .popup-text {
    font-size: 16px;
  }
  
  .highlight-text {
    font-size: 17px;
  }
  
  .popup-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-action {
    width: 100%;
  }
}/* End custom CSS */