/* ═══════════════════════════════════════════════
   PRIVATE REQUEST — CAPO'S LUXURY
   css/private-request.css
   ═══════════════════════════════════════════════ */

/* ── Layout dos columnas ─────────────────────── */
.pr-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: calc(100vh - 200px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px;
  align-items: start;
  gap: 80px;
}

/* ════════════════════════════════════════════════
   COLUMNA IZQUIERDA — Info
════════════════════════════════════════════════ */
.pr-info {
  position: sticky;
  top: 40px;
}

.pr-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 16px;
}

.pr-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 600;
  color: #111827;
  line-height: 1.1;
  margin: 0 0 24px;
}

.pr-desc {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.8;
  margin: 0 0 48px;
  max-width: 420px;
}

/* Features */
.pr-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pr-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pr-feature-icon {
  width: 44px;
  height: 44px;
  background: #fdf9ee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  flex-shrink: 0;
}

.pr-feature strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.pr-feature p {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════
   COLUMNA DERECHA — Formulario
════════════════════════════════════════════════ */
.pr-form-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(17,24,39,.07);
}

.pr-form-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 8px;
}

.pr-form-sub {
  font-size: 14px;
  color: #9ca3af;
  margin: 0 0 32px;
}

/* ── Campos del formulario ───────────────────── */
.pr-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pr-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pr-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #374151;
}

.pr-field input,
.pr-field select,
.pr-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  color: #111827;
  background: #fafafa;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  box-sizing: border-box;
}

.pr-field input::placeholder,
.pr-field textarea::placeholder {
  color: #c4c4c4;
}

.pr-field input:focus,
.pr-field select:focus,
.pr-field textarea:focus {
  border-color: #d4af37;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}

.pr-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.pr-field textarea {
  resize: vertical;
  min-height: 110px;
}

/* ── Botón enviar ────────────────────────────── */
.pr-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: #111827;
  color: #d4af37;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all .25s;
  margin-top: 8px;
}
.pr-submit:hover {
  background: #d4af37;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,175,55,.3);
}

/* ── Mensaje de éxito ────────────────────────── */
.pr-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}
.pr-success h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
.pr-success p {
  color: #6b7280;
  font-size: 15px;
  margin: 0;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .pr-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px;
  }
  .pr-info { position: static; }
  .pr-title { font-size: 38px; }
}

@media (max-width: 480px) {
  .pr-form-card { padding: 28px 20px; }
  .pr-title { font-size: 30px; }
  .pr-features { gap: 20px; }
}