/* ===== POPUP ISOLADO ===== */
.quote-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 999999;
  font-family: Arial, sans-serif;
}

.quote-popup-box {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  padding: 25px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease;
}

.quote-title {
  text-align: center;
  margin-bottom: 15px;
  font-size: 22px;
}

/* CAMPOS */
.quote-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.quote-field label {
  font-size: 14px;
  margin-bottom: 5px;
}

.quote-field input,
.quote-field textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
}

.quote-field textarea {
  height: 80px;
}

/* DUAS COLUNAS */
.quote-row {
  display: flex;
  gap: 12px;
}

.quote-row .quote-field {
  flex: 1;
}

/* BOTÃO ENVIAR */
.quote-send-btn {
  width: 100%;
  padding: 12px;
  background: #008037;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.quote-send-btn:hover {
  background: #006c2d;
}

/* MENSAGEM DE SUCESSO */
.quote-success-msg {
  display: none;
  text-align: center;
  margin-top: 10px;
  color: #008037;
}

/* BOTÃO FECHAR */
.quote-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
}

/* RESPONSIVO */
@media (max-width: 480px) {
  .quote-row {
    flex-direction: column;
  }
}

/* ===== BOTÃO MOBILE ===== */
.mobile-cta-box {
  padding: 3px;
  text-align: center;
}

.btn-mobile {
  background: #e9bf93;
  padding: 10px 25px;
  border-radius: 25px;
  margin-left: 20px;
  color: #2d2926 !important;
  font-weight: bold;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
  cursor: pointer;
}

.btn-mobile:hover {
  background: #fff;
}
