/* =========================================
   APACHE – Talento en Jeans
   css/reclamos.css
   ========================================= */

:root {
  --rojo: #FFC60B;
  --rojo-oscuro: #D9A800;
  --amarillo: #FFC60B;
  --bg: #0A0A0A;
  --card-bg: #161616;
  --card-border: #2A2A2A;
  --texto: #F5F5F5;
  --texto-muted: #999;
  --nav-bg: rgba(10,10,10,0.95);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--bg); color: var(--texto); min-height: 100vh; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--nav-bg); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 2rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-wrap { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-title { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 3px; color: var(--texto); }
.logo-sub { font-size: 9px; letter-spacing: 4px; color: var(--amarillo); font-weight: 600; text-transform: uppercase; }
.nav-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--texto-muted); font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--amarillo); }

/* ===== HERO OFICIAL ===== */
.reclamos-hero {
  margin-top: 64px;
  background: var(--card-bg);
  border-bottom: 3px solid var(--rojo);
  padding: 1.75rem 3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.libro-badge {
  background: #fff; border: 2px solid #ddd;
  border-radius: 6px; padding: 0.75rem 1rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; min-width: 100px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.libro-badge svg { width: 40px; height: 40px; }
.libro-badge-text {
  font-size: 8px; font-weight: 800; letter-spacing: 1px;
  color: #1a1a1a; text-align: center; line-height: 1.3;
}

.hero-titulo h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 3vw, 30px); letter-spacing: 3px;
  color: var(--texto); margin-bottom: 0.4rem;
}
.hero-titulo p { font-size: 11px; color: var(--texto-muted); max-width: 500px; line-height: 1.7; }

.hero-meta {
  text-align: right;
  background: var(--bg); border: 1px solid var(--card-border);
  border-radius: 4px; padding: 0.85rem 1.25rem; min-width: 180px;
}
.empresa-nombre {
  color: var(--texto); display: block;
  font-size: 13px; letter-spacing: 1px;
  font-family: 'Bebas Neue', sans-serif; margin-bottom: 2px;
}
.empresa-lugar { font-size: 11px; color: var(--texto-muted); }
.nro-reclamo {
  margin-top: 0.6rem; font-size: 12px; color: var(--rojo);
  font-weight: 700; letter-spacing: 1px;
  border-top: 1px solid var(--card-border); padding-top: 0.6rem;
}
.fecha-reclamo { font-size: 11px; color: var(--texto-muted); margin-top: 3px; }

/* ===== CONTENIDO ===== */
.reclamos-wrap { max-width: 1000px; margin: 0 auto; padding: 3rem 2rem 5rem; }

.aviso-legal {
  background: rgba(255,198,11,0.07); border: 1px solid rgba(255,198,11,0.25);
  border-radius: 4px; padding: 1rem 1.25rem;
  font-size: 12px; color: var(--texto-muted); line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ===== SECCIONES ===== */
.form-section {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 4px; padding: 1.75rem; margin-bottom: 1.5rem;
}
.form-section-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rojo);
  margin-bottom: 1.5rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--card-border);
}

/* ===== CAMPOS ===== */
.campos-grid { display: grid; gap: 1.25rem; }
.campos-grid.col2 { grid-template-columns: 1fr 1fr; }
.campos-grid.col3 { grid-template-columns: 1fr 1fr 1fr; }

.campo { display: flex; flex-direction: column; gap: 5px; }
.campo label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--texto-muted); }
.campo label .req { color: var(--rojo); margin-left: 2px; }
.campo input,
.campo select,
.campo textarea {
  background: var(--bg); border: 1px solid var(--card-border);
  color: var(--texto); padding: 0.65rem 0.9rem; border-radius: 3px;
  font-family: 'Barlow', sans-serif; font-size: 13px;
  transition: border-color 0.2s; outline: none; width: 100%;
}
.campo input:focus, .campo select:focus, .campo textarea:focus { border-color: var(--rojo); }
.campo select option { background: #1a1a1a; }
.campo textarea { resize: vertical; min-height: 100px; }

/* ===== RADIO ===== */
.radio-group { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 4px; }
.radio-item { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.radio-item input[type=radio] { accent-color: var(--rojo); width: 16px; height: 16px; cursor: pointer; }
.radio-item span { font-size: 13px; font-weight: 500; }

/* ===== CHECKBOX ===== */
.check-wrap { display: flex; align-items: flex-start; gap: 10px; margin-top: 0.5rem; }
.check-wrap input[type=checkbox] { accent-color: var(--rojo); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.check-wrap label { font-size: 12px; color: var(--texto-muted); line-height: 1.6; cursor: pointer; }

/* ===== BOTONES ===== */
.form-footer { display: flex; gap: 1rem; justify-content: flex-end; margin-top: 2rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--rojo); color: #0A0A0A; border: none;
  padding: 0.85rem 2.5rem; border-radius: 2px;
  font-family: 'Barlow', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
}
.btn-primary:hover { background: var(--rojo-oscuro); }

.btn-secondary {
  background: transparent; color: var(--texto-muted);
  border: 1px solid var(--card-border); padding: 0.85rem 2rem; border-radius: 2px;
  font-family: 'Barlow', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
  display: inline-flex; align-items: center;
}
.btn-secondary:hover { border-color: var(--texto-muted); color: var(--texto); }

/* ===== FOOTER ===== */
footer {
  background: #060606; border-top: 1px solid var(--card-border);
  text-align: center; padding: 1.5rem;
  color: var(--texto-muted); font-size: 11px; letter-spacing: 2px;
}
footer strong { color: var(--amarillo); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .reclamos-hero { grid-template-columns: auto 1fr; padding: 1.25rem; gap: 1rem; }
  .hero-meta { display: none; }
  .reclamos-wrap { padding: 2rem 1.25rem 4rem; }
}
@media (max-width: 640px) {
  .campos-grid.col2, .campos-grid.col3 { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; text-align: center; }
  nav { padding: 0 1rem; }
}