/* Formulario */
.pg-wrap { max-width: 640px; margin: 0 auto; }
.pg-form { background: #fff; border: 1px solid #e5e5e5; border-radius: 10px; padding: 26px; }
.pg-campo { margin-bottom: 18px; }
.pg-campo label { display: block; font-weight: 700; color: #1a3a6b; margin-bottom: 6px; font-size: 14.5px; }
.pg-campo input[type="text"],
.pg-campo input[type="email"],
.pg-campo select,
.pg-campo textarea {
    width: 100%; padding: 10px 12px; border: 1px solid #d0d5dd; border-radius: 6px;
    font-size: 14.5px; box-sizing: border-box;
}
.pg-campo textarea { resize: vertical; }
.pg-checkbox label { display: flex; align-items: center; gap: 8px; font-weight: 400; color: #333; }
.pg-checkbox input { width: auto; }
.pg-oculto { display: none; }

.pg-btn {
    display: inline-block; padding: 10px 22px; border-radius: 6px; font-size: 14.5px; font-weight: 700;
    border: none; cursor: pointer; text-decoration: none;
}
.pg-btn-primario { background: #1a3a6b; color: #fff; }
.pg-btn-primario:disabled { opacity: .4; cursor: not-allowed; }
.pg-btn-sec { background: #eee; color: #333; margin-left: 8px; }

.pg-resultado { margin-top: 16px; padding: 14px 18px; border-radius: 6px; font-size: 14.5px; }
.pg-resultado.exito { background: #eaf7ee; color: #155724; border: 1px solid #b6dfc0; }
.pg-resultado.error { background: #fbebec; color: #721c24; border: 1px solid #eebfc3; }

/* Vitrina */
.pgv-wrap { max-width: 800px; margin: 0 auto; }
.pgv-card {
    background: #fff; border: 1px solid #e5e5e5; border-radius: 10px;
    padding: 20px 24px; margin-bottom: 16px;
}
.pgv-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.pgv-diputado { font-weight: 700; color: #1a3a6b; }
.pgv-diputado a { color: #1a3a6b; text-decoration: none; }
.pgv-diputado a:hover { text-decoration: underline; }
.pgv-fecha { font-size: 12.5px; color: #888; }
.pgv-pregunta { margin: 0 0 12px; font-size: 14.5px; color: #333; line-height: 1.5; }
.pgv-respuesta {
    margin: 0; font-size: 14.5px; color: #1f2937; line-height: 1.5;
    background: #f5f7fa; padding: 12px 14px; border-radius: 6px; border-left: 3px solid #1a3a6b;
}
.pgv-vacio { text-align: center; color: #888; padding: 30px; }

.pgv-leer-mas {
    display: inline-block; margin-top: 8px; background: none; border: none;
    color: #1a3a6b; font-weight: 700; font-size: 13px; cursor: pointer; padding: 0;
}
.pgv-leer-mas:hover { text-decoration: underline; }

.pgv-ver-todas { text-align: center; margin: 8px 0 20px; }

.pgv-paginacion { display: flex; justify-content: center; gap: 6px; margin-top: 20px; }
.pgv-pagina {
    display: inline-block; padding: 8px 14px; border-radius: 6px; background: #f0f2f5;
    color: #1a3a6b; text-decoration: none; font-weight: 600; font-size: 14px;
}
.pgv-pagina-activa { background: #1a3a6b; color: #fff; }

@media (max-width: 600px) {
    .pgv-card-header { flex-direction: column; align-items: flex-start; gap: 4px; }
}
