/* ===== MARV Captura de Curso · Pop-up ===== */
.marv-cc-overlay * { box-sizing: border-box; }

.marv-cc-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(5, 5, 5, .82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.marv-cc-overlay.marv-cc-open { display: flex; animation: marvCcFade .3s ease; }
@keyframes marvCcFade { from { opacity: 0; } to { opacity: 1; } }

.marv-cc-modal {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(160deg, #161616, #0c0c0c);
  border: 1px solid rgba(212, 175, 55, .3);
  border-radius: 18px;
  width: 100%;
  max-width: 440px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 34px 32px 28px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  animation: marvCcUp .4s cubic-bezier(.16, 1, .3, 1);
}
@keyframes marvCcUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.marv-cc-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: none;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: .3s;
}
.marv-cc-close:hover { background: #d4af37; color: #111; transform: rotate(90deg); }

.marv-cc-head { text-align: center; margin-bottom: 24px; }
.marv-cc-icon {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #d4af37, #b8901f);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.marv-cc-head h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #fff;
  font-size: 23px;
  margin: 0 0 8px;
  line-height: 1.3;
}
.marv-cc-head p { color: #aaa; font-size: 14px; line-height: 1.6; margin: 0; }

.marv-cc-field { margin-bottom: 14px; }
.marv-cc-field label {
  display: block;
  color: #d4af37;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}
.marv-cc-field input {
  width: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 13px 15px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .3s, background .3s;
}
.marv-cc-field input::placeholder { color: #666; }
.marv-cc-field input:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(212, 175, 55, .06);
}

.marv-cc-msg {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 4px 0 10px;
  min-height: 0;
  color: #ff6b6b;
}
.marv-cc-msg.ok { color: #4ade80; }

.marv-cc-submit {
  width: 100%;
  background: linear-gradient(135deg, #d4af37, #b8901f);
  color: #111;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  margin-top: 4px;
}
.marv-cc-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(212, 175, 55, .4); }
.marv-cc-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.marv-cc-btn-load { display: none; }
.marv-cc-submit.loading .marv-cc-btn-text { display: none; }
.marv-cc-submit.loading .marv-cc-btn-load { display: inline; }

.marv-cc-privacy {
  color: #777;
  font-size: 11.5px;
  line-height: 1.5;
  text-align: center;
  margin: 14px 0 0;
}

@media (max-width: 480px) {
  .marv-cc-modal { padding: 28px 22px 24px; }
  .marv-cc-head h3 { font-size: 20px; }
}
