/* ==========================================
   WIDGET DE PRÉ-INSCRIÇÃO RÁPIDA
========================================== */

.pi-wrapper { background: #fff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); padding: 40px; border-top: 6px solid #3D819B; font-family: inherit; }
.pi-title { font-weight: 900; color: #333; font-size: 2rem; text-transform: uppercase; text-align: center; margin-bottom: 5px; }
.pi-subtitle { color: #666; font-size: 1.1rem; text-align: center; margin-bottom: 40px; }

.pi-box-top { background: #f4f7f9; border-radius: 10px; border: 1px solid #e1e8ed; padding: 25px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; margin-bottom: 40px; gap: 20px; }
.pi-box-col { flex: 1; min-width: 250px; }

.pi-label { color: #3D819B; font-weight: 800; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 8px; display: block; }
.pi-input, .pi-select, .pi-textarea { width: 100%; padding: 12px 15px; border: 1px solid #d1d5db; border-radius: 6px; font-size: 1rem; color: #444; background: #fff; outline: none; font-family: inherit; box-sizing: border-box; }
.pi-input:focus, .pi-select:focus, .pi-textarea:focus { border-color: #3D819B; box-shadow: 0 0 0 2px rgba(61, 129, 155, 0.2); }

.pi-qty-selector { display: flex; align-items: center; }
.pi-btn-qty { background: #fff; border: 1px solid #d1d5db; color: #333; font-weight: bold; font-size: 1.2rem; padding: 8px 18px; cursor: pointer; transition: 0.2s; }
.pi-btn-qty:hover { background: #e2e8f0; }
.pi-btn-qty.minus { border-radius: 6px 0 0 6px; }
.pi-btn-qty.plus { border-radius: 0 6px 6px 0; }
.pi-input-qty { width: 60px; text-align: center; border: 1px solid #d1d5db; border-left: none; border-right: none; padding: 10px 0; font-size: 1.1rem; font-weight: bold; background: #fff; pointer-events: none; }

.pi-section-title { color: #3D819B; font-weight: 800; text-transform: uppercase; font-size: 1.3rem; margin-bottom: 20px; border-bottom: 1px dashed #d1d5db; padding-bottom: 10px; margin-top: 40px; }

.pi-row { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 15px; }
.pi-col { flex: 1; min-width: 250px; }
.pi-col-2 { flex: 2; min-width: 250px; }

.pi-footer-box { background: #f4f7f9; border-radius: 12px; padding: 30px; text-align: center; margin-top: 40px; }
.pi-total-label { color: #666; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 5px; }
.pi-total-value { color: #3D819B; font-weight: 900; font-size: 2.8rem; margin-bottom: 20px; margin-top: 0; }

.pi-btn-submit { background: #3D819B; color: white; border: none; padding: 16px 30px; border-radius: 30px; font-size: 1.1rem; font-weight: 800; width: 100%; max-width: 400px; text-transform: uppercase; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 15px rgba(61, 129, 155, 0.3); }
.pi-btn-submit:hover { background: #2a6278; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(61, 129, 155, 0.4); }