/* ============================================================
   HONESTIA CONNECT — RECLAMOS.CSS
   Styles for reclamos.html page
   ============================================================ */

:root {
  --primary: #0a1628;
  --accent: #2148b5;
  --gray-50: #f8fafc;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
}

body { font-family: 'Inter', sans-serif; background: var(--gray-50); color: var(--primary); margin: 0; padding: 0; }
.page-container { max-width: 800px; margin: 100px auto 40px; padding: 0 20px; }
.legal-header { text-align: center; margin-bottom: 32px; }
.legal-header h1 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 28px; margin-bottom: 8px; color: var(--primary); }
.legal-header p { color: var(--gray-500); font-size: 14px; }

.form-card { background: white; border-radius: 24px; padding: 32px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid var(--gray-200); }
.form-section { margin-bottom: 32px; }
.form-section-title { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 20px; color: var(--accent); border-bottom: 1px solid var(--gray-200); padding-bottom: 10px; }

.grid-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.full-width { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-500); }
.field input, .field select, .field textarea { 
  padding: 10px 14px; border-radius: 10px; border: 1.5px solid var(--gray-200); 
  font-size: 14px; transition: all 0.2s; background: white; width: 100%; box-sizing: border-box;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(33,72,181,0.1); }

.btn-submit { 
  width: 100%; padding: 14px; border-radius: 12px; background: var(--primary); color: white; 
  font-weight: 700; border: none; cursor: pointer; transition: all 0.3s; font-size: 15px;
}
.btn-submit:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(33,72,181,0.2); }
.btn-submit:focus-visible, .whatsapp-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.success-screen { display: none; text-align: center; padding: 40px 20px; }
.success-icon { width: 64px; height: 64px; background: #22c55e; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 32px; }
.tracking-code { font-size: 24px; font-weight: 800; color: var(--primary); margin: 12px 0; font-family: 'Outfit', sans-serif; letter-spacing: 1px; }

@media (max-width: 768px) {
  .page-container { margin: 80px auto 30px; padding: 0 16px; }
  .form-card { padding: 24px 20px; border-radius: 20px; }
  .grid-form { grid-template-columns: 1fr; gap: 12px; }
  .legal-header h1 { font-size: 24px; }
  .form-section-title { font-size: 15px; }
}
.whatsapp-btn { 
  display: inline-flex; align-items: center; gap: 10px; background: #25d366; color: white; 
  padding: 14px 28px; border-radius: 12px; text-decoration: none; font-weight: 700; margin-top: 24px;
}
